SAP EXIT_SAPMOIJA_003 Function Module for User exit at transport system update
EXIT_SAPMOIJA_003 is a standard exit sapmoija 003 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for User exit at transport system update processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for exit sapmoija 003 FM, simply by entering the name EXIT_SAPMOIJA_003 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XOIJ
Program Name: SAPLXOIJ
Main Program: SAPLXOIJ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPMOIJA_003 pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'EXIT_SAPMOIJA_003'"User exit at transport system update.
EXPORTING
* I_OIJTS = "OIL-TSW: Transport system
* I_OIJTS_FLAG = "Transaction type
* I_INTTAB_FLAG = "Transaction type
* I_RECOVER_DELETE = ' ' "Deletion indicator
CHANGING
* E_OIJTS = "Transport system
TABLES
* I_OIJTSLOC_TAB = "OIL-TSW: Structure to update OIJTSLOC table
* I_OIJTSLOC_DELETE_TAB = "OIL-TSW: transport system/location assignment table
* I_OIJTSMAT_TAB = "OIL-TSW: Structure for int. table OIJTSMAT_TAB
* I_OIJTSMAT_DELETE_TAB = "OIL-TSW: TS Rundown/Planning material table
* I_OIJRRA_TAB = "OIL-TSW: Partner roles (process structure)
* I_OLD_OIJTSMAT_TAB = "OIL-TSW: TS Rundown/Planning material table
IMPORTING Parameters details for EXIT_SAPMOIJA_003
I_OIJTS - OIL-TSW: Transport system
Data type: OIJTSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_OIJTS_FLAG - Transaction type
Data type: T180-TRTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_INTTAB_FLAG - Transaction type
Data type: T180-TRTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RECOVER_DELETE - Deletion indicator
Data type: ROIJSTAT-DELINDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for EXIT_SAPMOIJA_003
E_OIJTS - Transport system
Data type: OIJTSOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for EXIT_SAPMOIJA_003
I_OIJTSLOC_TAB - OIL-TSW: Structure to update OIJTSLOC table
Data type: ROIJTSLOCOptional: Yes
Call by Reference: Yes
I_OIJTSLOC_DELETE_TAB - OIL-TSW: transport system/location assignment table
Data type: OIJTSLOCOptional: Yes
Call by Reference: Yes
I_OIJTSMAT_TAB - OIL-TSW: Structure for int. table OIJTSMAT_TAB
Data type: ROIJTSMATOptional: Yes
Call by Reference: Yes
I_OIJTSMAT_DELETE_TAB - OIL-TSW: TS Rundown/Planning material table
Data type: OIJTSMATOptional: Yes
Call by Reference: Yes
I_OIJRRA_TAB - OIL-TSW: Partner roles (process structure)
Data type: ROIJRRAOptional: Yes
Call by Reference: Yes
I_OLD_OIJTSMAT_TAB - OIL-TSW: TS Rundown/Planning material table
Data type: OIJTSMATOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for EXIT_SAPMOIJA_003 Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_e_oijts | TYPE OIJTS, " | |||
| lv_i_oijts | TYPE OIJTS, " | |||
| lt_i_oijtsloc_tab | TYPE STANDARD TABLE OF ROIJTSLOC, " | |||
| lv_i_oijts_flag | TYPE T180-TRTYP, " | |||
| lt_i_oijtsloc_delete_tab | TYPE STANDARD TABLE OF OIJTSLOC, " | |||
| lv_i_inttab_flag | TYPE T180-TRTYP, " | |||
| lt_i_oijtsmat_tab | TYPE STANDARD TABLE OF ROIJTSMAT, " | |||
| lv_i_recover_delete | TYPE ROIJSTAT-DELIND, " SPACE | |||
| lt_i_oijtsmat_delete_tab | TYPE STANDARD TABLE OF OIJTSMAT, " | |||
| lt_i_oijrra_tab | TYPE STANDARD TABLE OF ROIJRRA, " | |||
| lt_i_old_oijtsmat_tab | TYPE STANDARD TABLE OF OIJTSMAT. " |
|   CALL FUNCTION 'EXIT_SAPMOIJA_003' "User exit at transport system update |
| EXPORTING | ||
| I_OIJTS | = lv_i_oijts | |
| I_OIJTS_FLAG | = lv_i_oijts_flag | |
| I_INTTAB_FLAG | = lv_i_inttab_flag | |
| I_RECOVER_DELETE | = lv_i_recover_delete | |
| CHANGING | ||
| E_OIJTS | = lv_e_oijts | |
| TABLES | ||
| I_OIJTSLOC_TAB | = lt_i_oijtsloc_tab | |
| I_OIJTSLOC_DELETE_TAB | = lt_i_oijtsloc_delete_tab | |
| I_OIJTSMAT_TAB | = lt_i_oijtsmat_tab | |
| I_OIJTSMAT_DELETE_TAB | = lt_i_oijtsmat_delete_tab | |
| I_OIJRRA_TAB | = lt_i_oijrra_tab | |
| I_OLD_OIJTSMAT_TAB | = lt_i_old_oijtsmat_tab | |
| . " EXIT_SAPMOIJA_003 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPMOIJA_003
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single TRTYP FROM T180 INTO @DATA(ld_i_oijts_flag). | ||||
| "SELECT single TRTYP FROM T180 INTO @DATA(ld_i_inttab_flag). | ||||
| "SELECT single DELIND FROM ROIJSTAT INTO @DATA(ld_i_recover_delete). | ||||
| DATA(ld_i_recover_delete) | = ' '. | |||
Search for further information about these or an SAP related objects