DBA Data[Home] [Help]

PACKAGE: APPS.CSI_TIME_BASED_CTR_ENGINE_PKG

Source


1 PACKAGE CSI_Time_Based_Ctr_Engine_PKG AS
2 /* $Header: csictims.pls 120.0.12010000.1 2008/07/25 08:07:27 appldev 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 );
19 
20 END CSI_Time_Based_Ctr_Engine_PKG;