DISPLAY_RESULT SAP Method Print Result
Below is documentation, parameters and attributes of ABAP Method DISPLAY_RESULT within SAP class SDFI_CONSISTENCY. 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 SDFI_CONSISTENCY 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 DISPLAY_RESULT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DISPLAY_RESULT
.| Name | Type | Data Type | Description | Default Value |
| IO_LIST_DIFF | Importing | TYPE REF TO CL_GUI_ALV_GRID | ALV List Viewer | |
| IO_LIST_TOTAL | Importing | TYPE REF TO CL_GUI_ALV_GRID | ALV List Viewer | |
| IV_DIFF_ONLY | Importing | TYPE BOOLEAN | Boolean Variable (X=True, -=False, Space=Unknown) | |
| IV_DIFF_TITLE | Importing | TYPE LVC_TITLE | Header Difference Table | |
| IV_TOTAL_TITLE | Importing | TYPE LVC_TITLE | Header Totals Table |
Exceptions of Method DISPLAY_RESULT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO SDFI_CONSISTENCY.
DATA: lv_IO_LIST_DIFF TYPE CL_GUI_ALV_GRID,
lv_IO_LIST_TOTAL TYPE CL_GUI_ALV_GRID,
lv_IV_DIFF_ONLY TYPE BOOLEAN,
lv_IV_DIFF_TITLE TYPE LVC_TITLE,
lv_IV_TOTAL_TITLE TYPE LVC_TITLE,
lv_other TYPE c.
CALL METHOD lo_class=>DISPLAY_RESULT(
EXPORTING
IO_LIST_DIFF = lv_IO_LIST_DIFF
IO_LIST_TOTAL = lv_IO_LIST_TOTAL
IV_DIFF_ONLY = lv_IV_DIFF_ONLY
IV_DIFF_TITLE = lv_IV_DIFF_TITLE
IV_TOTAL_TITLE = lv_IV_TOTAL_TITLE ).
Links to Related Class(s)
SDFI_CON...Full list of available SAP object classes
Search for further information about these or an SAP related objects