SCHEDULE_SESSION_TO_BATCH SAP Method Start Task List Run in background process
Below is documentation, parameters and attributes of ABAP Method SCHEDULE_SESSION_TO_BATCH within SAP class CL_STCTM_PREPROCESSOR. 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 CL_STCTM_PREPROCESSOR 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_SESSION_TO_BATCH can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SCHEDULE_SESSION_TO_BATCH
.| Name | Type | Data Type | Description | Default Value |
| IS_STARTSPEC | Importing | TYPE TBTCSTRT | Start data description / Repetition period of background job | |
| I_CHECKRUN | Importing | TYPE STC_CHECKRUN | TC Check Run | |
| I_DIALOG_MODE | Importing | TYPE SAP_BOOL | Dialog mode (X) or no gui | |
| I_EXEC_ID | Importing | TYPE STC_EXEC_ID | Execution Identifier | |
| I_STRTIMMED | Importing | TYPE SAP_BOOL | Start immediately | |
| I_TRACE | Importing | TYPE STC_TRACE | Trace on? |
Exceptions of Method SCHEDULE_SESSION_TO_BATCH
FAILED - Scheduling did not work (cf SYST-MSG)Example ABAP coding
DATA: lo_class TYPE REF TO CL_STCTM_PREPROCESSOR.
DATA: lv_IS_STARTSPEC TYPE TBTCSTRT,
lv_I_CHECKRUN TYPE STC_CHECKRUN,
lv_I_DIALOG_MODE TYPE SAP_BOOL,
lv_I_EXEC_ID TYPE STC_EXEC_ID,
lv_I_STRTIMMED TYPE SAP_BOOL,
lv_I_TRACE TYPE STC_TRACE,
lv_other TYPE c.
CALL METHOD lo_class=>SCHEDULE_SESSION_TO_BATCH(
EXPORTING
IS_STARTSPEC = lv_IS_STARTSPEC
I_CHECKRUN = lv_I_CHECKRUN
I_DIALOG_MODE = lv_I_DIALOG_MODE
I_EXEC_ID = lv_I_EXEC_ID
I_STRTIMMED = lv_I_STRTIMMED
I_TRACE = lv_I_TRACE ).
Links to Related Class(s)
CL_STCTM...Full list of available SAP object classes
Search for further information about these or an SAP related objects