Posts

Showing posts with the label function module exits in sap abap

SAP ABAP - Function Module Exits (Customer Exits).

Image
Function module exits are exits developed by SAP which are implemented as a call to a function module. Code is not written directly in the function module, but in the include program, of the function module. Example: CALL CUSTOMER-FUNCTION '910' The naming standard of function modules for function module exits is: EXIT_<program name>_<3 digit suffix> Some of the function module exits available for MM –Purchasing Check function group ‘XM06’in SE80 – It Contains a list of function module exits for Materials Mgmt. (Purchasing). Similarly check the other screenshots also . MM - Purchase Requisition: Function Group XM02 Sales Order: Function Group XVVA CIN 2.0 HOW TO FIND FUNCTION MODULE EXITS (CUSTOMER EXITS) ? Basically there are three ways, 1) Search 'CALL CUSTOMER' keyword in search programs. 2) Via SMOD transaction. 3) Via SE81 Transaction. RELATED POSTS: - USER EXITS - Introduction, Importa...