GBS_GET_BO_NODE SAP Method GBS: Get BO Node using BO metadata









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

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


Parameters of Method GBS_GET_BO_NODE

.

NameTypeData TypeDescriptionDefault Value
IS_NODEImportingTYPE
TY_S_ARCH_NODE
IT_COMPImportingTYPE
/BOBF/T_CONFRO_ASSOC2
Configuration: Associations
CT_DAC_NODEChangingTYPE
TY_T_DAC_NODE
DAC Nodes
CT_NODEChangingTYPE
TY_T_ARCH_NODE



Exceptions of Method GBS_GET_BO_NODE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_ARCH_GENER.
DATA: lv_CT_DAC_NODE TYPE TY_T_DAC_NODE,
lv_CT_NODE TYPE TY_T_ARCH_NODE,
lv_IS_NODE TYPE TY_S_ARCH_NODE,
lv_IT_COMP TYPE /BOBF/T_CONFRO_ASSOC2,
lv_other TYPE c.

CALL METHOD lo_class=>GBS_GET_BO_NODE(
EXPORTING
IS_NODE = lv_IS_NODE
IT_COMP = lv_IT_COMP
CHANGING
CT_DAC_NODE = lv_CT_DAC_NODE
CT_NODE = lv_CT_NODE ).

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!