DBA Data[Home] [Help]

PACKAGE: APPS.CSI_TIME_BASED_CTR_ENGINE_PKG

Source


1 PACKAGE CSI_Time_Based_Ctr_Engine_PKG AUTHID CURRENT_USER AS
2 /* $Header: csictims.pls 120.0.12020000.2 2013/01/08 05:29:40 jrkumar ship $ */
3 
4 --
5 -- Capture_Readings
6 --   Loop through all the effective "time" counter instances, and call the
7 --   "Capture_Ctr_Reading" API for each of them, if its time to update its
8 --    reading
9 -- OUT
10 --   errbuf - return any error messages
11 --   retcode - return completion status (0 for success, 1 for success with
12 --             warnings, 2 for error)
13 --
14 PROCEDURE Capture_Readings
15 (
16    errbuf	OUT NOCOPY VARCHAR2,
17    retcode	OUT NOCOPY NUMBER,
18    p_counter_group_id IN NUMBER --bug 16041167
19 );
20 
21 END CSI_Time_Based_Ctr_Engine_PKG;