SELECT_JOBS SAP Method Return CL_EXTSCHEDULER_COLL=>SELECT_JOBS
Below is documentation, parameters and attributes of ABAP Method SELECT_JOBS within SAP class /SOMO/CL_SMSE_HPLSMSE_SELECT. 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 /SOMO/CL_SMSE_HPLSMSE_SELECT 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 SELECT_JOBS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SELECT_JOBS
.| Name | Type | Data Type | Description | Default Value |
| IR_SMSE_PULL_BADI | Importing | TYPE REF TO /SOMO/CL_IM_SMSE_HPLSMSE | Generic SMSE Collector (Pull) | |
| IT_JOBDEF_TYPE | Importing | TYPE STRING_TABLE | Job definition types | |
| IV_DESTINATION | Importing | TYPE RFCDEST | Destination of external scheduler | |
| IV_FROM_DATE | Importing | TYPE SYDATUM | From data | |
| IV_FROM_TIME | Importing | TYPE SYUZEIT | From time | |
| IV_INPUT_UTC | Importing | TYPE CHAR1 | Input times are in UTC | |
| IV_ISOL_GROUP | Importing | TYPE TV_ISO_GROUP | Isolation group | |
| IV_QUEUE | Importing | TYPE TV_QUEUE | Queue | |
| IV_TO_DATE | Importing | TYPE SYDATUM | To date | |
| IV_TO_TIME | Importing | TYPE SYUZEIT | To time | |
| IV_JOBDEF | Importing | TYPE CHAR80 | Char 80 | |
| ET_JOBS | Exporting | TYPE TT_JOB_COLL | Found jobs | |
| CT_LOG | Changing | TYPE /SOMO/MA_T_LOG | BPMon: Messages |
Exceptions of Method SELECT_JOBS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SOMO/CL_SMSE_HPLSMSE_SELECT.
DATA: lv_CT_LOG TYPE /SOMO/MA_T_LOG,
lv_ET_JOBS TYPE TT_JOB_COLL,
lv_IR_SMSE_PULL_BADI TYPE /SOMO/CL_IM_SMSE_HPLSMSE,
lv_IT_JOBDEF_TYPE TYPE STRING_TABLE,
lv_IV_DESTINATION TYPE RFCDEST,
lv_IV_FROM_DATE TYPE SYDATUM,
lv_IV_FROM_TIME TYPE SYUZEIT,
lv_IV_INPUT_UTC TYPE CHAR1,
lv_IV_ISOL_GROUP TYPE TV_ISO_GROUP,
lv_IV_QUEUE TYPE TV_QUEUE,
lv_IV_TO_DATE TYPE SYDATUM,
lv_IV_TO_TIME TYPE SYUZEIT,
lv_IV_JOBDEF TYPE CHAR80,
lv_other TYPE c.
CALL METHOD lo_class=>SELECT_JOBS(
EXPORTING
IR_SMSE_PULL_BADI = lv_IR_SMSE_PULL_BADI
IT_JOBDEF_TYPE = lv_IT_JOBDEF_TYPE
IV_DESTINATION = lv_IV_DESTINATION
IV_FROM_DATE = lv_IV_FROM_DATE
IV_FROM_TIME = lv_IV_FROM_TIME
IV_INPUT_UTC = lv_IV_INPUT_UTC
IV_ISOL_GROUP = lv_IV_ISOL_GROUP
IV_QUEUE = lv_IV_QUEUE
IV_TO_DATE = lv_IV_TO_DATE
IV_TO_TIME = lv_IV_TO_TIME
IV_JOBDEF = lv_IV_JOBDEF
IMPORTING
ET_JOBS = lv_ET_JOBS
CHANGING
CT_LOG = lv_CT_LOG ).
Links to Related Class(s)
/SOMO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects