SAP OIJ_NOMH_REFERENCE_GET Function Module for IS-OIL TSW IDoc inbound processing for Tickets --> Check Nom. Header Ref.
OIJ_NOMH_REFERENCE_GET is a standard oij nomh reference get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-OIL TSW IDoc inbound processing for Tickets --> Check Nom. Header Ref. 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 nomh reference get FM, simply by entering the name OIJ_NOMH_REFERENCE_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIJF
Program Name: SAPLOIJF
Main Program: SAPLOIJF
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIJ_NOMH_REFERENCE_GET 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_NOMH_REFERENCE_GET'"IS-OIL TSW IDoc inbound processing for Tickets --> Check Nom. Header Ref..
EXPORTING
* I_DARK = "
CHANGING
P_OIJNOMH = "
P_TICKET_HEADER = "Universal ticket table
P_TICKET_ITEM = "Universal ticket item table processing structure
TABLES
P_OIJNOMH_TABLE = "
EXCEPTIONS
NO_MATCHED_NOMINATION = 1 NO_UNIQUE_NOMINATION = 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_SAPLOIJF_001 TSW User Exit : Ticket Table Modification
EXIT_SAPLOIJF_002 TSW User Exit : Set Close Shipment Parameter
IMPORTING Parameters details for OIJ_NOMH_REFERENCE_GET
I_DARK -
Data type:Optional: Yes
Call by Reference: Yes
CHANGING Parameters details for OIJ_NOMH_REFERENCE_GET
P_OIJNOMH -
Data type: OIJNOMHOptional: No
Call by Reference: No ( called with pass by value option)
P_TICKET_HEADER - Universal ticket table
Data type: OIJ_EL_TICKET_HOptional: No
Call by Reference: No ( called with pass by value option)
P_TICKET_ITEM - Universal ticket item table processing structure
Data type: OIJ_EL_TICKET_IOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for OIJ_NOMH_REFERENCE_GET
P_OIJNOMH_TABLE -
Data type: OIJNOMHOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_MATCHED_NOMINATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_UNIQUE_NOMINATION -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OIJ_NOMH_REFERENCE_GET 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_i_dark | TYPE STRING, " | |||
| lv_p_oijnomh | TYPE OIJNOMH, " | |||
| lt_p_oijnomh_table | TYPE STANDARD TABLE OF OIJNOMH, " | |||
| lv_no_matched_nomination | TYPE OIJNOMH, " | |||
| lv_p_ticket_header | TYPE OIJ_EL_TICKET_H, " | |||
| lv_no_unique_nomination | TYPE OIJ_EL_TICKET_H, " | |||
| lv_p_ticket_item | TYPE OIJ_EL_TICKET_I. " |
|   CALL FUNCTION 'OIJ_NOMH_REFERENCE_GET' "IS-OIL TSW IDoc inbound processing for Tickets --> Check Nom. Header Ref. |
| EXPORTING | ||
| I_DARK | = lv_i_dark | |
| CHANGING | ||
| P_OIJNOMH | = lv_p_oijnomh | |
| P_TICKET_HEADER | = lv_p_ticket_header | |
| P_TICKET_ITEM | = lv_p_ticket_item | |
| TABLES | ||
| P_OIJNOMH_TABLE | = lt_p_oijnomh_table | |
| EXCEPTIONS | ||
| NO_MATCHED_NOMINATION = 1 | ||
| NO_UNIQUE_NOMINATION = 2 | ||
| . " OIJ_NOMH_REFERENCE_GET | ||
ABAP code using 7.40 inline data declarations to call FM OIJ_NOMH_REFERENCE_GET
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