SET_KEY_TO_STRING SAP Method Build String for Navigation
Below is documentation, parameters and attributes of ABAP Method SET_KEY_TO_STRING within SAP class /BCV/CL_UIF_COMMON_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_COMMON_ASSIST 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 SET_KEY_TO_STRING can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_KEY_TO_STRING
.| Name | Type | Data Type | Description | Default Value |
| IT_VALUES | Importing | TYPE /BCV/T_UIF_APPL_INPUT | ||
| IV_DISPLAY_ID1 | Importing | TYPE /BCV/UIF_DISPLAY_ID | Display ID 1 | |
| IV_DISPLAY_ID2 | Importing | TYPE /BCV/UIF_DISPLAY_ID | Display ID 2 | |
| IV_QVIEW_ID | Importing | TYPE /BCV/UIF_QVIEW_ID | ||
| IV_SNAPSHOT_ID | Importing | TYPE /BCV/UIF_SNAPSHOT_ID | Snapshot ID | |
| EV_CURRENT | Exporting | TYPE STRING | ||
| EV_FIELDNAMES | Exporting | TYPE STRING | ||
| EV_VALUES | Exporting | TYPE STRING |
Exceptions of Method SET_KEY_TO_STRING
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/CL_UIF_COMMON_ASSIST.
DATA: lv_EV_CURRENT TYPE STRING,
lv_EV_FIELDNAMES TYPE STRING,
lv_EV_VALUES TYPE STRING,
lv_IT_VALUES TYPE /BCV/T_UIF_APPL_INPUT,
lv_IV_DISPLAY_ID1 TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_DISPLAY_ID2 TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_QVIEW_ID TYPE /BCV/UIF_QVIEW_ID,
lv_IV_SNAPSHOT_ID TYPE /BCV/UIF_SNAPSHOT_ID,
lv_other TYPE c.
CALL METHOD lo_class=>SET_KEY_TO_STRING(
EXPORTING
IT_VALUES = lv_IT_VALUES
IV_DISPLAY_ID1 = lv_IV_DISPLAY_ID1
IV_DISPLAY_ID2 = lv_IV_DISPLAY_ID2
IV_QVIEW_ID = lv_IV_QVIEW_ID
IV_SNAPSHOT_ID = lv_IV_SNAPSHOT_ID
IMPORTING
EV_CURRENT = lv_EV_CURRENT
EV_FIELDNAMES = lv_EV_FIELDNAMES
EV_VALUES = lv_EV_VALUES ).
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