SAP CCOGUI_CALL_OPTIONS Function Module for NOTRANSL: Optionen für Konvertierung einstellen
CCOGUI_CALL_OPTIONS is a standard ccogui call options 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: Optionen für Konvertierung einstellen 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 options FM, simply by entering the name CCOGUI_CALL_OPTIONS 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_OPTIONS 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_OPTIONS'"NOTRANSL: Optionen für Konvertierung einstellen.
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
ED_OKCODE = "Function Code
CHANGING
* CS_EXTROPTIONS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING Parameters details for CCOGUI_CALL_OPTIONS
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
EXPORTING Parameters details for CCOGUI_CALL_OPTIONS
ED_OKCODE - Function Code
Data type: OKCODEOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for CCOGUI_CALL_OPTIONS
CS_EXTROPTIONS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CCOGUI_CALL_OPTIONS 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_ed_okcode | TYPE OKCODE, " | |||
| lv_id_wizard | TYPE XFLAG, " SPACE | |||
| lv_cs_extroptions | TYPE XFLAG, " | |||
| 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_OPTIONS' "NOTRANSL: Optionen für Konvertierung einstellen |
| 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 | |
| IMPORTING | ||
| ED_OKCODE | = lv_ed_okcode | |
| CHANGING | ||
| CS_EXTROPTIONS | = lv_cs_extroptions | |
| . " CCOGUI_CALL_OPTIONS | ||
ABAP code using 7.40 inline data declarations to call FM CCOGUI_CALL_OPTIONS
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