First way to find a Function Module Exit in ABAP
Ways to find a Function Module Exit:
* Put the Breakpoint on the statement CALL CUSTOMER-FUNCTION.* Put the package name of the program in SMOD T-code (Utilities-find-package name)
* Go to T-code SE84(Enhancements- Customer exits).
***************************************************************************************************
To pass the default value to 'Sold-to-party' field in 'VA01' transaction.
*****************************************************************************************
Put the Breakpoint on the statement CALL CUSTOMER-FUNCTION.
1. Go to T-code 'VA01'.
2. Enter order type. (Eg: AA).
3. Enter '/h' (To become debugger on) and press 'Enter'.
4. In debugger click on 'Breakpoints' choose breakpoint at and select break point at statement.
6. Click 'F8'.
7. Click on 'program/include/line'(new window opened).
9. Repeat the step's 6,7,8 up to finding the correct function module.
10. Our requirement meets function module is
Comments
Post a Comment