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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IV_CURRENT_STRINGImportingTYPE
STRING
IV_NAME_STRINGImportingTYPE
STRING
IV_VALUE_STRINGImportingTYPE
STRING
ET_APPL_INPUTExportingTYPE
/BCV/T_UIF_APPL_INPUT
Application Input Values
EV_CURRENT_DISPLAY_IDExportingTYPE
/BCV/UIF_DISPLAY_ID
ID of Chart Output
EV_CURRENT_QUERY_IDExportingTYPE
/BCV/QRM_QUERY_ID
Query ID
EV_CURRENT_QVIEW_IDExportingTYPE
/BCV/UIF_QVIEW_ID
ID of Query View



Exceptions of Method DECODE_STRING_TO_KEY

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!