Menu

SAP: How to Find User Exits for Transactions

2017-02-16       

As ABAP developers, we work with user exits a lot. Their big advantage is the possibility to modify the behavior of standard SAP ERP programs without actually doing a modification. Consequently, it is very important to know which user exits are available for certain transactions. In this posting, I’ll show you a few ways to find user exits for transactions in SAP ERP.

Recommended Now

All-new Echo Dot Smart speaker with Alexa

This bundle includes Echo Dot (3rd Gen) Charcoal and Philips Hue White A19 Medium Lumen Smart Bulb, 1100 Lumens. Built in Smart Home hub. Ask Alexa to control Zigbee-compatible devices. No additional Philips Hue hub required. Two choices for easy smart lighting - Start setting the mood with Hue Smart bulbs and your Echo device, supporting up to 5 Hue Bluetooth & Zigbee smart bulbs. Add the Hue Hub for whole-home smart lighting (up to 50 light points) and bonus features.

Check it out on amazon.com →

Step 1: Find the Package of the Transaction

Our first step is to find out which package our transaction belongs to. There are several ways to achieve that. Here on dev-workbench.com, we have a directory of all SAP transactions, in which you can also find the package of the respective transaction. Take transaction IW31 as an example. If you visit its page, you will find out it belongs to the SAP package IWO1.

Another method is to execute the transaction, then go to System -> Status in the menu. You will receive the status screen. Double-click the transaction name to see its package.

Step 2: Find User Exits for the SAP Package

Once you know the package, you will need transaction SMOD. Run it, then press F4 on the single input field. In the value entry popup, enter the package name you found out earlier.

Press F4 here to bring up the search help popup for customer exits.

Enter the package name and you will be rewarded with a list of all SAP customer exits relevant for that transaction or package.

Finding All Implemented Customer Exits in SAP

Sometimes, we do not need a list of all user exits. Instead, we want to find out which customer exits already have an implementation in SAP ERP. The transaction CMOD has been designed to do exactly that. Run it to browse so-called modification projects. Within those, you will find all users exits that already have an implementation. If your user exit is not in a modification project, it has not been implemented yet.

Finding Data Elements with Field Exits

An even more specialized task is to find all data elements that have a certain field exit in SAP ERP. The report RSMODPRF has been designed to achieve that task.

The report RSMODPRF can be used to find or define field exits for data elements.

Enter the data element you want to check, and you will get the field exits registered for it. If you want to search for a field exit, use the F4 help here. It will show you all data elements that have the field exit registered on them.