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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IT_FCODES_LVCImportingTYPE
UI_FUNCTIONS
Function Code Table LVC
I_FCODE_LVCImportingTYPE
SY-UCOMM
Function Code Table
ET_FCODES_SLISExportingTYPE
SLIS_T_EXTAB
Function Code Table SLIS
E_FCODE_SLISExportingTYPE
SY-UCOMM
Menu Painter: Object code



Exceptions of Method TRANSFER_FCODE_LVC_TO_SLIS

ET_FCODES_SLISExportingTYPE
SLIS_T_EXTABFunction Code Table SLISE_FCODE_SLISExportingTYPE
SY-UCOMMMenu Painter: Object codeNO_MATCH_FOUND - No assignment possible

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



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!