FILL_CATALOGUES SAP Method of class /BOFU/CL_UICFG_HELPER









Below is documentation, parameters and attributes of ABAP Method FILL_CATALOGUES within SAP class /BOFU/CL_UICFG_HELPER. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOFU/CL_UICFG_HELPER 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 FILL_CATALOGUES can also be found below:

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


Parameters of Method FILL_CATALOGUES

.

NameTypeData TypeDescriptionDefault Value
IO_FACTORYImportingTYPE REF TO
CL_WD_CONFIG_FACTORY
IT_ACTIONCATImportingTYPE
FPMGB_T_ACTIONDEF
IT_FORMCATImportingTYPE
FPMGB_T_FORMFIELD_DESCR
IT_LISTCATImportingTYPE
FPMGB_T_LISTFIELD_DESCR
IT_TREECATImportingTYPE
FPMGB_T_TREEFIELD_DESCR
IV_VIEWImportingTYPE
/BOFU/IF_UICFG_C=>TS_FBI_DATA-NAME
ET_FBI_ACTIONExportingTYPE
TT_ACTIONCAT
ET_FBI_FIELDExportingTYPE
TT_FIELDCAT
ET_FPM_ACTIONExportingTYPE
TT_ACTIONCAT
ET_FPM_FIELDExportingTYPE
TT_FIELDCAT



Exceptions of Method FILL_CATALOGUES

CX_WD_CONFIG_TOOL -

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lv_ET_FBI_ACTION TYPE TT_ACTIONCAT,
lv_ET_FBI_FIELD TYPE TT_FIELDCAT,
lv_ET_FPM_ACTION TYPE TT_ACTIONCAT,
lv_ET_FPM_FIELD TYPE TT_FIELDCAT,
lv_IO_FACTORY TYPE CL_WD_CONFIG_FACTORY,
lv_IT_ACTIONCAT TYPE FPMGB_T_ACTIONDEF,
lv_IT_FORMCAT TYPE FPMGB_T_FORMFIELD_DESCR,
lv_IT_LISTCAT TYPE FPMGB_T_LISTFIELD_DESCR,
lv_IT_TREECAT TYPE FPMGB_T_TREEFIELD_DESCR,
lv_IV_VIEW TYPE /BOFU/IF_UICFG_C=>TS_FBI_DATA-NAME,
lv_other TYPE c.

CALL METHOD /BOFU/CL_UICFG_HELPER=>FILL_CATALOGUES(
EXPORTING
IO_FACTORY = lv_IO_FACTORY
IT_ACTIONCAT = lv_IT_ACTIONCAT
IT_FORMCAT = lv_IT_FORMCAT
IT_LISTCAT = lv_IT_LISTCAT
IT_TREECAT = lv_IT_TREECAT
IV_VIEW = lv_IV_VIEW
IMPORTING
ET_FBI_ACTION = lv_ET_FBI_ACTION
ET_FBI_FIELD = lv_ET_FBI_FIELD
ET_FPM_ACTION = lv_ET_FPM_ACTION
ET_FPM_FIELD = lv_ET_FPM_FIELD ).

Links to Related Class(s)

/BOFU/CL...
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!