SAP CCOGUI_CALL_RESULT Function Module for NOTRANSL: Ergebnisdarstellung der Konvertierung
CCOGUI_CALL_RESULT is a standard ccogui call result SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Ergebnisdarstellung der Konvertierung processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for ccogui call result FM, simply by entering the name CCOGUI_CALL_RESULT into the relevant SAP transaction such as SE37 or SE38.
Function Group: CCOGUI
Program Name: SAPLCCOGUI
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CCOGUI_CALL_RESULT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'CCOGUI_CALL_RESULT'"NOTRANSL: Ergebnisdarstellung der Konvertierung.
EXPORTING
* ID_WIZARD = ' ' "New Input Values
* ID_XSTART = 12 "Natural number
* ID_YSTART = 3 "Natural number
* ID_XEND = 94 "Natural number
* ID_YEND = 17 "Natural number
IMPORTING Parameters details for CCOGUI_CALL_RESULT
ID_WIZARD - New Input Values
Data type: XFLAGDefault: SPACE
Optional: Yes
Call by Reference: Yes
ID_XSTART - Natural number
Data type: INT4Default: 12
Optional: Yes
Call by Reference: Yes
ID_YSTART - Natural number
Data type: INT4Default: 3
Optional: Yes
Call by Reference: Yes
ID_XEND - Natural number
Data type: INT4Default: 94
Optional: Yes
Call by Reference: Yes
ID_YEND - Natural number
Data type: INT4Default: 17
Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CCOGUI_CALL_RESULT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_id_wizard | TYPE XFLAG, " SPACE | |||
| lv_id_xstart | TYPE INT4, " 12 | |||
| lv_id_ystart | TYPE INT4, " 3 | |||
| lv_id_xend | TYPE INT4, " 94 | |||
| lv_id_yend | TYPE INT4. " 17 |
|   CALL FUNCTION 'CCOGUI_CALL_RESULT' "NOTRANSL: Ergebnisdarstellung der Konvertierung |
| EXPORTING | ||
| ID_WIZARD | = lv_id_wizard | |
| ID_XSTART | = lv_id_xstart | |
| ID_YSTART | = lv_id_ystart | |
| ID_XEND | = lv_id_xend | |
| ID_YEND | = lv_id_yend | |
| . " CCOGUI_CALL_RESULT | ||
ABAP code using 7.40 inline data declarations to call FM CCOGUI_CALL_RESULT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_id_wizard) | = ' '. | |||
| DATA(ld_id_xstart) | = 12. | |||
| DATA(ld_id_ystart) | = 3. | |||
| DATA(ld_id_xend) | = 94. | |||
| DATA(ld_id_yend) | = 17. | |||
Search for further information about these or an SAP related objects