SAP /SDF/CCDB_READ_CONTROL_DATA Function Module for CCDB - Read Control Data
/SDF/CCDB_READ_CONTROL_DATA is a standard /sdf/ccdb read control data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CCDB - Read Control Data 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 /sdf/ccdb read control data FM, simply by entering the name /SDF/CCDB_READ_CONTROL_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SDF/CCDB_SOLMAN_INTERFACE
Program Name: /SDF/SAPLCCDB_SOLMAN_INTERFACE
Main Program: /SDF/SAPLCCDB_SOLMAN_INTERFACE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SDF/CCDB_READ_CONTROL_DATA 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 '/SDF/CCDB_READ_CONTROL_DATA'"CCDB - Read Control Data.
EXPORTING
CONTROL_DATA = "Control Data
IMPORTING
STORE_ATTRIBUTES = "Table of /SDF/SDIAGST_PARAM
TECHNICAL_SYSTEM = "Technical System data
ABAP_INSTANCE = "Char 250
CONFIGSTRING = "char 255
DATA_FOR_EXTRACTOR = "Data for extractor
EXTR_ATTRIBUTES = "Table of /SDF/SDIAGST_PARAM
IMPORTING Parameters details for /SDF/CCDB_READ_CONTROL_DATA
CONTROL_DATA - Control Data
Data type: XSTRINGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for /SDF/CCDB_READ_CONTROL_DATA
STORE_ATTRIBUTES - Table of /SDF/SDIAGST_PARAM
Data type: /SDF/TT_DIAGST_PARAMOptional: No
Call by Reference: Yes
TECHNICAL_SYSTEM - Technical System data
Data type: /SDF/SDIAGST_TS_DATAOptional: No
Call by Reference: Yes
ABAP_INSTANCE - Char 250
Data type: /SDF/DIAGST_CHAR250Optional: No
Call by Reference: Yes
CONFIGSTRING - char 255
Data type: /SDF/DIAGST_CHAR255Optional: No
Call by Reference: Yes
DATA_FOR_EXTRACTOR - Data for extractor
Data type: /SDF/SDIAGST_DATA_FOR_EXTROptional: No
Call by Reference: Yes
EXTR_ATTRIBUTES - Table of /SDF/SDIAGST_PARAM
Data type: /SDF/TT_DIAGST_PARAMOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for /SDF/CCDB_READ_CONTROL_DATA 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_control_data | TYPE XSTRING, " | |||
| lv_store_attributes | TYPE /SDF/TT_DIAGST_PARAM, " | |||
| lv_technical_system | TYPE /SDF/SDIAGST_TS_DATA, " | |||
| lv_abap_instance | TYPE /SDF/DIAGST_CHAR250, " | |||
| lv_configstring | TYPE /SDF/DIAGST_CHAR255, " | |||
| lv_data_for_extractor | TYPE /SDF/SDIAGST_DATA_FOR_EXTR, " | |||
| lv_extr_attributes | TYPE /SDF/TT_DIAGST_PARAM. " |
|   CALL FUNCTION '/SDF/CCDB_READ_CONTROL_DATA' "CCDB - Read Control Data |
| EXPORTING | ||
| CONTROL_DATA | = lv_control_data | |
| IMPORTING | ||
| STORE_ATTRIBUTES | = lv_store_attributes | |
| TECHNICAL_SYSTEM | = lv_technical_system | |
| ABAP_INSTANCE | = lv_abap_instance | |
| CONFIGSTRING | = lv_configstring | |
| DATA_FOR_EXTRACTOR | = lv_data_for_extractor | |
| EXTR_ATTRIBUTES | = lv_extr_attributes | |
| . " /SDF/CCDB_READ_CONTROL_DATA | ||
ABAP code using 7.40 inline data declarations to call FM /SDF/CCDB_READ_CONTROL_DATA
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.Search for further information about these or an SAP related objects