DBA Data[Home] [Help]

PACKAGE: APPS.PO_WF_REQ_FLEXBUILDER_UPGRADE

Source


1 PACKAGE PO_WF_REQ_FLEXBUILDER_UPGRADE AUTHID CURRENT_USER AS
2 /* $Header: POXWRFUS.pls 115.2 2002/11/22 22:04:20 sbull ship $ */
3 
4  /*=======================================================================+
5  | FILENAME
6  |   POXWRFUS.pls
7  |
8  | DESCRIPTION
9  |   PL/SQL spec for package:  PO_WF_REQ_FLEXBUILDER_UPGRADE
10  |
11  | NOTES
12  | MODIFIED    IMRAN ALI (09/11/97) - Created
13  *=====================================================================*/
14 
15 --
16 -- Charge_Account
17 --   Generate charge account for the flex builder upgrade.
18 -- IN
19 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
20 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
21 --   funcmode  - Run/Cancel
22 -- OUT
23 --   Result
24 --     FAILURE - Account generation failed
25 --     SUCCESS - Account generation successful
26 --
27 procedure Charge_Account (   itemtype        in varchar2,
28                              itemkey         in varchar2,
29 			     actid	     in number,
30                              funcmode        in varchar2,
31                              result         out NOCOPY varchar2  );
32 
33 --
34 -- Budget_Account
35 --   Generate budget account for the flex builder upgrade.
36 -- IN
37 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
38 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
39 --   funcmode  - Run/Cancel
40 -- OUT
41 --   Result
42 --     FAILURE - Account generation failed
43 --     SUCCESS - Account generation successful
44 --
45 procedure Budget_Account (   itemtype        in varchar2,
46                              itemkey         in varchar2,
47 			     actid	     in number,
48                              funcmode        in varchar2,
49                              result       out NOCOPY varchar2    );
50 
51 --
52 -- Variance_Account
53 --   Generate variance account for the flex builder upgrade.
54 -- IN
55 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
56 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
57 --   funcmode  - Run/Cancel
58 -- OUT
59 --   Result
60 --     FAILURE - Account generation failed
61 --     SUCCESS - Account generation successful
62 --
63 procedure Variance_Account ( itemtype        in varchar2,
64                              itemkey         in varchar2,
65 			     actid	     in number,
66                              funcmode        in varchar2,
67                              result       out NOCOPY varchar2    );
68 
69 --
70 -- Accrual_Account
71 --   Generate accrual account for the flex builder upgrade.
72 -- IN
73 --   itemtype  - A valid item type from (WF_ITEM_TYPES table).
74 --   itemkey   - A string generated by call to AOL's INITIALIZE routine.
75 --   funcmode  - Run/Cancel
76 -- OUT
77 --   Result
78 --     FAILURE - Account generation failed
79 --     SUCCESS - Account generation successful
80 --
81 procedure Accrual_Account (  itemtype        in varchar2,
82                              itemkey         in varchar2,
83 			     actid	     in number,
84                              funcmode        in varchar2,
85                              result       out NOCOPY varchar2    );
86 
87 
88 end  PO_WF_REQ_FLEXBUILDER_UPGRADE;