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

User exits

Former Member
0 Likes
781

Hi Everyone,

How do I find the user exit name from the function module name? I was trying to extend the idoc, basic type delvry03. As per the tutorial slides that I was going through the process code delv ---> fm: IDOC_OUTPUT_DELVRY and the -


>PERFORM CUSTOMER_FUNCTION_002 USING lv_segnam and in this perform u have the exit "EXIT_SAPLV56K_002".

So my question is how do I find out the name of the enhancement that has this exit. I saw all the exits/ enhancements name through the ZPROGRAM to find exits for VL02n t-code, but none had a component EXIT_SAPLV56K_002.

Please let me know.

Rgds,

Anu.

1 ACCEPTED SOLUTION
Read only

GauthamV
Active Contributor
0 Likes
696

Use proper subject line in future.

You can find exit name from function module name using MODSAP table.

5 REPLIES 5
Read only

GauthamV
Active Contributor
0 Likes
697

Use proper subject line in future.

You can find exit name from function module name using MODSAP table.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
696

In MODSAP table pass this function module to the field 'member' and execute.

Read only

Former Member
0 Likes
696

EXIT_SAPLV56K_002 will be a function module. Look for this in SE37 and the source will contain the include zxtrku02.

Or drill down on the call to EXIT_SAPLV56K_002 and this will take you to SE37

Read only

Former Member
0 Likes
696

Goto SMOD transaction and give the exit name and it will return the enhancement name..

Read only

0 Likes
696

Thanks to all .

Anupma Chandra