CHECK_SORTING_ENABLED SAP Method To Check if the FM RSEQ_QUERY_EXECUTE supports sorting
Below is documentation, parameters and attributes of ABAP Method CHECK_SORTING_ENABLED within SAP class /IWBEP/CL_ANA_ADP_EQ_API. 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 /IWBEP/CL_ANA_ADP_EQ_API into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CHECK_SORTING_ENABLED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_SORTING_ENABLED
.| Name | Type | Data Type | Description | Default Value |
| IR_LOGGER | Importing | TYPE REF TO /IWBEP/CL_COS_LOGGER | Logger for local AppsLog and CCMS | |
| IR_MSG_CONTAINER | Importing | TYPE REF TO /IWBEP/IF_MESSAGE_CONTAINER | Message Container Interface | |
| IS_SYSTEM_ALIAS_INFO | Importing | TYPE /IWBEP/S_DEFI_ALIAS_INFO | Logical RFC Destination - Points to SAP system | |
| EV_SORTING_SUPPORTED | Exporting | TYPE ABAP_BOOL | Returns true if the BW API has sorting parameters |
Exceptions of Method CHECK_SORTING_ENABLED
/IWBEP/CX_MGW_TECH_EXCEPTION - Technical ExceptionExample ABAP coding
DATA: lv_EV_SORTING_SUPPORTED TYPE ABAP_BOOL,
lv_IR_LOGGER TYPE /IWBEP/CL_COS_LOGGER,
lv_IR_MSG_CONTAINER TYPE /IWBEP/IF_MESSAGE_CONTAINER,
lv_IS_SYSTEM_ALIAS_INFO TYPE /IWBEP/S_DEFI_ALIAS_INFO,
lv_other TYPE c.
CALL METHOD /IWBEP/CL_ANA_ADP_EQ_API=>CHECK_SORTING_ENABLED(
EXPORTING
IR_LOGGER = lv_IR_LOGGER
IR_MSG_CONTAINER = lv_IR_MSG_CONTAINER
IS_SYSTEM_ALIAS_INFO = lv_IS_SYSTEM_ALIAS_INFO
IMPORTING
EV_SORTING_SUPPORTED = lv_EV_SORTING_SUPPORTED ).
Links to Related Class(s)
/IWBEP/C...Full list of available SAP object classes
Search for further information about these or an SAP related objects