DO_LOADING SAP Method Load Nodes









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

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


Parameters of Method DO_LOADING

.

NameTypeData TypeDescriptionDefault Value
IO_CHANGEImportingTYPE REF TO
/BOBF/IF_FRW_CHANGE
Interface for Change Class
IT_KEYImportingTYPE
/BOBF/T_FRW_KEY
Key Table
IT_NODEImportingTYPE
/BOBF/T_FRW_NODE
Node Table
IT_NODE_NO_RELOADImportingTYPE
/BOBF/T_FRW_NODE
Node Table
IV_CHECK_BUFImportingTYPE
BOOLE_D
Check Buffer and Load Only New Objects
IV_EDIT_MODEImportingTYPE
/BOBF/CONF_EDIT_MODE
Change Mode
IV_LOAD_DATAImportingTYPE
BOOLE_D
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_LOAD_SUBTREEImportingTYPE
/BOBF/FRW_LOAD_SUBTREE
Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node
IV_NODE_KEY_UNIQUEImportingTYPE
/BOBF/OBM_NODE_KEY
Node in IT_NODE unique
IV_NOTIFY_KEYLOADImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
IV_RELOADImportingTYPE
BOOLE_D
Reload Objects Contained in Buffer
IV_WITHIN_LOADINGImportingTYPE
BOOLE_D
Data element for domain BOOLE: TRUE (='X') and FALSE (=' ')
EO_MESSAGEExportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Message Object
ET_FAILEDExportingTYPE
/BOBF/T_FRW_NODE
ET_LOADED_NODEExportingTYPE
/BOBF/T_FRW_NODE
Key Table



Exceptions of Method DO_LOADING

This method does not have any exceptions

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: lo_class TYPE REF TO /BOBF/CL_FRW.
DATA: lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_FAILED TYPE /BOBF/T_FRW_NODE,
lv_ET_LOADED_NODE TYPE /BOBF/T_FRW_NODE,
lv_IO_CHANGE TYPE /BOBF/IF_FRW_CHANGE,
lv_IT_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_NODE TYPE /BOBF/T_FRW_NODE,
lv_IT_NODE_NO_RELOAD TYPE /BOBF/T_FRW_NODE,
lv_IV_CHECK_BUF TYPE BOOLE_D,
lv_IV_EDIT_MODE TYPE /BOBF/CONF_EDIT_MODE,
lv_IV_LOAD_DATA TYPE BOOLE_D,
lv_IV_LOAD_SUBTREE TYPE /BOBF/FRW_LOAD_SUBTREE,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_NODE_KEY_UNIQUE TYPE /BOBF/OBM_NODE_KEY,
lv_IV_NOTIFY_KEYLOAD TYPE BOOLE_D,
lv_IV_RELOAD TYPE BOOLE_D,
lv_IV_WITHIN_LOADING TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>DO_LOADING(
EXPORTING
IO_CHANGE = lv_IO_CHANGE
IT_KEY = lv_IT_KEY
IT_NODE = lv_IT_NODE
IT_NODE_NO_RELOAD = lv_IT_NODE_NO_RELOAD
IV_CHECK_BUF = lv_IV_CHECK_BUF
IV_EDIT_MODE = lv_IV_EDIT_MODE
IV_LOAD_DATA = lv_IV_LOAD_DATA
IV_LOAD_SUBTREE = lv_IV_LOAD_SUBTREE
IV_NODE_KEY = lv_IV_NODE_KEY
IV_NODE_KEY_UNIQUE = lv_IV_NODE_KEY_UNIQUE
IV_NOTIFY_KEYLOAD = lv_IV_NOTIFY_KEYLOAD
IV_RELOAD = lv_IV_RELOAD
IV_WITHIN_LOADING = lv_IV_WITHIN_LOADING
IMPORTING
EO_MESSAGE = lv_EO_MESSAGE
ET_FAILED = lv_ET_FAILED
ET_LOADED_NODE = lv_ET_LOADED_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!