TRANSFER_FCODE_LVC_TO_SLIS SAP Method Convert Function Codes from LVC to SLIS
Below is documentation, parameters and attributes of ABAP Method TRANSFER_FCODE_LVC_TO_SLIS within SAP class CL_GUI_ALV_GRID. 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_GUI_ALV_GRID 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 TRANSFER_FCODE_LVC_TO_SLIS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TRANSFER_FCODE_LVC_TO_SLIS
.| Name | Type | Data Type | Description | Default Value |
| IT_FCODES_LVC | Importing | TYPE UI_FUNCTIONS | Function Code Table LVC | |
| I_FCODE_LVC | Importing | TYPE SY-UCOMM | Function Code Table | |
| ET_FCODES_SLIS | Exporting | TYPE SLIS_T_EXTAB | Function Code Table SLIS | |
| E_FCODE_SLIS | Exporting | TYPE SY-UCOMM | Menu Painter: Object code |
Exceptions of Method TRANSFER_FCODE_LVC_TO_SLIS
SLIS_T_EXTAB
SY-UCOMM
Example ABAP coding
DATA: lv_ET_FCODES_SLIS TYPE SLIS_T_EXTAB,
lv_E_FCODE_SLIS TYPE SY-UCOMM,
lv_IT_FCODES_LVC TYPE UI_FUNCTIONS,
lv_I_FCODE_LVC TYPE SY-UCOMM,
lv_other TYPE c.
CALL METHOD CL_GUI_ALV_GRID=>TRANSFER_FCODE_LVC_TO_SLIS(
EXPORTING
IT_FCODES_LVC = lv_IT_FCODES_LVC
I_FCODE_LVC = lv_I_FCODE_LVC
IMPORTING
ET_FCODES_SLIS = lv_ET_FCODES_SLIS
E_FCODE_SLIS = lv_E_FCODE_SLIS ).
Links to Related Class(s)
CL_GUI_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects