INIT_FROM_CONF_DATA SAP Method Initialize from Config data (init & check)









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

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


Parameters of Method INIT_FROM_CONF_DATA

.

NameTypeData TypeDescriptionDefault Value
IS_CONF_DATAImportingTYPE REF TO
/BOFU/IF_FBI_VIEW_USE_TYPES=>TS_CONF_DATA
Configuration Data
IS_DYN_VIEW_NODE_IDENTITYImportingTYPE
/BOFU/S_FBI_BO_NODE_IDENTITY
BO Node Identity
IS_KEYImportingTYPE
/BOFU/S_FBIVUSE_KEYS
FBI View Usage Key
IV_CHECK_DURING_INITImportingTYPE
ABAP_BOOL



Exceptions of Method INIT_FROM_CONF_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_FBI_VIEW_USE_CONF.
DATA: lv_IS_CONF_DATA TYPE /BOFU/IF_FBI_VIEW_USE_TYPES=>TS_CONF_DATA,
lv_IS_DYN_VIEW_NODE_IDENTITY TYPE /BOFU/S_FBI_BO_NODE_IDENTITY,
lv_IS_KEY TYPE /BOFU/S_FBIVUSE_KEYS,
lv_IV_CHECK_DURING_INIT TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD lo_class=>INIT_FROM_CONF_DATA(
EXPORTING
IS_CONF_DATA = lv_IS_CONF_DATA
IS_DYN_VIEW_NODE_IDENTITY = lv_IS_DYN_VIEW_NODE_IDENTITY
IS_KEY = lv_IS_KEY
IV_CHECK_DURING_INIT = lv_IV_CHECK_DURING_INIT ).

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!