Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function Modules in Transaction

Former Member
0 Likes
592

hi,

i wanted to know how can i find out the Function Modules that r being executed internally in a SAP Transaction.

ex. MM01

actually wanted to know which all Function Modules are executed to complete the transaction

5 REPLIES 5
Read only

Former Member
0 Likes
547

Crude way of doing this is to enter data in MM01 and before saving enter the debugging mode and place a breakpoint at the statement CALL FUNCTION.

-Kiran

Read only

Former Member
0 Likes
547

Hi,

One way is to find the function modules for the program relevant to MM01, i.e ,SAPLMGMM from SE80 transaction,

Hope this helps,

Rgds,

Read only

Former Member
0 Likes
547

Hi,

use the program <b>RPR_ABAP_SOURCE_SCAN</b> and run.

in the Program name <b>SAPLMGMM</b>, and find string <b>call Function</b> and run it., now you can see the Fucntion modules used in the program.

Regards

vijay

Read only

former_member196065
Participant
0 Likes
547

Siddharth,

You can find the program name using System->Status

You can see the Program where all the function module and logic will build in this program. But need spend lot of time to debug on this

Uma

Read only

Former Member
0 Likes
547

Hi Siddharth,

Run transaction MM01.Fill teh mandatory fields on the selection screen.Start your debugging by /h.Enter.Press call tab you will get all the call functions in the transaction.