Application Development 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: 

User exits

Former Member
0 Kudos

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

GauthamV
Active Contributor
0 Kudos

Use proper subject line in future.

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

5 REPLIES 5

GauthamV
Active Contributor
0 Kudos

Use proper subject line in future.

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

kesavadas_thekkillath
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

0 Kudos

Thanks to all .

Anupma Chandra