UPDATE_DOCUMENTS SAP Method Update Reference Documents linked to Nomination









Below is documentation, parameters and attributes of ABAP Method UPDATE_DOCUMENTS within SAP class IF_EX_OIJ_NOM_MAINTAIN. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_OIJ_NOM_MAINTAIN into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method UPDATE_DOCUMENTS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method UPDATE_DOCUMENTS

.

NameTypeData TypeDescriptionDefault Value
IT_NOM_HEADERImportingTYPE
ROIJNOMHIO_T
Nomination Header Communcation Table Type
IV_APPLICATIONImportingTYPE
CHAR10
Calling application
IV_SIMULATIONImportingTYPE
BOOLEAN
Whethe rin simulation mode
IV_VALIDATIONImportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
CT_NOM_EVENTChangingTYPE
ROIJNEIO_T
Nomination Events Communication Table
CT_NOM_ITEMChangingTYPE
ROIJNOMIIO_T
Nomination Item Communication
CT_NOM_SUBITEMChangingTYPE
ROIJNOMSUBITEMSIO_T
TSW: Table type for Nomination sub-items communication
CT_RETURNChangingTYPE
OIJ_NOM_BAPIRET2_T
Return parameter for TSW full validation
CV_HARD_ERRORChangingTYPE
BOOLEAN
Hard error in processing
CV_SOFT_ERRORChangingTYPE
BOOLEAN
soft error in processing



Exceptions of Method UPDATE_DOCUMENTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_OIJ_NOM_MAINTAIN.
DATA: lv_CT_NOM_EVENT TYPE ROIJNEIO_T,
lv_CT_NOM_ITEM TYPE ROIJNOMIIO_T,
lv_CT_NOM_SUBITEM TYPE ROIJNOMSUBITEMSIO_T,
lv_CT_RETURN TYPE OIJ_NOM_BAPIRET2_T,
lv_CV_HARD_ERROR TYPE BOOLEAN,
lv_CV_SOFT_ERROR TYPE BOOLEAN,
lv_IT_NOM_HEADER TYPE ROIJNOMHIO_T,
lv_IV_APPLICATION TYPE CHAR10,
lv_IV_SIMULATION TYPE BOOLEAN,
lv_IV_VALIDATION TYPE BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>UPDATE_DOCUMENTS(
EXPORTING
IT_NOM_HEADER = lv_IT_NOM_HEADER
IV_APPLICATION = lv_IV_APPLICATION
IV_SIMULATION = lv_IV_SIMULATION
IV_VALIDATION = lv_IV_VALIDATION
CHANGING
CT_NOM_EVENT = lv_CT_NOM_EVENT
CT_NOM_ITEM = lv_CT_NOM_ITEM
CT_NOM_SUBITEM = lv_CT_NOM_SUBITEM
CT_RETURN = lv_CT_RETURN
CV_HARD_ERROR = lv_CV_HARD_ERROR
CV_SOFT_ERROR = lv_CV_SOFT_ERROR ).

Links to Related Class(s)

IF_EX_OI...
Full list of available SAP object classes

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!