PROCESS_OVERDUE SAP Method Process package of overdue schedule lines









Below is documentation, parameters and attributes of ABAP Method PROCESS_OVERDUE within SAP class /SCMB/IF_EX_SPLREP_PROCESS_DUE. 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 /SCMB/IF_EX_SPLREP_PROCESS_DUE 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 PROCESS_OVERDUE can also be found below:

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


Parameters of Method PROCESS_OVERDUE

.

NameTypeData TypeDescriptionDefault Value
IO_ALERTImportingTYPE REF TO
/SAPAPO/IF_PE_ALERT
PSM Data Manager Interface Alert
IT_DUEImportingTYPE
/SCMB/SPLR_DUELIST_TAB
Overdue Scheduling Agreements and Purchase Orders
IT_DUE_DELETEImportingTYPE
/SCMB/SPLR_DUELIST_TAB
Overdue Scheduling Agreements and Purchase Orders
IT_LOCMATImportingTYPE
/SCMB/MDE_MATIDLOCID_TAB
Product ID and Location ID Table
IT_PRIM_LOCFRLOCTOMATImportingTYPE
/SCMB/MDL_LOCFRLOCTOMATID_TAB
LOCFR - LOCTO - MATID Key
IV_CALC_MOImportingTYPE
XFELD
Include Production Orders (Internal Production)
IV_CALC_POImportingTYPE
XFELD
Include Purchase Orders (TPOP, non-TPOP, Subcontracting)
IV_CALC_ROImportingTYPE
XFELD
Include Refurbishment Orders (Internal)
IV_CALC_RSImportingTYPE
XFELD
Include Scheduling Agreement Releases
IV_CALC_TOImportingTYPE
XFELD
Include Stock Transfer Orders



Exceptions of Method PROCESS_OVERDUE

/SAPAPO/CX_PE_INTERFACE - Incorrect Use of PSM Interface

Example ABAP coding


DATA: lo_class TYPE REF TO /SCMB/IF_EX_SPLREP_PROCESS_DUE.
DATA: lv_IO_ALERT TYPE /SAPAPO/IF_PE_ALERT,
lv_IT_DUE TYPE /SCMB/SPLR_DUELIST_TAB,
lv_IT_DUE_DELETE TYPE /SCMB/SPLR_DUELIST_TAB,
lv_IT_LOCMAT TYPE /SCMB/MDE_MATIDLOCID_TAB,
lv_IT_PRIM_LOCFRLOCTOMAT TYPE /SCMB/MDL_LOCFRLOCTOMATID_TAB,
lv_IV_CALC_MO TYPE XFELD,
lv_IV_CALC_PO TYPE XFELD,
lv_IV_CALC_RO TYPE XFELD,
lv_IV_CALC_RS TYPE XFELD,
lv_IV_CALC_TO TYPE XFELD,
lv_other TYPE c.

CALL METHOD lo_class=>PROCESS_OVERDUE(
EXPORTING
IO_ALERT = lv_IO_ALERT
IT_DUE = lv_IT_DUE
IT_DUE_DELETE = lv_IT_DUE_DELETE
IT_LOCMAT = lv_IT_LOCMAT
IT_PRIM_LOCFRLOCTOMAT = lv_IT_PRIM_LOCFRLOCTOMAT
IV_CALC_MO = lv_IV_CALC_MO
IV_CALC_PO = lv_IV_CALC_PO
IV_CALC_RO = lv_IV_CALC_RO
IV_CALC_RS = lv_IV_CALC_RS
IV_CALC_TO = lv_IV_CALC_TO ).

Links to Related Class(s)

/SCMB/IF...
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!