SAP OIJ_NOM_DATA_MODIFY Function Module for Modifies temp. global nomination data









OIJ_NOM_DATA_MODIFY is a standard oij nom data modify SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Modifies temp. global nomination data 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 nom data modify FM, simply by entering the name OIJ_NOM_DATA_MODIFY into the relevant SAP transaction such as SE37 or SE38.

Function Group: OIJ_TEMP_BUFFER
Program Name: SAPLOIJ_TEMP_BUFFER
Main Program: SAPLOIJ_TEMP_BUFFER
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function OIJ_NOM_DATA_MODIFY 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_NOM_DATA_MODIFY'"Modifies temp. global nomination data
EXPORTING
* IT_NOM_HEADER = "Nomination Header Communcation Table Type
* IT_NOM_REF = "Nomination Reference Documents IO Table Type
* IT_NOM_PEGGING = "TSW: Table type - Pegging of scheduled movements
* IV_WITH_INSERT = "boolean variable (X=true, -=false, space=unknown)
* IV_WITH_BINARY_SEARCH = 'X' "boolean variable (X=true, -=false, space=unknown)
* IT_NOM_ITEM = "Nomination Item Communication
* IT_NOM_HEADER_TEXT = "TSW: table type to roij_txt
* IT_NOM_ITEM_TEXT = "TSW: table type to roij_txt
* IT_NOM_EVENTS = "Nomination Events Communication Table
* IT_NOM_EVENTS_TEXT = "TSW: table type to roij_txt
* IT_NOM_BALANCE = "Nomination Material Balance Table Type
* IT_NOM_STAGES = "TSW (&TD) STages IO
* IT_NOM_COMM = "Nomination Partner Communication Table Type
.



IMPORTING Parameters details for OIJ_NOM_DATA_MODIFY

IT_NOM_HEADER - Nomination Header Communcation Table Type

Data type: ROIJNOMHIO_T
Optional: Yes
Call by Reference: Yes

IT_NOM_REF - Nomination Reference Documents IO Table Type

Data type: ROIJNOMRIO_T
Optional: Yes
Call by Reference: Yes

IT_NOM_PEGGING - TSW: Table type - Pegging of scheduled movements

Data type: ROIJ_PEG_T
Optional: Yes
Call by Reference: Yes

IV_WITH_INSERT - boolean variable (X=true, -=false, space=unknown)

Data type: BOOLEAN
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_WITH_BINARY_SEARCH - boolean variable (X=true, -=false, space=unknown)

Data type: BOOLEAN
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_NOM_ITEM - Nomination Item Communication

Data type: ROIJNOMIIO_T
Optional: Yes
Call by Reference: Yes

IT_NOM_HEADER_TEXT - TSW: table type to roij_txt

Data type: OIJ_TXT
Optional: Yes
Call by Reference: Yes

IT_NOM_ITEM_TEXT - TSW: table type to roij_txt

Data type: OIJ_TXT
Optional: Yes
Call by Reference: Yes

IT_NOM_EVENTS - Nomination Events Communication Table

Data type: ROIJNEIO_T
Optional: Yes
Call by Reference: Yes

IT_NOM_EVENTS_TEXT - TSW: table type to roij_txt

Data type: OIJ_TXT
Optional: Yes
Call by Reference: Yes

IT_NOM_BALANCE - Nomination Material Balance Table Type

Data type: OIJNOMM_T
Optional: Yes
Call by Reference: Yes

IT_NOM_STAGES - TSW (&TD) STages IO

Data type: ROIJ_STAGESIO_T
Optional: Yes
Call by Reference: Yes

IT_NOM_COMM - Nomination Partner Communication Table Type

Data type: OIJNOMCOMM_T
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for OIJ_NOM_DATA_MODIFY 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_it_nom_header  TYPE ROIJNOMHIO_T, "   
lv_it_nom_ref  TYPE ROIJNOMRIO_T, "   
lv_it_nom_pegging  TYPE ROIJ_PEG_T, "   
lv_iv_with_insert  TYPE BOOLEAN, "   
lv_iv_with_binary_search  TYPE BOOLEAN, "   'X'
lv_it_nom_item  TYPE ROIJNOMIIO_T, "   
lv_it_nom_header_text  TYPE OIJ_TXT, "   
lv_it_nom_item_text  TYPE OIJ_TXT, "   
lv_it_nom_events  TYPE ROIJNEIO_T, "   
lv_it_nom_events_text  TYPE OIJ_TXT, "   
lv_it_nom_balance  TYPE OIJNOMM_T, "   
lv_it_nom_stages  TYPE ROIJ_STAGESIO_T, "   
lv_it_nom_comm  TYPE OIJNOMCOMM_T. "   

  CALL FUNCTION 'OIJ_NOM_DATA_MODIFY'  "Modifies temp. global nomination data
    EXPORTING
         IT_NOM_HEADER = lv_it_nom_header
         IT_NOM_REF = lv_it_nom_ref
         IT_NOM_PEGGING = lv_it_nom_pegging
         IV_WITH_INSERT = lv_iv_with_insert
         IV_WITH_BINARY_SEARCH = lv_iv_with_binary_search
         IT_NOM_ITEM = lv_it_nom_item
         IT_NOM_HEADER_TEXT = lv_it_nom_header_text
         IT_NOM_ITEM_TEXT = lv_it_nom_item_text
         IT_NOM_EVENTS = lv_it_nom_events
         IT_NOM_EVENTS_TEXT = lv_it_nom_events_text
         IT_NOM_BALANCE = lv_it_nom_balance
         IT_NOM_STAGES = lv_it_nom_stages
         IT_NOM_COMM = lv_it_nom_comm
. " OIJ_NOM_DATA_MODIFY




ABAP code using 7.40 inline data declarations to call FM OIJ_NOM_DATA_MODIFY

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.

 
 
 
 
DATA(ld_iv_with_binary_search) = 'X'.
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!