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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IT_FCODES_SLISImportingTYPE
SLIS_T_EXTAB
Function Code Table SLIS
I_FCODE_SLISImportingTYPE
SY-UCOMM
Menu Painter: Object code
ET_FCODES_LVCExportingTYPE
UI_FUNCTIONS
Function Code Table LVC
E_FCODE_LVCExportingTYPE
SY-UCOMM
Function Code



Exceptions of Method TRANSFER_FCODE_SLIS_TO_LVC

ET_FCODES_LVCExportingTYPE
UI_FUNCTIONSFunction Code Table LVCE_FCODE_LVCExportingTYPE
SY-UCOMMFunction CodeNO_MATCH_FOUND - No assignment possible

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



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!