ADD_SORT_ASPECT SAP Method Read and create a single aspect of trip sorting
Below is documentation, parameters and attributes of ABAP Method ADD_SORT_ASPECT within SAP class /SCTM/CL_RG. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCTM/CL_RG 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 ADD_SORT_ASPECT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADD_SORT_ASPECT
.| Name | Type | Data Type | Description | Default Value |
| IO_METHPAR | Importing | TYPE REF TO /SCTM/CL_METH_PARAMETER | Method Parameter BASIS | |
| IV_DESCENDING | Importing | TYPE BOOLE_D | Sorting descending? | |
| IV_PARAMETER | Importing | TYPE /SCTM/DE_PARAMETER | Control Parameter | |
| IV_REQUEST_ID | Importing | TYPE /SCMB/DE_REQUEST_ID | Request Number | |
| CT_ASPECT_PRIORITIES | Changing | TYPE /SCTM/TT_SORT_COMPONENT_PRIO | Sorting Priorities for Components of a Structure |
Exceptions of Method ADD_SORT_ASPECT
/SCTM/CX_CORE_CODE - Internal Programming Error in Routing GuideExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /SCTM/CL_RG.
DATA: lv_CT_ASPECT_PRIORITIES TYPE /SCTM/TT_SORT_COMPONENT_PRIO,
lv_IO_METHPAR TYPE /SCTM/CL_METH_PARAMETER,
lv_IV_DESCENDING TYPE BOOLE_D,
lv_IV_PARAMETER TYPE /SCTM/DE_PARAMETER,
lv_IV_REQUEST_ID TYPE /SCMB/DE_REQUEST_ID,
lv_other TYPE c.
CALL METHOD lo_class=>ADD_SORT_ASPECT(
EXPORTING
IO_METHPAR = lv_IO_METHPAR
IV_DESCENDING = lv_IV_DESCENDING
IV_PARAMETER = lv_IV_PARAMETER
IV_REQUEST_ID = lv_IV_REQUEST_ID
CHANGING
CT_ASPECT_PRIORITIES = lv_CT_ASPECT_PRIORITIES ).
Links to Related Class(s)
/SCTM/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects