SCHEDULE SAP Method Execute Scheduling
Below is documentation, parameters and attributes of ABAP Method SCHEDULE within SAP class /SCMB/IF_SC_SCHED. 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_SC_SCHED 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/SC_CONTRL_PARAM | SCMB Scheduling: Global Control Parameter | |
| IT_ENTRIES | Importing | TYPE /SCMB/SC_ENTRYDATE_TAB | SCMB Scheduling: Table of Entry Point Dates | |
| IT_FDATES | Importing | TYPE /SCMB/SC_FIXDATE_TAB | SCMB Scheduling: Table of Fixed Dates per Scheduling Request | |
| IT_PROPTS | Importing | TYPE /SCMB/SC_PROPT_TAB | SCMB Scheduling: Table of Properties per Scheduling Request | |
| IT_REQUESTS | Importing | TYPE /SCMB/SC_REQUEST_TAB | SCMB Scheduling: Scheduling Request(s) | |
| ET_SCHEDRES | Exporting | TYPE /SCMB/SC_SCHEDRES_TAB | SCMB Scheduling: Scheduling Result |
Exceptions of Method SCHEDULE
/SCMB/CX_SC_SCHED - SCMB Scheduling: Superclass Exceptions (Highest Level)Example ABAP coding
DATA: lv_ET_SCHEDRES TYPE /SCMB/SC_SCHEDRES_TAB,
lv_IS_CONTRL_PARAM TYPE /SCMB/SC_CONTRL_PARAM,
lv_IT_ENTRIES TYPE /SCMB/SC_ENTRYDATE_TAB,
lv_IT_FDATES TYPE /SCMB/SC_FIXDATE_TAB,
lv_IT_PROPTS TYPE /SCMB/SC_PROPT_TAB,
lv_IT_REQUESTS TYPE /SCMB/SC_REQUEST_TAB,
lv_other TYPE c.
CALL METHOD /SCMB/IF_SC_SCHED=>SCHEDULE(
EXPORTING
IS_CONTRL_PARAM = lv_IS_CONTRL_PARAM
IT_ENTRIES = lv_IT_ENTRIES
IT_FDATES = lv_IT_FDATES
IT_PROPTS = lv_IT_PROPTS
IT_REQUESTS = lv_IT_REQUESTS
IMPORTING
ET_SCHEDRES = lv_ET_SCHEDRES ).
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