SAP /SDF/CCMS_PERFDB_READ_DATA Function Module for read data from CCMS performance database
/SDF/CCMS_PERFDB_READ_DATA is a standard /sdf/ccms perfdb read 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 read data from CCMS performance database 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/ccms perfdb read data FM, simply by entering the name /SDF/CCMS_PERFDB_READ_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SDF/CCMS_DL
Program Name: /SDF/SAPLCCMS_DL
Main Program: /SDF/SAPLCCMS_DL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /SDF/CCMS_PERFDB_READ_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/CCMS_PERFDB_READ_DATA'"read data from CCMS performance database.
EXPORTING
IN_BEGIN_DATE = "begin date
IN_END_DATE = "end date
IN_RECTYPE = "Montoring infra. perf.DB record type
IN_TIMEZONE = "Time zone
IMPORTING
OUT_PERFDB = "PerfDB-Ausgabedaten zu mehreren TID's
CHANGING
PT_TIDS = "Alerts: Table with Global TIDs
CONTENT = "contents of a CCMS MTEs
IMPORTING Parameters details for /SDF/CCMS_PERFDB_READ_DATA
IN_BEGIN_DATE - begin date
Data type: DATSOptional: No
Call by Reference: Yes
IN_END_DATE - end date
Data type: DATSOptional: No
Call by Reference: Yes
IN_RECTYPE - Montoring infra. perf.DB record type
Data type: ALPDBRTYPOptional: No
Call by Reference: Yes
IN_TIMEZONE - Time zone
Data type: TIMEZONEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for /SDF/CCMS_PERFDB_READ_DATA
OUT_PERFDB - PerfDB-Ausgabedaten zu mehreren TID's
Data type: /SDF/CCMS_CPH_OUT_TID_TBLOptional: No
Call by Reference: Yes
CHANGING Parameters details for /SDF/CCMS_PERFDB_READ_DATA
PT_TIDS - Alerts: Table with Global TIDs
Data type: ALTIDTBLOptional: No
Call by Reference: Yes
CONTENT - contents of a CCMS MTEs
Data type: /SDF/DSWP_CCMS_NODE_CONTENT_TAOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for /SDF/CCMS_PERFDB_READ_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_pt_tids | TYPE ALTIDTBL, " | |||
| lv_out_perfdb | TYPE /SDF/CCMS_CPH_OUT_TID_TBL, " | |||
| lv_in_begin_date | TYPE DATS, " | |||
| lv_content | TYPE /SDF/DSWP_CCMS_NODE_CONTENT_TA, " | |||
| lv_in_end_date | TYPE DATS, " | |||
| lv_in_rectype | TYPE ALPDBRTYP, " | |||
| lv_in_timezone | TYPE TIMEZONE. " |
|   CALL FUNCTION '/SDF/CCMS_PERFDB_READ_DATA' "read data from CCMS performance database |
| EXPORTING | ||
| IN_BEGIN_DATE | = lv_in_begin_date | |
| IN_END_DATE | = lv_in_end_date | |
| IN_RECTYPE | = lv_in_rectype | |
| IN_TIMEZONE | = lv_in_timezone | |
| IMPORTING | ||
| OUT_PERFDB | = lv_out_perfdb | |
| CHANGING | ||
| PT_TIDS | = lv_pt_tids | |
| CONTENT | = lv_content | |
| . " /SDF/CCMS_PERFDB_READ_DATA | ||
ABAP code using 7.40 inline data declarations to call FM /SDF/CCMS_PERFDB_READ_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