former_member207609
Contributor
Member since ‎11-28-2006

User Statistics

  • 221 Posts
  • 69 Solutions
  • 0 Kudos given
  • 141 Kudos received

User Activity

Hi,What does the column 'Deviation' mean in the app 'Manage PIRs'?Best Regards.Leon.
为了满足标准以外的客户需求,使用SAP提供的增强有时也是一种可行的方案,这就需要查询某一业务模块到底都有哪些可用的增强。可以用以下方法查询。(如果截图不清晰,请点击图片放大。)运行事务代码SE80, 如下图点击‘资源库信息系统’。为了找到可用的BADI 增强,如下图,展开目录‘增强’ > '业务加载项‘, 双击’定义‘, 在右边的字段’应用组件‘, 输入模块名,比如 PP-MRP* ,然后运行 (F8键)。画面如下图显示业务组建PP-MRP的所有BADI, 双击每一个BADI,可以进入具体内容查...
一些事物代码在内部通过RFC提交一个程序/函数到后台执行,在此场景下,如果想debug 那一段程序/函数,一般通用的debug方式往往力不从心,因为点击F5键的话,debugger不会进入,并直接跳到下一行。以下图为例,可执行MRP的函数 MRP_KD_AUFTRAG_RFC 在事务代码VA01通过RFC提交到后台执行,为了查明此函数如何执行MRP, 点击F5键希望进入函数里面的源代码,但是debugger直接跳到函数的下一行代码 endloop,即,无法进入函数MRP_KD_AUFTRAG_...
In some programs and transactions, an other program/function module is submitted by RFC in order to run in background. In this case, it is impossible to get into the program or function module to analyze during debugging, here is an example. The func...
While debugging a program, you may have the situation below. A function module like MRP_KD_AUFTRAG_RFC in this example is triggered through RFC to be run in background, so it is impossible to debug into the function module by clicking F5 key (Single ...