SAP OIJU_READ_OIJRDNOM_ARRAY_NOMTK Function Module for Read OIJRDNOM for an array of nominations / buffered
OIJU_READ_OIJRDNOM_ARRAY_NOMTK is a standard oiju read oijrdnom array nomtk SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read OIJRDNOM for an array of nominations / buffered 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 oiju read oijrdnom array nomtk FM, simply by entering the name OIJU_READ_OIJRDNOM_ARRAY_NOMTK into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIJU
Program Name: SAPLOIJU
Main Program: SAPLOIJU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIJU_READ_OIJRDNOM_ARRAY_NOMTK 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 'OIJU_READ_OIJRDNOM_ARRAY_NOMTK'"Read OIJRDNOM for an array of nominations / buffered.
EXPORTING
IT_NOMI_KEY = "Nomination Item Key Table Type
* IV_BYPASSING_BUFFER = "Single-character flag
* IV_REFRESH_BUFFER = "boolean variable (X=true, -=false, space=unknown)
TABLES
CT_OIJRDNOM = "OIL-TSW: Rundown item / nomination X-ref table
EXCEPTIONS
RECORDS_NOT_REQUESTED = 1 RECORDS_NOT_FOUND = 2
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_SAPLOIJU_001 OIL-TSW: Customer exit for editing rundown plant book inventory
EXIT_SAPLOIJU_002 OIL-TSW: Customer exit for editing rundown plant SOP data
EXIT_SAPLOIJU_003 OIL-TSW: Customer exit for editing rundown plant statistical movement data
IMPORTING Parameters details for OIJU_READ_OIJRDNOM_ARRAY_NOMTK
IT_NOMI_KEY - Nomination Item Key Table Type
Data type: ROIJNOMI_KEY_TOptional: No
Call by Reference: No ( called with pass by value option)
IV_BYPASSING_BUFFER - Single-character flag
Data type: CHAR1Optional: Yes
Call by Reference: Yes
IV_REFRESH_BUFFER - boolean variable (X=true, -=false, space=unknown)
Data type: BOOLEANOptional: Yes
Call by Reference: Yes
TABLES Parameters details for OIJU_READ_OIJRDNOM_ARRAY_NOMTK
CT_OIJRDNOM - OIL-TSW: Rundown item / nomination X-ref table
Data type: OIJRDNOMOptional: No
Call by Reference: Yes
EXCEPTIONS details
RECORDS_NOT_REQUESTED -
Data type:Optional: No
Call by Reference: Yes
RECORDS_NOT_FOUND - No entry found
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIJU_READ_OIJRDNOM_ARRAY_NOMTK 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: | ||||
| lt_ct_oijrdnom | TYPE STANDARD TABLE OF OIJRDNOM, " | |||
| lv_it_nomi_key | TYPE ROIJNOMI_KEY_T, " | |||
| lv_records_not_requested | TYPE ROIJNOMI_KEY_T, " | |||
| lv_records_not_found | TYPE ROIJNOMI_KEY_T, " | |||
| lv_iv_bypassing_buffer | TYPE CHAR1, " | |||
| lv_iv_refresh_buffer | TYPE BOOLEAN. " |
|   CALL FUNCTION 'OIJU_READ_OIJRDNOM_ARRAY_NOMTK' "Read OIJRDNOM for an array of nominations / buffered |
| EXPORTING | ||
| IT_NOMI_KEY | = lv_it_nomi_key | |
| IV_BYPASSING_BUFFER | = lv_iv_bypassing_buffer | |
| IV_REFRESH_BUFFER | = lv_iv_refresh_buffer | |
| TABLES | ||
| CT_OIJRDNOM | = lt_ct_oijrdnom | |
| EXCEPTIONS | ||
| RECORDS_NOT_REQUESTED = 1 | ||
| RECORDS_NOT_FOUND = 2 | ||
| . " OIJU_READ_OIJRDNOM_ARRAY_NOMTK | ||
ABAP code using 7.40 inline data declarations to call FM OIJU_READ_OIJRDNOM_ARRAY_NOMTK
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