SAP CL_SALV_BS_NEW_SORT OO Class - new sort service (not based on SLIS)
CL_SALV_BS_NEW_SORT is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_SALV_BS_NEW_SORT including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_SALV_BS_NEW_SORT SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| APPLY_TO_SOURCE | applies sort order to source table | Public |
| CALL METHOD cl_salv_bs_new_sort=>APPLY_TO_SOURCE...more details | ||
| CALCULATE_TABIX_MAP | maps line indexes (foward and/or backward) | Protected |
| CALL METHOD cl_salv_bs_new_sort=>CALCULATE_TABIX_MAP...more details | ||
| CONVERT_RULES_TO_ASO | convert internal rules to ABAP sortorder | Protected |
| CALL METHOD cl_salv_bs_new_sort=>CONVERT_RULES_TO_ASO...more details | ||
| CONVERT_RULES_TO_INTERNAL | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>CONVERT_RULES_TO_INTERNAL...more details | ||
| CREATE | constructor | Public |
| CALL METHOD cl_salv_bs_new_sort=>CREATE...more details | ||
| CREATE_AUX_STRUCT | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>CREATE_AUX_STRUCT...more details | ||
|
| ||
| CREATE_AUX_TABLE | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>CREATE_AUX_TABLE...more details | ||
| DETERMINE_MAPPING_TYPE | determine mapping type by heuristic | Protected |
| CALL METHOD cl_salv_bs_new_sort=>DETERMINE_MAPPING_TYPE...more details | ||
| MAP_BY_IDX_MAP | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_IDX_MAP...more details | ||
| MAP_BY_IDX_SEARCH | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_IDX_SEARCH...more details | ||
| MAP_BY_REF_MAP_GET_REFS | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_REF_MAP_GET_REFS...more details | ||
| MAP_BY_REF_MAP_MAP | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_REF_MAP_MAP...more details | ||
| MAP_BY_REF_SEARCH_GET_REFS | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_REF_SEARCH_GET_REFS...more details | ||
| MAP_BY_REF_SEARCH_MAP | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>MAP_BY_REF_SEARCH_MAP...more details | ||
| SORT | Protected | |
| CALL METHOD cl_salv_bs_new_sort=>SORT...more details | ||
| TRANSFER_AUX_SORT_TO_SOURCE | applies sort order to source table | Protected |
| CALL METHOD cl_salv_bs_new_sort=>TRANSFER_AUX_SORT_TO_SOURCE...more details | ||
CL_SALV_BS_NEW_SORT attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| CS_COMPNAME | Constant | LIKE | Protected | ||
| CS_MAPPING_TYPE | Constant | LIKE | Public | ||
| MO_SRC_STRUCTDESCR | Instance Attribute | Runtime Type Services | LIKE CL_ABAP_STRUCTDESCR | Protected | |
| MRS_AUX_WA | Instance Attribute | work area for aux table | LIKE DATA | Protected | |
| MRS_SRC_SAMPLE | Instance Attribute | sample of a src data row | LIKE DATA | Protected | |
| MRT_AUX | Instance Attribute | auxiliary table for sorting | LIKE DATA | Protected | |
| MRT_SRC | Instance Attribute | LIKE DATA | Protected | ||
| MS_STATE | Instance Attribute | LIKE YS_EXECUTION_STATE | Protected | ||
| MT_ASO_AUX | Instance Attribute | sortorder for sort on AUX table | LIKE ABAP_SORTORDER_TAB | Protected | |
| MT_ASO_SRC | Instance Attribute | sortorder for sort on SRC table | LIKE ABAP_SORTORDER_TAB | Protected | |
| MT_RULE_INTERNAL | Instance Attribute | LIKE YT_RULE_INTERNAL | Protected | ||
| M_COMPIDX_AUX | Instance Attribute | LIKE I | Protected | ||
| M_COMPIDX_SRC | Instance Attribute | LIKE I | Protected | ||
| M_FORCE_MAPPING_TYPE | Instance Attribute | LIKE Y_MAPPING_TYPE | Protected |
CL_SALV_BS_NEW_SORT types
YR_DATA -YS_EXECUTION_STATE -
YS_REF_POS -
YS_RULE_INTERNAL -
YTH_REF_POS -
YT_FIELD_PATH -
YT_RULE_INTERNAL -
YT_R_DATA -
YT_TABIX -
Y_FIELD_PATH -
Y_MAPPING_TYPE -
Links to Related Class(s)
CL_SALV_...Full list of available SAP object classes
Search for further information about these or an SAP related objects