SAP OIJ_EL_C_CHECK_TSW_DATA Function Module for Check several TSW data against TSW customizing
OIJ_EL_C_CHECK_TSW_DATA is a standard oij el c check tsw data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check several TSW data against TSW customizing 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 oij el c check tsw data FM, simply by entering the name OIJ_EL_C_CHECK_TSW_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIJ_EL_C
Program Name: SAPLOIJ_EL_C
Main Program: SAPLOIJ_EL_C
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIJ_EL_C_CHECK_TSW_DATA 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 'OIJ_EL_C_CHECK_TSW_DATA'"Check several TSW data against TSW customizing.
EXPORTING
* IV_NO_BUFFER = "
IT_ROIJ_EL_DOC_MOT = "TSW Details header / internal structure (table type)
IT_ROIJ_EL_DOC_M_MOT = "Multiple MoT internal structure (table type)
IT_ROIJ_EL_DOC_M_MOT_DEL = "Multiple MoT internal structure (table type)
IT_ROIJ_EL_DOC_EV = "Structure rules for nomination events (table type)
IMPORTING
ET_RETURN = "Return error table type parameter
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLOIJ_EL_C_001 Customer screen PBO
EXIT_SAPLOIJ_EL_C_002 Customer screen PAI
IMPORTING Parameters details for OIJ_EL_C_CHECK_TSW_DATA
IV_NO_BUFFER -
Data type: COptional: Yes
Call by Reference: Yes
IT_ROIJ_EL_DOC_MOT - TSW Details header / internal structure (table type)
Data type: ROIJ_EL_DOC_MOT_TOptional: No
Call by Reference: Yes
IT_ROIJ_EL_DOC_M_MOT - Multiple MoT internal structure (table type)
Data type: ROIJ_EL_DOC_M_MOT_TOptional: No
Call by Reference: Yes
IT_ROIJ_EL_DOC_M_MOT_DEL - Multiple MoT internal structure (table type)
Data type: ROIJ_EL_DOC_M_MOT_TOptional: No
Call by Reference: Yes
IT_ROIJ_EL_DOC_EV - Structure rules for nomination events (table type)
Data type: ROIJ_EL_DOC_EV_TOptional: No
Call by Reference: Yes
EXPORTING Parameters details for OIJ_EL_C_CHECK_TSW_DATA
ET_RETURN - Return error table type parameter
Data type: BAPIRET2_TTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIJ_EL_C_CHECK_TSW_DATA 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_et_return | TYPE BAPIRET2_TT, " | |||
| lv_iv_no_buffer | TYPE C, " | |||
| lv_it_roij_el_doc_mot | TYPE ROIJ_EL_DOC_MOT_T, " | |||
| lv_it_roij_el_doc_m_mot | TYPE ROIJ_EL_DOC_M_MOT_T, " | |||
| lv_it_roij_el_doc_m_mot_del | TYPE ROIJ_EL_DOC_M_MOT_T, " | |||
| lv_it_roij_el_doc_ev | TYPE ROIJ_EL_DOC_EV_T. " |
|   CALL FUNCTION 'OIJ_EL_C_CHECK_TSW_DATA' "Check several TSW data against TSW customizing |
| EXPORTING | ||
| IV_NO_BUFFER | = lv_iv_no_buffer | |
| IT_ROIJ_EL_DOC_MOT | = lv_it_roij_el_doc_mot | |
| IT_ROIJ_EL_DOC_M_MOT | = lv_it_roij_el_doc_m_mot | |
| IT_ROIJ_EL_DOC_M_MOT_DEL | = lv_it_roij_el_doc_m_mot_del | |
| IT_ROIJ_EL_DOC_EV | = lv_it_roij_el_doc_ev | |
| IMPORTING | ||
| ET_RETURN | = lv_et_return | |
| . " OIJ_EL_C_CHECK_TSW_DATA | ||
ABAP code using 7.40 inline data declarations to call FM OIJ_EL_C_CHECK_TSW_DATA
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.Search for further information about these or an SAP related objects