PROCESS_WRITE_NODE SAP Method Process a potentially new write node
Below is documentation, parameters and attributes of ABAP Method PROCESS_WRITE_NODE within SAP class /BOBF/CL_CONF_ACT_ADD_RW_NODES. 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_CONF_ACT_ADD_RW_NODES 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 PROCESS_WRITE_NODE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_WRITE_NODE
.| Name | Type | Data Type | Description | Default Value |
| IO_MODIFY | Importing | TYPE REF TO /BOBF/IF_FRW_MODIFY | Modification interface of BOPF | |
| IO_READ | Importing | TYPE REF TO /BOBF/IF_FRW_READ | Interface to Read Data | |
| IS_CONTENT | Importing | TYPE TY_CONTENT | ||
| IS_TRACE_INFO | Importing | TYPE /BOBF/TOOL_ACCTR | Trace-info about write-node | |
| IT_ASSOC | Importing | TYPE /BOBF/T_CONFRO_ASSOC | Information about associations in BO | |
| IV_CONTENT_CAT | Importing | TYPE /BOBF/OBM_CONTENT_CAT | Entity Category | |
| CT_WRITE_NODE | Changing | TYPE TT_WRITE_NODE | Table of present write-nodes |
Exceptions of Method PROCESS_WRITE_NODE
/BOBF/CX_FRW -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_CONF_ACT_ADD_RW_NODES.
DATA: lv_CT_WRITE_NODE TYPE TT_WRITE_NODE,
lv_IO_MODIFY TYPE /BOBF/IF_FRW_MODIFY,
lv_IO_READ TYPE /BOBF/IF_FRW_READ,
lv_IS_CONTENT TYPE TY_CONTENT,
lv_IS_TRACE_INFO TYPE /BOBF/TOOL_ACCTR,
lv_IT_ASSOC TYPE /BOBF/T_CONFRO_ASSOC,
lv_IV_CONTENT_CAT TYPE /BOBF/OBM_CONTENT_CAT,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_WRITE_NODE(
EXPORTING
IO_MODIFY = lv_IO_MODIFY
IO_READ = lv_IO_READ
IS_CONTENT = lv_IS_CONTENT
IS_TRACE_INFO = lv_IS_TRACE_INFO
IT_ASSOC = lv_IT_ASSOC
IV_CONTENT_CAT = lv_IV_CONTENT_CAT
CHANGING
CT_WRITE_NODE = lv_CT_WRITE_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