STEP_CHANGE SAP Method Change adhoc step
Below is documentation, parameters and attributes of ABAP Method STEP_CHANGE within SAP class /ASU/IF_SSM_EXECUTION. 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 /ASU/IF_SSM_EXECUTION 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 STEP_CHANGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method STEP_CHANGE
.| Name | Type | Data Type | Description | Default Value |
| IM_SSMTREES | Importing | TYPE /ASU/SSMTREES | ASU Simple Schedule Manager: Internal Structure for Tree | |
| IM_STEP | Importing | TYPE /ASU/CONTENT_OBJECT | Application Specific Upgrade. Single ASU Content Object | |
| EX_CANCELLED | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| EX_CHG_SSMTREES_CO | Exporting | TYPE /ASU/SSMTREE_CO | ASU: Content Object & ALV Tree Entry |
Exceptions of Method STEP_CHANGE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /ASU/IF_SSM_EXECUTION.
DATA: lv_EX_CANCELLED TYPE BOOLE_D,
lv_EX_CHG_SSMTREES_CO TYPE /ASU/SSMTREE_CO,
lv_IM_SSMTREES TYPE /ASU/SSMTREES,
lv_IM_STEP TYPE /ASU/CONTENT_OBJECT,
lv_other TYPE c.
CALL METHOD lo_class=>STEP_CHANGE(
EXPORTING
IM_SSMTREES = lv_IM_SSMTREES
IM_STEP = lv_IM_STEP
IMPORTING
EX_CANCELLED = lv_EX_CANCELLED
EX_CHG_SSMTREES_CO = lv_EX_CHG_SSMTREES_CO ).
Links to Related Class(s)
/ASU/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects