DECODE_STRING_TO_KEY SAP Method Read String after Navigation
Below is documentation, parameters and attributes of ABAP Method DECODE_STRING_TO_KEY within SAP class /BCV/CL_UIF_EXT_ASSIST. 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_EXT_ASSIST 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 DECODE_STRING_TO_KEY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DECODE_STRING_TO_KEY
.| Name | Type | Data Type | Description | Default Value |
| IV_CURRENT_STRING | Importing | TYPE STRING | ||
| IV_NAME_STRING | Importing | TYPE STRING | ||
| IV_VALUE_STRING | Importing | TYPE STRING | ||
| ET_APPL_INPUT | Exporting | TYPE /BCV/T_UIF_APPL_INPUT | Application Input Values | |
| EV_CURRENT_DISPLAY_ID | Exporting | TYPE /BCV/UIF_DISPLAY_ID | ID of Chart Output | |
| EV_CURRENT_QUERY_ID | Exporting | TYPE /BCV/QRM_QUERY_ID | Query ID | |
| EV_CURRENT_QVIEW_ID | Exporting | TYPE /BCV/UIF_QVIEW_ID | ID of Query View |
Exceptions of Method DECODE_STRING_TO_KEY
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_APPL_INPUT TYPE /BCV/T_UIF_APPL_INPUT,
lv_EV_CURRENT_DISPLAY_ID TYPE /BCV/UIF_DISPLAY_ID,
lv_EV_CURRENT_QUERY_ID TYPE /BCV/QRM_QUERY_ID,
lv_EV_CURRENT_QVIEW_ID TYPE /BCV/UIF_QVIEW_ID,
lv_IV_CURRENT_STRING TYPE STRING,
lv_IV_NAME_STRING TYPE STRING,
lv_IV_VALUE_STRING TYPE STRING,
lv_other TYPE c.
CALL METHOD /BCV/CL_UIF_EXT_ASSIST=>DECODE_STRING_TO_KEY(
EXPORTING
IV_CURRENT_STRING = lv_IV_CURRENT_STRING
IV_NAME_STRING = lv_IV_NAME_STRING
IV_VALUE_STRING = lv_IV_VALUE_STRING
IMPORTING
ET_APPL_INPUT = lv_ET_APPL_INPUT
EV_CURRENT_DISPLAY_ID = lv_EV_CURRENT_DISPLAY_ID
EV_CURRENT_QUERY_ID = lv_EV_CURRENT_QUERY_ID
EV_CURRENT_QVIEW_ID = lv_EV_CURRENT_QVIEW_ID ).
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