4
Varma Pericherla, ERPandERP Pvt. Ltd. Hyderabad User Exits When we want some more functionality to the standard functionality we can use user exits. User exits are given by sap as subroutines and are called by SAP standard programs using PERFORM. Inside the subroutine (user exit) we can read and change almost any global data in the program. User exits are basically designed For SD module. Steps to find User-Exit: 1. Using SPRO 2. Search for USEREXIT_ in standard program. Using SPRO: Go to SPRO -> SAP Reference IMG.

User Exits

Embed Size (px)

Citation preview

Page 1: User Exits

Varma Pericherla, ERPandERP Pvt. Ltd. Hyderabad

User Exits

When we want some more functionality to the standard functionality we can use

user exits.

User exits are given by sap as subroutines and are called by SAP standard

programs using PERFORM.

Inside the subroutine (user exit) we can read and change almost any global data in

the program.

User exits are basically designed For SD module.

Steps to find User-Exit:

1. Using SPRO

2. Search for USEREXIT_ in standard program.

Using SPRO:

Go to SPRO -> SAP Reference IMG.

Page 2: User Exits

Varma Pericherla, ERPandERP Pvt. Ltd. Hyderabad

Click Sales and Distribution -> System Modifications -> User Exits.

Click on the documentation part and read it. Execute the necessary USER EXIT.

Page 3: User Exits

Varma Pericherla, ERPandERP Pvt. Ltd. Hyderabad

Consider an scenario to implement USER EXIT:

1. In Sales Order Change screen (VA02) we have to hide the search criteria .i.e.,

we can give only the order number.

Search criteria should not be visible.

Page 4: User Exits

Varma Pericherla, ERPandERP Pvt. Ltd. Hyderabad

We can achieve this using USER-EXIT. So we have to find user exits for the

main program (Tcode VA01) by using the keyword USEREXIT_ . Now select the

required user exit and implement it.

Save and activate the program. Go to VA01 to see the changes.