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

Find user exit

Former Member
0 Likes
2,166

Dear SAP Experts,

I have recently joined this company and currently working on a support project.

I have been noticing that here lot many Z developments have been done in the past and which is stopping us for further development.

Is there any way to find out how many user exits are there?

Even for standard functionality, they have user exit and I would like to find out and as much possible remove them.

Thank You

Regards,

Dear SAP Experts,

I have recently joined this company and currently working on a support project.

I have been noticing that here lot many Z developments have been done in the past and which is stopping us for further development.

Is there any way to find out how many user exits are there?

Even for standard functionality, they have user exit and I would like to find out and as much possible remove them.

Thank You

Regards,

8 REPLIES 8
Read only

Former Member
0 Likes
1,646

Hi Simi,

use table MODACT to get project names

then USE table MODSAP to get Enhancements for these Projects well you will need to check manually which are implemented.

For SD check standard include MV45AFZZ this has maximum modifications.

it will be very difficult still if you miss some

In table TADIR Enter

Program ID: R3TR ,

Object Type :  CMOD

object name: Z*

and execute.

Program ID : R3TR

Object Type :  SXCI

Object Name: Z*

and execute. This will give BADIs

Regards

Read only

Former Member
0 Likes
1,646

why/how Z development stopping you for further development. user exits are not standalone objects however if you are looking for custmer exits you can go through table MODSAP. Do you have transport log of earlier developments. that also can help you.

Read only

venkatakrishna
Active Participant
0 Likes
1,646

Hi Simi,

Use Object Navigator(SE80) , Select package and enter Z-package name which is used for

Project Implementation , there you can easily find out all z-implementations.

Regards,

Venkat

Read only

Former Member
0 Likes
1,645

Hi Simi,

Check below View's for BADI ..

Regard's

Smruti

Read only

SujeetMishra
Active Contributor
0 Likes
1,645

Hi,

If you want implemented list of exit then you need to develop one custom program.

or, you can check below link and find out the exit details.

http://wiki.sdn.sap.com/wiki/display/ABAP/Ways+to+find+a+userexit

Regards,

Sujeet Mishra

Read only

Former Member
0 Likes
1,645

Hello Simi,

User Exits allow you to add additional functions to the SAP standard.


It is different from Customer Exits.

Check this link for Types of Exits : http://help.sap.com/saphelp_nw04s/helpdata/en/c8/19756543b111d1896f0000e8322d00/frameset.htm

Programs with user exits contain subroutine calls at certain points in their syntax that are identified by the prefix USEREXIT.

Reference : http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/frameset.htm

So, If you need to find out the User Exits for any program "Search with the Keyword USER EXIT" in the main program.

You will get the list of all the User Exits.

Best Regards,

Rahul Gupta

Read only

Former Member
0 Likes
1,645

Thank You All..

Got the information!

Closing this topic

Read only

0 Likes
1,645

User exits are the old way of enhancement!!

ıts better you implement with a BADI

if thre is no BADi then go ahead and implement with user exit.

Badıs are object oriented and more powerful

its always to learn more modern ways!!

if you like you can find out the BAdis by putting external breakpoint to cl_exithandler