GET_MAPPING_DATA SAP Method Get XC Mapping Data
Below is documentation, parameters and attributes of ABAP Method GET_MAPPING_DATA within SAP class /BCV/CL_UIF_XC_CONF. 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 /BCV/CL_UIF_XC_CONF 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 GET_MAPPING_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_MAPPING_DATA
.| Name | Type | Data Type | Description | Default Value |
| IV_DISPLAY_ID | Importing | TYPE /BCV/UIF_DISPLAY_ID | Chart ID | |
| IV_QVIEW_ID | Importing | TYPE /BCV/UIF_QVIEW_ID | ID of Query View | |
| ET_MESSAGE | Exporting | TYPE /BCV/T_FND_MESSAGES | Messages | |
| ET_XC_MAP | Exporting | TYPE /BCV/T_XC_MAPP | XC Mapping |
Exceptions of Method GET_MAPPING_DATA
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_MESSAGE TYPE /BCV/T_FND_MESSAGES,
lv_ET_XC_MAP TYPE /BCV/T_XC_MAPP,
lv_IV_DISPLAY_ID TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_QVIEW_ID TYPE /BCV/UIF_QVIEW_ID,
lv_other TYPE c.
CALL METHOD /BCV/CL_UIF_XC_CONF=>GET_MAPPING_DATA(
EXPORTING
IV_DISPLAY_ID = lv_IV_DISPLAY_ID
IV_QVIEW_ID = lv_IV_QVIEW_ID
IMPORTING
ET_MESSAGE = lv_ET_MESSAGE
ET_XC_MAP = lv_ET_XC_MAP ).
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects