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: 

How to find an EXIT with the Include name ?

former_member425121
Participant
0 Kudos

Hi everybody

If i have an Include name (like ZXMLUU16) , how can i find the FM Exit or the program where this include is used ?

(NOTE: If i use SE38 and 'Where used' option , this

only tell me 'Include ZXMLUU16 not found in

selected search area')

Thanks

Frank

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Usually the four characters next to Z will be function group. In this case your function group is XMLU and check your include name in the function group.

The function module name is EXIT_SAPLMLSP_030.

Thanks,

Naren

Message was edited by: Narendran Muthukumaran

5 REPLIES 5

Former Member
0 Kudos

Hi,

Usually the four characters next to Z will be function group. In this case your function group is XMLU and check your include name in the function group.

The function module name is EXIT_SAPLMLSP_030.

Thanks,

Naren

Message was edited by: Narendran Muthukumaran

0 Kudos

Thanks Narendran

What happens if the Include is used in a program instead

in an Exit ? Is there a way to find where the Include

is used in this case ?

Regards

Frank

0 Kudos

If the include is used in a program, then it has to be an active include. In that case, 'where-used' will find it.

0 Kudos

Thanks Sirinivas

Former Member
0 Kudos

I don't think there is a way to find that out, particularly if the include is not yet created. Typical with function module user exits is that, even though you see the line INCLUDE ZXMLUU16 statement in the function module code, the include itself is not created yet. Only when you double click, you will be creating it and then your 'where-used' should work.

You just have to go by a hunch based on the name itself. Unn is a typical naming convension used for function module includes. So, I will take a wild guess that this include is in a function module that is in the function group XMLU. So if you look at this program SAPLXMLU and do a 'Find' 'In main program', you will see that the statement is in EXIT_SAPLMLSP_030.