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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IS_CONTRL_PARAM | Importing | TYPE /SCMB/CORR_SCHED_CONTROL | Correlation Scheduling: Control Parameter | |
| IT_REQUESTS | Importing | TYPE /SCMB/CORR_SCHED_REQUEST_TAB | Correlation Scheduling: Scheduling Request(s) | |
| ET_OUTPUT | Exporting | TYPE /SCMB/CORR_SCHED_OUTPUT_TAB | Correlation Scheduling: Add. Data of Scheduling Request | |
| ET_RESULTS | Exporting | TYPE /SCMB/CORR_SCHED_RESULT_TAB | Correlation Scheduling: Date/Time Table (Scheduling Result) | |
| ET_RETURN | Exporting | TYPE BAPIRET2_T | Error Messages |
Exceptions of Method SCHEDULE
This method does not have any exceptionsExample 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