RENDER SAP Method Renders the List









Below is documentation, parameters and attributes of ABAP Method RENDER within SAP class CL_FPM_LIST_UIBB_RENDERER_ATS. 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_FPM_LIST_UIBB_RENDERER_ATS 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 RENDER can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method RENDER

.

NameTypeData TypeDescriptionDefault Value
IO_VIEWImportingTYPE REF TO
IF_WD_VIEW
IS_ADDITIONAL_INFOImportingTYPE
FPMGB_S_ADDITIONAL_INFO
Addtional info on GUIBB List
IV_EDIT_MODEImportingTYPE
FPM_EDIT_MODE
Edit Mode of UIBBs in OVP Floorplan
IV_ENABLEDImportingTYPE
ABAP_BOOL
IV_FIRST_TIMEImportingTYPE
ABAP_BOOL
IV_RENDER_ALL_COLUMNSImportingTYPE
ABAP_BOOL
IV_IS_MAXIMIZEDImportingTYPE
ABAP_BOOL
IV_MAX_MIN_EVENT_IDImportingTYPE
FPM_EVENT_ID
ID of the FPM Event
IV_MAX_MIN_IMAGEImportingTYPE
STRING
IV_MAX_MIN_VISIBILITYImportingTYPE
FPM_VISIBILITY
FPM: Defines the Visibility of UI Elements



Exceptions of Method RENDER

CX_FPMGB - GUIBB Exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_FPM_LIST_UIBB_RENDERER_ATS.
DATA: lv_IO_VIEW TYPE IF_WD_VIEW,
lv_IS_ADDITIONAL_INFO TYPE FPMGB_S_ADDITIONAL_INFO,
lv_IV_EDIT_MODE TYPE FPM_EDIT_MODE,
lv_IV_ENABLED TYPE ABAP_BOOL,
lv_IV_FIRST_TIME TYPE ABAP_BOOL,
lv_IV_RENDER_ALL_COLUMNS TYPE ABAP_BOOL,
lv_IV_IS_MAXIMIZED TYPE ABAP_BOOL,
lv_IV_MAX_MIN_EVENT_ID TYPE FPM_EVENT_ID,
lv_IV_MAX_MIN_IMAGE TYPE STRING,
lv_IV_MAX_MIN_VISIBILITY TYPE FPM_VISIBILITY,
lv_other TYPE c.

CALL METHOD lo_class=>RENDER(
EXPORTING
IO_VIEW = lv_IO_VIEW
IS_ADDITIONAL_INFO = lv_IS_ADDITIONAL_INFO
IV_EDIT_MODE = lv_IV_EDIT_MODE
IV_ENABLED = lv_IV_ENABLED
IV_FIRST_TIME = lv_IV_FIRST_TIME
IV_RENDER_ALL_COLUMNS = lv_IV_RENDER_ALL_COLUMNS
IV_IS_MAXIMIZED = lv_IV_IS_MAXIMIZED
IV_MAX_MIN_EVENT_ID = lv_IV_MAX_MIN_EVENT_ID
IV_MAX_MIN_IMAGE = lv_IV_MAX_MIN_IMAGE
IV_MAX_MIN_VISIBILITY = lv_IV_MAX_MIN_VISIBILITY ).

Links to Related Class(s)

CL_FPM_L...
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!