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: 

What is the name of the table for finding user exit !

Former Member
0 Kudos

What is the table name to find the user exit !

7 REPLIES 7

Former Member
0 Kudos

Hi,

in these(below) tables u can find use exits,

MODATTR,

MODSAPA,

MODSAPT,

MODTEXT,

TSDIRT.

seshu.

Former Member
0 Kudos

Hi,

I guess no table is available for USER EXITS. the below link will help you to get a program for finding the user exits. Attach this program to a T CODE and your problem will be get solved....

http://www.erpgenie.com/abap/code/abap26.htm

0 Kudos

hi

Could you update the link?

0 Kudos

Seeing as that link was from 2008 and your comment is 2022.....it is VERY doubtful.

dhruv_shah3
Active Contributor
0 Kudos

Hi,

You can find it in the following tables

MODSAP

MODSAPT

MODACT

MODATTR

Check the view MODSAPVIEW.

Hope this help you out.

Regards,

Dhruv Shah

Former Member
0 Kudos

Hi

All enhancements are stored in table

MODSAP

MODSAPT.

Thanks

Vijay

Former Member
0 Kudos

Hi,

Goto to the table tstc and enter the transaction code for

which u want to find out the User-Exits. Check out the

program name from the result. Goto SE38 and dee that

program in display mode. Then search for the string Call

Cutomer-Funtion. All the result of search are the user

exits defined there for that transaction.

SAP user exits (enhancement names that we see in SMOD transaction) are all stored in the table MODSAP. The field NAME contains the enhancement name and the field MEMBER contains the name of the function module that will be called if the customer enhancement exists and is active. The customer enhancement projects are stored in the table MODACT. There, the NAME field is the name of the project and MEMBER is the name of SAP enhancement (that from the MODSAP).

So, if you are in some include, you can use where-used-list to get to the function module name. Then you find the SAP enhancement name from the MODSAP by supplying the function module. And finally, you find the customer enhancement projects by querying the MODACT with the SAP enhancement in the field MEMBER.

cheers,

vasavi.

kindly reward if helpful.