DBA Data[Home] [Help]

PACKAGE: APPS.IGC_CC_WF_ACCOUNTS_PKG

Source


1 PACKAGE IGC_CC_WF_ACCOUNTS_PKG AUTHID CURRENT_USER AS
2 /* $Header: IGCCWFCS.pls 120.2.12000000.1 2007/08/20 12:15:13 mbremkum ship $ */
3 --
4 -- IS_CC_PROJECT_RELATED
5 --
6 -- IN
7 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
8 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
9 --   actid     - ID no. of activity this process is called from.
10 --   funcmode  - Run/Cancel
11 -- OUT
12 --   Result
13 --     TRUE
14 --     FALSE
15 --
16 procedure is_cc_project_related      (  itemtype        in  varchar2,
17                                         itemkey         in  varchar2,
18                                         actid           in number,
19                                         funcmode        in  varchar2,
20                                         result          out NOCOPY varchar2    );
21 --
22 
23 --
24 -- IS_ENCUMBRACE_ON
25 --
26 -- IN
27 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
28 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
29 --   actid     - ID no. of activity this process is called from.
30 --   funcmode  - Run/Cancel
31 -- OUT
32 --   Result
33 --     YES
34 --     NO
35 --
36 --
37 procedure is_encumbrance_on   (  itemtype        in  varchar2,
38                                 itemkey         in  varchar2,
39                                 actid           in number,
40                                 funcmode        in  varchar2,
41                                 result          out NOCOPY varchar2    );
42 --
43 
44 procedure   get_charge_account (  itemtype        in  varchar2,
45                                   itemkey         in  varchar2,
46                                   actid           in number,
47                                   funcmode        in  varchar2,
48                                   result          out NOCOPY varchar2    );
49 
50 --
51 procedure No_Process_Defined (    itemtype      IN  VARCHAR2,
52                                   itemkey       IN  VARCHAR2,
53                                   actid         IN  NUMBER,
54                                   funcmode      IN  VARCHAR2,
55                                   result        OUT NOCOPY VARCHAR2 );
56 
57 --
58 
59 END IGC_CC_WF_ACCOUNTS_PKG;