DBA Data[Home] [Help]

PACKAGE: APPS.AMS_TCOP_WF_PKG

Source


1 PACKAGE AMS_TCOP_WF_PKG AS
2 /* $Header: amsvtcws.pls 120.1 2005/11/17 04:16:30 mayjain noship $ */
3 -- ===============================================================
4 -- Start of Comments
5 -- Package name
6 --          AMS_TCOP_WF_PKG
7 -- Purpose
8 --
9 -- This package has all the methods required to integrate with
10 -- OMO Schedule Execution Workflow
11 --
12 -- History
13 --
14 -- NOTE
15 --
16 -- End of Comments
17 -- ===============================================================
18 
19 
20 G_PKG_NAME CONSTANT VARCHAR2(30) := 'AMS_TCOP_WF_PKG';
21 
22 Procedure Is_Fatigue_Enabled (
23 
24           itemtype in varchar2,
25 	  itemkey  in varchar2,
26 	  actid in number,
27 	  funcmode in varchar2,
28           result out NOCOPY varchar2
29 );
30 
31 Procedure Add_Request_To_Queue (
32           itemtype in varchar2,
33 	  itemkey in varchar2,
34 	  actid in varchar2,
35 	  funcmode in varchar2,
36 	  result out NOCOPY varchar2
37 );
38 
39 Procedure Is_This_Request_Scheduled (
40           itemtype in varchar2,
41 	  itemkey  in varchar2,
42 	  actid in number,
43 	  funcmode in varchar2,
44           result out NOCOPY varchar2
45 );
46 
47 Procedure Invoke_TCOP_Engine (
48           itemtype in varchar2,
49 	  itemkey  in varchar2,
50 	  actid in number,
51 	  funcmode in varchar2,
52           result out NOCOPY varchar2
53 );
54 
55 Procedure Run_FR_Conc_Request (
56           itemtype in varchar2,
57 	  itemkey  in varchar2,
58 	  actid in number,
59 	  funcmode in varchar2,
60           result out NOCOPY varchar2
61 );
62 
63 END AMS_TCOP_WF_PKG;