TRANSFER_FCODE_SLIS_TO_LVC SAP Method Convert Function Codes from SLIS to LVC
Below is documentation, parameters and attributes of ABAP Method TRANSFER_FCODE_SLIS_TO_LVC 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_SLIS_TO_LVC can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TRANSFER_FCODE_SLIS_TO_LVC
.| Name | Type | Data Type | Description | Default Value |
| IT_FCODES_SLIS | Importing | TYPE SLIS_T_EXTAB | Function Code Table SLIS | |
| I_FCODE_SLIS | Importing | TYPE SY-UCOMM | Menu Painter: Object code | |
| ET_FCODES_LVC | Exporting | TYPE UI_FUNCTIONS | Function Code Table LVC | |
| E_FCODE_LVC | Exporting | TYPE SY-UCOMM | Function Code |
Exceptions of Method TRANSFER_FCODE_SLIS_TO_LVC
UI_FUNCTIONS
SY-UCOMM
Example ABAP coding
DATA: lv_ET_FCODES_LVC TYPE UI_FUNCTIONS,
lv_E_FCODE_LVC TYPE SY-UCOMM,
lv_IT_FCODES_SLIS TYPE SLIS_T_EXTAB,
lv_I_FCODE_SLIS TYPE SY-UCOMM,
lv_other TYPE c.
CALL METHOD CL_GUI_ALV_GRID=>TRANSFER_FCODE_SLIS_TO_LVC(
EXPORTING
IT_FCODES_SLIS = lv_IT_FCODES_SLIS
I_FCODE_SLIS = lv_I_FCODE_SLIS
IMPORTING
ET_FCODES_LVC = lv_ET_FCODES_LVC
E_FCODE_LVC = lv_E_FCODE_LVC ).
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