CHANGE_JOB_SELECTION_PARA SAP Method Changes the job selection parameters
Below is documentation, parameters and attributes of ABAP Method CHANGE_JOB_SELECTION_PARA within SAP class /SOMO/IF_ENH_UNIJOBMONRULE. 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/IF_ENH_UNIJOBMONRULE 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 CHANGE_JOB_SELECTION_PARA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHANGE_JOB_SELECTION_PARA
.| Name | Type | Data Type | Description | Default Value |
| CH_SELECTION_PARAMETER | Changing | TYPE /SOMO/MA_T_PARAM | BPMon: Parameter table | |
| RT_LOG | Changing | TYPE /SOMO/MA_T_LOG | BPMon: log table | |
| RT_RETURN_CODE | Changing | TYPE SY-SUBRC | Return Value, Return Value After ABAP Statements |
Exceptions of Method CHANGE_JOB_SELECTION_PARA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SOMO/IF_ENH_UNIJOBMONRULE.
DATA: lv_CH_SELECTION_PARAMETER TYPE /SOMO/MA_T_PARAM,
lv_RT_LOG TYPE /SOMO/MA_T_LOG,
lv_RT_RETURN_CODE TYPE SY-SUBRC,
lv_other TYPE c.
CALL METHOD lo_class=>CHANGE_JOB_SELECTION_PARA(
CHANGING
CH_SELECTION_PARAMETER = lv_CH_SELECTION_PARAMETER
RT_LOG = lv_RT_LOG
RT_RETURN_CODE = lv_RT_RETURN_CODE ).
Links to Related Class(s)
/SOMO/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects