SAP C_MONITOR_PG_SDD Function Module for Oracle database monitor 'PGA': SDD (Service data download)
C_MONITOR_PG_SDD is a standard c monitor pg sdd SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Oracle database monitor 'PGA': SDD (Service data download) 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 c monitor pg sdd FM, simply by entering the name C_MONITOR_PG_SDD into the relevant SAP transaction such as SE37 or SE38.
Function Group: S_ORA_COCKPIT_1
Program Name: SAPLS_ORA_COCKPIT_1
Main Program: SAPLS_ORA_COCKPIT_1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C_MONITOR_PG_SDD 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 'C_MONITOR_PG_SDD'"Oracle database monitor 'PGA': SDD (Service data download).
TABLES
PGASTA_LIST = "SDD - Oracle PGA monitor: PGASTA
WOAEXE_LIST = "SDD - Oracle PGA monitor: WOAEXE
SQLTEXT_LIST = "SDD - Oracle PGA monitor: SQLTEXT
PEROPT_LIST = "SDD - Oracle PGA monitor: PEROPT
PGAADV_LIST = "SDD - Oracle PGA monitor: PGAADV
PGAHIS_LIST = "SDD - Oracle PGA monitor: PGAHIS
PROCES_LIST = "SDD - Oracle PGA monitor: PROCESS
SQLHIS_LIST = "SDD - Oracle PGA monitor: SQLHIS
SQLOMP_LIST = "SDD - Oracle PGA monitor: SQLOMP
SQLWOA_LIST = "SDD - Oracle PGA monitor: SQLWOA
WOAACT_LIST = "SDD - Oracle PGA monitor: WOAACT
TABLES Parameters details for C_MONITOR_PG_SDD
PGASTA_LIST - SDD - Oracle PGA monitor: PGASTA
Data type: ORA_PG_PGASTAOptional: No
Call by Reference: No ( called with pass by value option)
WOAEXE_LIST - SDD - Oracle PGA monitor: WOAEXE
Data type: ORA_PG_WOAEXEOptional: No
Call by Reference: No ( called with pass by value option)
SQLTEXT_LIST - SDD - Oracle PGA monitor: SQLTEXT
Data type: ORA_PG_SQLTEXTOptional: No
Call by Reference: No ( called with pass by value option)
PEROPT_LIST - SDD - Oracle PGA monitor: PEROPT
Data type: ORA_PG_PEROPTOptional: No
Call by Reference: No ( called with pass by value option)
PGAADV_LIST - SDD - Oracle PGA monitor: PGAADV
Data type: ORA_PG_PGAADVOptional: No
Call by Reference: No ( called with pass by value option)
PGAHIS_LIST - SDD - Oracle PGA monitor: PGAHIS
Data type: ORA_PG_PGAHISOptional: No
Call by Reference: No ( called with pass by value option)
PROCES_LIST - SDD - Oracle PGA monitor: PROCESS
Data type: ORA_PG_PROCESOptional: No
Call by Reference: No ( called with pass by value option)
SQLHIS_LIST - SDD - Oracle PGA monitor: SQLHIS
Data type: ORA_PG_SQLHISOptional: No
Call by Reference: No ( called with pass by value option)
SQLOMP_LIST - SDD - Oracle PGA monitor: SQLOMP
Data type: ORA_PG_SQLOMPOptional: No
Call by Reference: No ( called with pass by value option)
SQLWOA_LIST - SDD - Oracle PGA monitor: SQLWOA
Data type: ORA_PG_SQLWOAOptional: No
Call by Reference: No ( called with pass by value option)
WOAACT_LIST - SDD - Oracle PGA monitor: WOAACT
Data type: ORA_PG_WOAACTOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for C_MONITOR_PG_SDD 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: | ||||
| lt_pgasta_list | TYPE STANDARD TABLE OF ORA_PG_PGASTA, " | |||
| lt_woaexe_list | TYPE STANDARD TABLE OF ORA_PG_WOAEXE, " | |||
| lt_sqltext_list | TYPE STANDARD TABLE OF ORA_PG_SQLTEXT, " | |||
| lt_peropt_list | TYPE STANDARD TABLE OF ORA_PG_PEROPT, " | |||
| lt_pgaadv_list | TYPE STANDARD TABLE OF ORA_PG_PGAADV, " | |||
| lt_pgahis_list | TYPE STANDARD TABLE OF ORA_PG_PGAHIS, " | |||
| lt_proces_list | TYPE STANDARD TABLE OF ORA_PG_PROCES, " | |||
| lt_sqlhis_list | TYPE STANDARD TABLE OF ORA_PG_SQLHIS, " | |||
| lt_sqlomp_list | TYPE STANDARD TABLE OF ORA_PG_SQLOMP, " | |||
| lt_sqlwoa_list | TYPE STANDARD TABLE OF ORA_PG_SQLWOA, " | |||
| lt_woaact_list | TYPE STANDARD TABLE OF ORA_PG_WOAACT. " |
|   CALL FUNCTION 'C_MONITOR_PG_SDD' "Oracle database monitor 'PGA': SDD (Service data download) |
| TABLES | ||
| PGASTA_LIST | = lt_pgasta_list | |
| WOAEXE_LIST | = lt_woaexe_list | |
| SQLTEXT_LIST | = lt_sqltext_list | |
| PEROPT_LIST | = lt_peropt_list | |
| PGAADV_LIST | = lt_pgaadv_list | |
| PGAHIS_LIST | = lt_pgahis_list | |
| PROCES_LIST | = lt_proces_list | |
| SQLHIS_LIST | = lt_sqlhis_list | |
| SQLOMP_LIST | = lt_sqlomp_list | |
| SQLWOA_LIST | = lt_sqlwoa_list | |
| WOAACT_LIST | = lt_woaact_list | |
| . " C_MONITOR_PG_SDD | ||
ABAP code using 7.40 inline data declarations to call FM C_MONITOR_PG_SDD
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