GET_NODE_CHANGES SAP Method Generation of Output Req: Get Node Changes (Refer Meth Doc.)









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

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


Parameters of Method GET_NODE_CHANGES

.

NameTypeData TypeDescriptionDefault Value
IO_BO_CHANGEImportingTYPE REF TO
/BOBF/IF_FRW_CHANGE
Interface of Change Object
IO_MESSAGEImportingTYPE REF TO
/BOBF/IF_FRW_MESSAGE
Interface of Message Object
IV_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
Business Object
IV_CONSIDER_CHILD_NODESImportingTYPE
ABAP_BOOL
Child Node Change influences this Node Change
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node Key
ET_KEY_CREATEExportingTYPE
/BOBF/T_FRW_KEY
Key Table
ET_KEY_DELETEExportingTYPE
/BOBF/T_FRW_KEY
Key Table
ET_KEY_UPDATEExportingTYPE
/BOBF/T_FRW_KEY
Key Table
ET_NODE_CHANGEExportingTYPE
/BOBF/T_FRW_CHANGE



Exceptions of Method GET_NODE_CHANGES

/BOBF/CX_FRW - BOPF Exception Class

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/IF_PPF_SERV_FOR_BO.
DATA: lv_ET_KEY_CREATE TYPE /BOBF/T_FRW_KEY,
lv_ET_KEY_DELETE TYPE /BOBF/T_FRW_KEY,
lv_ET_KEY_UPDATE TYPE /BOBF/T_FRW_KEY,
lv_ET_NODE_CHANGE TYPE /BOBF/T_FRW_CHANGE,
lv_IO_BO_CHANGE TYPE /BOBF/IF_FRW_CHANGE,
lv_IO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_CONSIDER_CHILD_NODES TYPE ABAP_BOOL,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.

CALL METHOD lo_class=>GET_NODE_CHANGES(
EXPORTING
IO_BO_CHANGE = lv_IO_BO_CHANGE
IO_MESSAGE = lv_IO_MESSAGE
IV_BO_KEY = lv_IV_BO_KEY
IV_CONSIDER_CHILD_NODES = lv_IV_CONSIDER_CHILD_NODES
IV_NODE_KEY = lv_IV_NODE_KEY
IMPORTING
ET_KEY_CREATE = lv_ET_KEY_CREATE
ET_KEY_DELETE = lv_ET_KEY_DELETE
ET_KEY_UPDATE = lv_ET_KEY_UPDATE
ET_NODE_CHANGE = lv_ET_NODE_CHANGE ).

Links to Related Class(s)

/BOFU/IF...
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!