SCHEDULE SAP Method Execute Scheduling









Below is documentation, parameters and attributes of ABAP Method SCHEDULE within SAP class /SCMB/IF_CORR_SCHED_API. 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_CORR_SCHED_API into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

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

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


Parameters of Method SCHEDULE

.

NameTypeData TypeDescriptionDefault Value
IS_CONTRL_PARAMImportingTYPE
/SCMB/CORR_SCHED_CONTROL
Correlation Scheduling: Control Parameter
IT_REQUESTSImportingTYPE
/SCMB/CORR_SCHED_REQUEST_TAB
Correlation Scheduling: Scheduling Request(s)
ET_OUTPUTExportingTYPE
/SCMB/CORR_SCHED_OUTPUT_TAB
Correlation Scheduling: Add. Data of Scheduling Request
ET_RESULTSExportingTYPE
/SCMB/CORR_SCHED_RESULT_TAB
Correlation Scheduling: Date/Time Table (Scheduling Result)
ET_RETURNExportingTYPE
BAPIRET2_T
Error Messages



Exceptions of Method SCHEDULE

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_OUTPUT TYPE /SCMB/CORR_SCHED_OUTPUT_TAB,
lv_ET_RESULTS TYPE /SCMB/CORR_SCHED_RESULT_TAB,
lv_ET_RETURN TYPE BAPIRET2_T,
lv_IS_CONTRL_PARAM TYPE /SCMB/CORR_SCHED_CONTROL,
lv_IT_REQUESTS TYPE /SCMB/CORR_SCHED_REQUEST_TAB,
lv_other TYPE c.

CALL METHOD /SCMB/IF_CORR_SCHED_API=>SCHEDULE(
EXPORTING
IS_CONTRL_PARAM = lv_IS_CONTRL_PARAM
IT_REQUESTS = lv_IT_REQUESTS
IMPORTING
ET_OUTPUT = lv_ET_OUTPUT
ET_RESULTS = lv_ET_RESULTS
ET_RETURN = lv_ET_RETURN ).

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!