MAP_RESULT_RANGE_2_SOURCE_IDX SAP Method of class CL_SALV_IDA_GROUPING_SERVICE
Below is documentation, parameters and attributes of ABAP Method MAP_RESULT_RANGE_2_SOURCE_IDX within SAP class CL_SALV_IDA_GROUPING_SERVICE. 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 CL_SALV_IDA_GROUPING_SERVICE 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 MAP_RESULT_RANGE_2_SOURCE_IDX can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAP_RESULT_RANGE_2_SOURCE_IDX
.| Name | Type | Data Type | Description | Default Value |
| GROUP_LINES_INCLUDED | Importing | TYPE ABAP_BOOL | ||
| ONLY_EXPANDED_DATA | Importing | TYPE ABAP_BOOL | ||
| T_RESULT_RANGE | Importing | TYPE IF_SALV_SERVICE_TYPES=>YT_RANGE | ||
| T_RESULT_2_SOURCE_INDEX | Exporting | TYPE IF_SALV_SERVICE_TYPES=>YT_ROW_INDEX |
Exceptions of Method MAP_RESULT_RANGE_2_SOURCE_IDX
CX_SALV_INDEX_OUT_OF_BOUNDS -Example ABAP coding
DATA: lo_class TYPE REF TO CL_SALV_IDA_GROUPING_SERVICE.
DATA: lv_GROUP_LINES_INCLUDED TYPE ABAP_BOOL,
lv_ONLY_EXPANDED_DATA TYPE ABAP_BOOL,
lv_T_RESULT_2_SOURCE_INDEX TYPE IF_SALV_SERVICE_TYPES=>YT_ROW_INDEX,
lv_T_RESULT_RANGE TYPE IF_SALV_SERVICE_TYPES=>YT_RANGE,
lv_other TYPE c.
CALL METHOD lo_class=>MAP_RESULT_RANGE_2_SOURCE_IDX(
EXPORTING
GROUP_LINES_INCLUDED = lv_GROUP_LINES_INCLUDED
ONLY_EXPANDED_DATA = lv_ONLY_EXPANDED_DATA
T_RESULT_RANGE = lv_T_RESULT_RANGE
IMPORTING
T_RESULT_2_SOURCE_INDEX = lv_T_RESULT_2_SOURCE_INDEX ).
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