PROCESS_INBOUND_DATA SAP Method Retrieve Global Data When Calling Evaluation
Below is documentation, parameters and attributes of ABAP Method PROCESS_INBOUND_DATA within SAP class CL_DPR_UI_LOG_EVALUATION. 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 CL_DPR_UI_LOG_EVALUATION 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_INBOUND_DATA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_INBOUND_DATA
.| Name | Type | Data Type | Description | Default Value |
| IV_AGGREGATED | Importing | TYPE BOOLE_D | Aggregated | |
| IV_CURRENT_OR_SAVED | Importing | TYPE CHAR1 | Evaluation Current = 1, Saved = 2 | |
| IV_GUID | Importing | TYPE DPR_TV_OBJECT_GUID_CHAR | Unique Object Key | |
| IV_LAYOUT | Importing | TYPE EVE_TV_VIEW | Layout for Evaluation | |
| IV_LAYOUT_CHANGED | Importing | TYPE BOOLE_D | New Layout | |
| EV_LAYOUT_CHANGED | Exporting | TYPE BOOLE_D | Layout New | |
| EV_TABLE_DATA_CHANGED | Exporting | TYPE BOOLE_D | Table: Data Change | |
| EV_TREE_DATA_CHANGED | Exporting | TYPE BOOLE_D | Tree: Data Change |
Exceptions of Method PROCESS_INBOUND_DATA
This method does not have any exceptionsExample 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 CL_DPR_UI_LOG_EVALUATION.
DATA: lv_EV_LAYOUT_CHANGED TYPE BOOLE_D,
lv_EV_TABLE_DATA_CHANGED TYPE BOOLE_D,
lv_EV_TREE_DATA_CHANGED TYPE BOOLE_D,
lv_IV_AGGREGATED TYPE BOOLE_D,
lv_IV_CURRENT_OR_SAVED TYPE CHAR1,
lv_IV_GUID TYPE DPR_TV_OBJECT_GUID_CHAR,
lv_IV_LAYOUT TYPE EVE_TV_VIEW,
lv_IV_LAYOUT_CHANGED TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_INBOUND_DATA(
EXPORTING
IV_AGGREGATED = lv_IV_AGGREGATED
IV_CURRENT_OR_SAVED = lv_IV_CURRENT_OR_SAVED
IV_GUID = lv_IV_GUID
IV_LAYOUT = lv_IV_LAYOUT
IV_LAYOUT_CHANGED = lv_IV_LAYOUT_CHANGED
IMPORTING
EV_LAYOUT_CHANGED = lv_EV_LAYOUT_CHANGED
EV_TABLE_DATA_CHANGED = lv_EV_TABLE_DATA_CHANGED
EV_TREE_DATA_CHANGED = lv_EV_TREE_DATA_CHANGED ).
Links to Related Class(s)
CL_DPR_U...Full list of available SAP object classes
Search for further information about these or an SAP related objects