START_NODE_CREATION SAP Method Start the node creation so user can input data









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

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


Parameters of Method START_NODE_CREATION

.

NameTypeData TypeDescriptionDefault Value
I_NODE_TYPEImportingTYPE
DIOHFW_NODE_TYPE
Node type
I_REF_NODEIDImportingTYPE
DIOHFW_NODEID
Reference node ID
I_REF_NODE_KEYImportingTYPE
LVC_NKEY
Reference node key
I_RELATIONImportingTYPE
DIOHFW_RELATION
Relation between OHF-nodes
I_SET_OK_CODEImportingTYPE
XFLAG
Set fcode
ER_NODEExportingTYPE REF TO
CL_NODE_OHFW
Hierarchy nodes



Exceptions of Method START_NODE_CREATION

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_GUI_BROWSER_OHFW.
DATA: lv_ER_NODE TYPE CL_NODE_OHFW,
lv_I_NODE_TYPE TYPE DIOHFW_NODE_TYPE,
lv_I_REF_NODEID TYPE DIOHFW_NODEID,
lv_I_REF_NODE_KEY TYPE LVC_NKEY,
lv_I_RELATION TYPE DIOHFW_RELATION,
lv_I_SET_OK_CODE TYPE XFLAG,
lv_other TYPE c.

CALL METHOD lo_class=>START_NODE_CREATION(
EXPORTING
I_NODE_TYPE = lv_I_NODE_TYPE
I_REF_NODEID = lv_I_REF_NODEID
I_REF_NODE_KEY = lv_I_REF_NODE_KEY
I_RELATION = lv_I_RELATION
I_SET_OK_CODE = lv_I_SET_OK_CODE
IMPORTING
ER_NODE = lv_ER_NODE ).

Links to Related Class(s)

CL_GUI_B...
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!