DBA Data[Home] [Help]

PACKAGE: APPS.AMW_PROCCERT_EVENT_PVT

Source


1 PACKAGE AMW_PROCCERT_EVENT_PVT AS
2 /* $Header: amwvpces.pls 120.0 2005/05/31 18:10:17 appldev noship $ */
3 -- ===============================================================
4 -- Start of Comments
5 -- Package name
6 --          AMW_PROCCERT_EVENT_PVT
7 -- Purpose
8 --
9 -- History
10 --
11 -- NOTE
12 --
13 -- End of Comments
14 -- ===============================================================
15 
16 G_REFRESH_FLAG VARCHAR2(1) := 'N';
17 TYPE certification_array is TABLE of NUMBER INDEX by BINARY_INTEGER;
18 m_certification_list  certification_array;
19 
20 FUNCTION Scope_Update
21 ( p_subscription_guid   in     raw,
22   p_event               in out NOCOPY wf_event_t
23 ) return VARCHAR2;
24 
25 FUNCTION Evaluation_Update
26 ( p_subscription_guid   in     raw,
27   p_event               in out NOCOPY wf_event_t
28 ) return VARCHAR2;
29 
30 FUNCTION Certification_Update
31 ( p_subscription_guid   in     raw,
32   p_event               in out NOCOPY wf_event_t
33 ) return VARCHAR2;
34 
35 
36 END AMW_PROCCERT_EVENT_PVT;
37