CONSTRUCTOR SAP Method Creates a new instance









Below is documentation, parameters and attributes of ABAP Method CONSTRUCTOR 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 a Class Constructor so it is called automatically when the class is accessed for the first time.

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 CONSTRUCTOR can also be found below:

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


Parameters of Method CONSTRUCTOR

.

NameTypeData TypeDescriptionDefault Value
IO_ACTION_DEFImportingTYPE
FPMGB_T_ACTIONDEF
Action Definition
IO_ALV_LOGGERImportingTYPE REF TO
CL_FPM_SALV_TRACE
FPM trace logger
IO_CONTEXTImportingTYPE REF TO
IF_WD_CONTEXT_NODE
The context of the List UIBB ATS component
IO_FPMImportingTYPE REF TO
CL_FPM
The FPM runtime environment
IO_LIST_PROVIDERImportingTYPE REF TO
IF_SALV_WD_LIST_CTXT_PROVIDER
The List Provider associated to the List UIBB ATS component
IO_PERSONALIZATION_APIImportingTYPE REF TO
IF_FPM_LIST_SETTINGS_CONTROL
The Personalisation API associated to the List UIBB ATS
IS_CONFIG_KEYImportingTYPE
WDY_CONFIG_KEY
Key Components of Configuration Tables
IV_DESIGN_TIMEImportingTYPE
ABAP_BOOL
'X' if the List UIBB ATS is to be rendered in design time
IV_IS_GUIDELINE_20_ENABLEDImportingTYPE
ABAP_BOOL
'X' if UI Guideline 2.0 is enabled
IV_IS_IDAImportingTYPE
ABAP_BOOL
IV_OPTIMIZED_COL_RENDERINGImportingTYPE
ABAP_BOOL
IO_CONFIG_DATAImportingTYPE REF TO
CL_FPM_LIST_UIBB_CONFIG_DATA
List ATS UIBB: Holds the config data
IO_FIELD_CATALOGImportingTYPE REF TO
CL_ABAP_STRUCTDESCR
Runtime Type Services
IO_INSTANCE_STYLINGImportingTYPE REF TO
CL_FPM_LIST_INSTANCE_STYLING
instance style handler for list ats UIBB
IT_ROW_ACTIONSImportingTYPE
FPMGB_T_ROW_ACTION
Row actions
IV_IS_FIORI_ACTIVEImportingTYPE
ABAP_BOOL



Exceptions of Method CONSTRUCTOR

This method does not have any exceptions

Example ABAP coding

As the method is a Class Constructor the below code doesnt really make sense as it cant be executed as a stand alone method but this is how it would look if it was a normal static method.

DATA: lo_class TYPE REF TO CL_FPM_LIST_UIBB_RENDERER_ATS.
DATA: lv_IO_ACTION_DEF TYPE FPMGB_T_ACTIONDEF,
lv_IO_ALV_LOGGER TYPE CL_FPM_SALV_TRACE,
lv_IO_CONTEXT TYPE IF_WD_CONTEXT_NODE,
lv_IO_FPM TYPE CL_FPM,
lv_IO_LIST_PROVIDER TYPE IF_SALV_WD_LIST_CTXT_PROVIDER,
lv_IO_PERSONALIZATION_API TYPE IF_FPM_LIST_SETTINGS_CONTROL,
lv_IS_CONFIG_KEY TYPE WDY_CONFIG_KEY,
lv_IV_DESIGN_TIME TYPE ABAP_BOOL,
lv_IV_IS_GUIDELINE_20_ENABLED TYPE ABAP_BOOL,
lv_IV_IS_IDA TYPE ABAP_BOOL,
lv_IV_OPTIMIZED_COL_RENDERING TYPE ABAP_BOOL,
lv_IO_CONFIG_DATA TYPE CL_FPM_LIST_UIBB_CONFIG_DATA,
lv_IO_FIELD_CATALOG TYPE CL_ABAP_STRUCTDESCR,
lv_IO_INSTANCE_STYLING TYPE CL_FPM_LIST_INSTANCE_STYLING,
lv_IT_ROW_ACTIONS TYPE FPMGB_T_ROW_ACTION,
lv_IV_IS_FIORI_ACTIVE TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD lo_class=>CONSTRUCTOR(
EXPORTING
IO_ACTION_DEF = lv_IO_ACTION_DEF
IO_ALV_LOGGER = lv_IO_ALV_LOGGER
IO_CONTEXT = lv_IO_CONTEXT
IO_FPM = lv_IO_FPM
IO_LIST_PROVIDER = lv_IO_LIST_PROVIDER
IO_PERSONALIZATION_API = lv_IO_PERSONALIZATION_API
IS_CONFIG_KEY = lv_IS_CONFIG_KEY
IV_DESIGN_TIME = lv_IV_DESIGN_TIME
IV_IS_GUIDELINE_20_ENABLED = lv_IV_IS_GUIDELINE_20_ENABLED
IV_IS_IDA = lv_IV_IS_IDA
IV_OPTIMIZED_COL_RENDERING = lv_IV_OPTIMIZED_COL_RENDERING
IO_CONFIG_DATA = lv_IO_CONFIG_DATA
IO_FIELD_CATALOG = lv_IO_FIELD_CATALOG
IO_INSTANCE_STYLING = lv_IO_INSTANCE_STYLING
IT_ROW_ACTIONS = lv_IT_ROW_ACTIONS
IV_IS_FIORI_ACTIVE = lv_IV_IS_FIORI_ACTIVE ).

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!