EXIT_SAPML03T_001 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name EXIT_SAPML03T_001 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
XLTO
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'EXIT_SAPML03T_001' "Underdelivery With Customer Exit
EXPORTING
i_ausml = " rl03t-ausml Total Quantity to be Picked
i_offml = " rl03t-offml Open Unplanned Quantity
i_sumtl = " rl03t-sumtl Total of Generated TO Items
i_ausme = " rl03t-ausme Total Active Ingredient Quantity to be Picked
i_offme = " rl03t-offme Open Unplanned Active Ingredient Quantity
i_sumtm = " rl03t-sumtm Active Ingredient Total of Generated TO Items
i_ltak = " ltak Transfer Order Header
i_ltap = " ltap Transfer Order Item
i_mlvs = " mlvs Material Master
i_mgef = " mgef Hazardous Material Data
i_t333 = " t333 Movement Type
i_t340d = " t340d Warehouse Number Control
i_vorga = " ltap-vorga Process
IMPORTING
e_exit = " rl03t-exit Indicator: Do Not Generate Any Further Items
TABLES
t_ltapa = " ltapa TO Items Created Until Now
. " EXIT_SAPML03T_001
The ABAP code below is a full code listing to execute function module EXIT_SAPML03T_001 including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_e_exit | TYPE RL03T-EXIT , |
| it_t_ltapa | TYPE STANDARD TABLE OF LTAPA,"TABLES PARAM |
| wa_t_ltapa | LIKE LINE OF it_t_ltapa . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_exit | TYPE RL03T-EXIT , |
| ld_i_ausml | TYPE RL03T-AUSML , |
| it_t_ltapa | TYPE STANDARD TABLE OF LTAPA , |
| wa_t_ltapa | LIKE LINE OF it_t_ltapa, |
| ld_i_offml | TYPE RL03T-OFFML , |
| ld_i_sumtl | TYPE RL03T-SUMTL , |
| ld_i_ausme | TYPE RL03T-AUSME , |
| ld_i_offme | TYPE RL03T-OFFME , |
| ld_i_sumtm | TYPE RL03T-SUMTM , |
| ld_i_ltak | TYPE LTAK , |
| ld_i_ltap | TYPE LTAP , |
| ld_i_mlvs | TYPE MLVS , |
| ld_i_mgef | TYPE MGEF , |
| ld_i_t333 | TYPE T333 , |
| ld_i_t340d | TYPE T340D , |
| ld_i_vorga | TYPE LTAP-VORGA . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name EXIT_SAPML03T_001 or its description.
EXIT_SAPML03T_001 - Underdelivery With Customer Exit EXIT_SAPMKPT4_020 - Customer Exit for Quantities: Copy Plan->Plan/Actual->Plan EXIT_SAPMKPT4_010 - Customer Exit for Costs: Copy Plan->Plan/Actual->Plan EXIT_SAPMKKS0_001 - Variances: Switch Off Automatic Job Scheduling for Subsequent Period EXIT_SAPMKGA2_001 - Customer Exit for Authorization Check: Excecute Cycle EXIT_SAPMKFPR_001 - Transfer Price Agreement Enhancement