SCHEDULE_NETWORK SAP Method Schedule a Network of Activities
Below is documentation, parameters and attributes of ABAP Method SCHEDULE_NETWORK within SAP class /SCMB/IF_SC_EXTM. 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_EXTM 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 SCHEDULE_NETWORK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SCHEDULE_NETWORK
.| Name | Type | Data Type | Description | Default Value |
| IO_CONTAINER | Importing | TYPE REF TO IF_SWF_IFS_PARAMETER_CONTAINER | Container to Transfer Parameters | |
| IS_DATE_REQ | Importing | TYPE /SCMB/SC_DATE_REQ | SCMB Scheduling: Date (Time Stamp and Date Type) | |
| IT_NETWORK | Importing | TYPE /SCMB/SC_EXPL_NET_TAB | SCMB Scheduling: Table of Links of Activity Network | |
| IV_CALLID | Importing | TYPE /SCMB/SC_CALLID | SCMB Scheduling: Identifier for Call of External Services | |
| ET_RESULT | Exporting | TYPE /SCMB/SC_EXTMRESULT_GROUP_TAB | SCMB Scheduling: Result of Coherent Processing Grade 2 |
Exceptions of Method SCHEDULE_NETWORK
/SCMB/CX_SC_EXTM - SCMB Scheduling: Exceptions External MethodsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_SC_EXTM.
DATA: lv_ET_RESULT TYPE /SCMB/SC_EXTMRESULT_GROUP_TAB,
lv_IO_CONTAINER TYPE IF_SWF_IFS_PARAMETER_CONTAINER,
lv_IS_DATE_REQ TYPE /SCMB/SC_DATE_REQ,
lv_IT_NETWORK TYPE /SCMB/SC_EXPL_NET_TAB,
lv_IV_CALLID TYPE /SCMB/SC_CALLID,
lv_other TYPE c.
CALL METHOD lo_class=>SCHEDULE_NETWORK(
EXPORTING
IO_CONTAINER = lv_IO_CONTAINER
IS_DATE_REQ = lv_IS_DATE_REQ
IT_NETWORK = lv_IT_NETWORK
IV_CALLID = lv_IV_CALLID
IMPORTING
ET_RESULT = lv_ET_RESULT ).
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