BUILD_NODE_NODE_ASSIGN_MAINT_R SAP Method of class /BOBF/CL_CONF_UI_MANAGER









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

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


Parameters of Method BUILD_NODE_NODE_ASSIGN_MAINT_R

.

NameTypeData TypeDescriptionDefault Value
IT_ACT_READImportingTYPE
/BOBF/T_CONF_ACT_READ
Configuration: Action Read Access
IT_ACT_WRITEImportingTYPE
/BOBF/T_CONF_ACT_WRITE
Configuration: Action Write Access
IT_ASSOCImportingTYPE
/BOBF/T_CONF_ASSOC
Configuration: Links
IT_DET_READImportingTYPE
/BOBF/T_CONF_DET_READ
Configuration: Read Access of a Determination
IT_DET_TRIGGERImportingTYPE
/BOBF/T_CONF_DET_TRIGGER
Configuration: Determination Trigger
IT_DET_WRITEImportingTYPE
/BOBF/T_CONF_DET_WRITE
Configuration: Write Access of a Determination
IT_NODEImportingTYPE
/BOBF/T_CONF_NODE
Configuration: Node
IT_VAL_READImportingTYPE
/BOBF/T_CONF_VAL_READ
Configuration: Read Access of a Check
IT_VAL_TRIGGERImportingTYPE
/BOBF/T_CONF_VAL_TRIGGER
Configuration: Trigger for Check
IV_ASSOC_KEYImportingTYPE
/BOBF/OBM_ASSOC_KEY
Association
IV_DET_CATImportingTYPE
/BOBF/DET_CAT
Determination Category
IV_KEYImportingTYPE
/BOBF/CONF_KEY
IV_MODELED_EDITABLEImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node
IV_RELATKEYImportingTYPE
TV_NODEKEY
IV_TREEImportingTYPE
/BOBF/CONF_UI_TREE
IV_TREE_NODEImportingTYPE
INT2
IV_ARTIFACT_ORIGIN_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
IV_DET_OBJ_MDL_GENERATEDImportingTYPE
/BOBF/CONF_OBJMDL_GEN_IND
Indicator: BO Data Model is generated
CT_ITEM_LISTChangingTYPE
TY_ITEM_LIST
CT_NODE_LISTChangingTYPE
TY_NODE_LIST
CT_PROCESSED_NODEChangingTYPE
/BOBF/T_FRW_KEY2
Processed Nodes



Exceptions of Method BUILD_NODE_NODE_ASSIGN_MAINT_R

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_CONF_UI_MANAGER.
DATA: lv_CT_ITEM_LIST TYPE TY_ITEM_LIST,
lv_CT_NODE_LIST TYPE TY_NODE_LIST,
lv_CT_PROCESSED_NODE TYPE /BOBF/T_FRW_KEY2,
lv_IT_ACT_READ TYPE /BOBF/T_CONF_ACT_READ,
lv_IT_ACT_WRITE TYPE /BOBF/T_CONF_ACT_WRITE,
lv_IT_ASSOC TYPE /BOBF/T_CONF_ASSOC,
lv_IT_DET_READ TYPE /BOBF/T_CONF_DET_READ,
lv_IT_DET_TRIGGER TYPE /BOBF/T_CONF_DET_TRIGGER,
lv_IT_DET_WRITE TYPE /BOBF/T_CONF_DET_WRITE,
lv_IT_NODE TYPE /BOBF/T_CONF_NODE,
lv_IT_VAL_READ TYPE /BOBF/T_CONF_VAL_READ,
lv_IT_VAL_TRIGGER TYPE /BOBF/T_CONF_VAL_TRIGGER,
lv_IV_ASSOC_KEY TYPE /BOBF/OBM_ASSOC_KEY,
lv_IV_DET_CAT TYPE /BOBF/DET_CAT,
lv_IV_KEY TYPE /BOBF/CONF_KEY,
lv_IV_MODELED_EDITABLE TYPE BOOLE_D,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_RELATKEY TYPE TV_NODEKEY,
lv_IV_TREE TYPE /BOBF/CONF_UI_TREE,
lv_IV_TREE_NODE TYPE INT2,
lv_IV_ARTIFACT_ORIGIN_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_DET_OBJ_MDL_GENERATED TYPE /BOBF/CONF_OBJMDL_GEN_IND,
lv_other TYPE c.

CALL METHOD lo_class=>BUILD_NODE_NODE_ASSIGN_MAINT_R(
EXPORTING
IT_ACT_READ = lv_IT_ACT_READ
IT_ACT_WRITE = lv_IT_ACT_WRITE
IT_ASSOC = lv_IT_ASSOC
IT_DET_READ = lv_IT_DET_READ
IT_DET_TRIGGER = lv_IT_DET_TRIGGER
IT_DET_WRITE = lv_IT_DET_WRITE
IT_NODE = lv_IT_NODE
IT_VAL_READ = lv_IT_VAL_READ
IT_VAL_TRIGGER = lv_IT_VAL_TRIGGER
IV_ASSOC_KEY = lv_IV_ASSOC_KEY
IV_DET_CAT = lv_IV_DET_CAT
IV_KEY = lv_IV_KEY
IV_MODELED_EDITABLE = lv_IV_MODELED_EDITABLE
IV_NODE_KEY = lv_IV_NODE_KEY
IV_RELATKEY = lv_IV_RELATKEY
IV_TREE = lv_IV_TREE
IV_TREE_NODE = lv_IV_TREE_NODE
IV_ARTIFACT_ORIGIN_BO_KEY = lv_IV_ARTIFACT_ORIGIN_BO_KEY
IV_DET_OBJ_MDL_GENERATED = lv_IV_DET_OBJ_MDL_GENERATED
CHANGING
CT_ITEM_LIST = lv_CT_ITEM_LIST
CT_NODE_LIST = lv_CT_NODE_LIST
CT_PROCESSED_NODE = lv_CT_PROCESSED_NODE ).

Links to Related Class(s)

/BOBF/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!