本空间收集网络上最新的一些ABAP4开发技能,
欢迎各位收藏学习.
【原创】Get actual function module for Function Exit
上一篇 /
下一篇 2008-08-11 09:44:17
/ 个人分类:ABAP4
Once you have found the Function Exit within the source code (Find Function Exit) you need to
access the actual function module it executes. This is done using the following steps:
Step 1Locate desired 'Call Customer-function' statement within source code.

Step 2If code is not within main program (module pool) e.g. SAP* then you will need to find this
out by selecting 'Main Program' from the 'GOTO' menu. The Main program for transaction
MR1M isSAPLMR1M.
Step 3The actual function module name can now be calculated based on the information retrieved,
it is defined by the following format:
EXIT_<Program name>_<Exit number>
In the case of transaction MR1M it is 'EXIT_SAPLMR1M_004'.

导入论坛
引用链接
收藏
分享给好友
推荐到圈子
管理
举报
TAG: