ORA_COLL_SE_AGG_PART_LIST is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ORA_COLL_SE_AGG_PART_LIST into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SDBORA3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ORA_COLL_SE_AGG_PART_LIST' "Oracle monitoring: update table ora_mon_roots
EXPORTING
con_name = " dbcon_name Oracle monitoring: connection name
monikey = " monikey Oracle monitoring: monikey
process_type = " db02_proc_typ Oracle monitoring: process type
* s_monikey_1 = " monikey Oracle monitoring: monikey
* s_monikey_2 = " monikey Oracle monitoring: monikey
* s_monikey_3 = " monikey Oracle monitoring: monikey
* s_monikey_4 = " monikey Oracle monitoring: monikey
* s_monikey_5 = " monikey Oracle monitoring: monikey
* s_monikey_6 = " monikey Oracle monitoring: monikey
* s_monikey_7 = " monikey Oracle monitoring: monikey
* s_monikey_8 = " monikey Oracle monitoring: monikey
* s_monikey_9 = " monikey Oracle monitoring: monikey
* s_monikey_10 = " monikey Oracle monitoring: monikey
* param = " db02_param Oracle monitoring: parameter
* refresh = " db02_flag Oracle monitoring: flag
IMPORTING
date = " db02_date Oracle monitoring
time = " db02_time Oracle monitoring: time
wday = " db02_wday Oracle monitoring: Week day
cweek = " db02_cweek Oracle monitoring: calendar week
upload = " db02_upload Oracle monitoring: bytes uploaded in Moni
duration = " db02_duration Oracle monitoring: duration
rcode = " db02_rcode Oracle monitoring: total return code
. " ORA_COLL_SE_AGG_PART_LIST
The ABAP code below is a full code listing to execute function module ORA_COLL_SE_AGG_PART_LIST including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_date | TYPE DB02_DATE , |
| ld_time | TYPE DB02_TIME , |
| ld_wday | TYPE DB02_WDAY , |
| ld_cweek | TYPE DB02_CWEEK , |
| ld_upload | TYPE DB02_UPLOAD , |
| ld_duration | TYPE DB02_DURATION , |
| ld_rcode | TYPE DB02_RCODE . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_date | TYPE DB02_DATE , |
| ld_con_name | TYPE DBCON_NAME , |
| ld_time | TYPE DB02_TIME , |
| ld_monikey | TYPE MONIKEY , |
| ld_wday | TYPE DB02_WDAY , |
| ld_process_type | TYPE DB02_PROC_TYP , |
| ld_s_monikey_1 | TYPE MONIKEY , |
| ld_cweek | TYPE DB02_CWEEK , |
| ld_upload | TYPE DB02_UPLOAD , |
| ld_s_monikey_2 | TYPE MONIKEY , |
| ld_duration | TYPE DB02_DURATION , |
| ld_s_monikey_3 | TYPE MONIKEY , |
| ld_rcode | TYPE DB02_RCODE , |
| ld_s_monikey_4 | TYPE MONIKEY , |
| ld_s_monikey_5 | TYPE MONIKEY , |
| ld_s_monikey_6 | TYPE MONIKEY , |
| ld_s_monikey_7 | TYPE MONIKEY , |
| ld_s_monikey_8 | TYPE MONIKEY , |
| ld_s_monikey_9 | TYPE MONIKEY , |
| ld_s_monikey_10 | TYPE MONIKEY , |
| ld_param | TYPE DB02_PARAM , |
| ld_refresh | TYPE DB02_FLAG . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ORA_COLL_SE_AGG_PART_LIST or its description.
ORA_COLL_SE_AGG_PART_LIST - Oracle monitoring: update table ora_mon_roots ORA_COLL_SE_AGG_LOB_LIST - Oracle monitoring: update table ora_mon_roots ORA_COLL_SE_AGG_GE_HISTORY - Oracle monitoring: collect database general history ORA_COLL_OVERVIEW - Oracle monitoring: collect database general main data ORA_COLL_DB_SPECIFIC_HISTORY - Oracle monitoring: collect database general history ORA_COLL_DB_GENERAL_MAIN_DATA - Oracle monitoring: collect database general main data