DBA Data[Home] [Help]

PACKAGE: APPS.OZF_CLAIM_APPROVAL_PVT

Source


1 PACKAGE OZF_Claim_Approval_PVT AUTHID CURRENT_USER AS
2 /* $Header: ozfvcaws.pls 115.1 2003/11/11 03:12:07 mchang noship $ */
3 --------------------------------------------------------------------------
4 -- PROCEDURE
5 --   notify_requestor_fyi
6 --
7 -- PURPOSE
8 --   Generate the FYI Document for display in messages, either text or html
9 --
10 -- IN
11 --   document_id   - Item Key
12 --   display_type  - either 'text/plain' or 'text/html'
13 --   document      - document buffer
14 --   document_type - type of document buffer created, either 'text/plain'
15 --                   or 'text/html'
16 -- OUT
17 --
18 -- USED BY
19 --   Oracle MArketing Generic Apporval
20 --
21 -- HISTORY
22 --   04/25/2001  Prashanth Nerella     CREATION
23 --   05/29/2001  MICHELLE CHANG        MODIFIED
24 --------------------------------------------------------------------------
25 PROCEDURE notify_requestor_fyi(
26    document_id     IN       VARCHAR2
27   ,display_type    IN       VARCHAR2
28   ,document        IN OUT NOCOPY   VARCHAR2
29   ,document_type   IN OUT NOCOPY   VARCHAR2
30 );
31 
32 --------------------------------------------------------------------------
33 -- PROCEDURE
34 --   notify_approval_required
35 --
36 -- PURPOSE
37 --   Generate the Rejection Document for display in messages, either text or html
38 --
39 -- IN
40 --   document_id  - Item Key
41 --   display_type - either 'text/plain' or 'text/html'
42 --   document     - document buffer
43 --   document_type   - type of document buffer created, either 'text/plain'
44 --                     or 'text/html'
45 --
46 -- OUT
47 --
48 -- USED BY
49 --   Oracle MArketing Generic Apporval
50 --
51 -- HISTORY
52 --   04/25/2001   Prashanth Nerella   CREATION
53 --   05/29/2001   MICHELLE CHANG      MODIFIED
54 -------------------------------------------------------------------------------
55 PROCEDURE notify_approval_required(
56    document_id     IN       VARCHAR2
57   ,display_type    IN       VARCHAR2
58   ,document        IN OUT NOCOPY   VARCHAR2
59   ,document_type   IN OUT NOCOPY   VARCHAR2
60 );
61 
62 
63 --------------------------------------------------------------------------
64 -- PROCEDURE
65 --   notify_appr_req_reminder
66 --
67 -- PURPOSE
68 --   Generate the Rejection Document for display in messages, either text or html
69 --
70 -- IN
71 --   document_id  - Item Key
72 --   display_type - either 'text/plain' or 'text/html'
73 --   document     - document buffer
74 --   document_type   - type of document buffer created, either 'text/plain'
75 --                     or 'text/html'
76 -- OUT
77 --
78 -- USED BY
79 --   Oracle MArketing Generic Apporval
80 --
81 -- HISTORY
82 --   04/25/2001   Prashanth Nerella    CREATION
83 --   05/29/2001   Michelle Chang       MODIFIED
84 -------------------------------------------------------------------------------
85 PROCEDURE notify_appr_req_reminder(
86    document_id     IN       VARCHAR2
87   ,display_type    IN       VARCHAR2
88   ,document        IN OUT NOCOPY   VARCHAR2
89   ,document_type   IN OUT NOCOPY   VARCHAR2
90 );
91 
92 
93 --------------------------------------------------------------------------
94 -- PROCEDURE
95 --   Notify_requestor_of Approval
96 --
97 -- PURPOSE
98 --   Generate the Approval Document for display in messages, either text or html
99 --
100 -- IN
101 --   document_id  - Item Key
102 --   display_type - either 'text/plain' or 'text/html'
103 --   document     - document buffer
104 --   document_type   - type of document buffer created, either 'text/plain'
105 --                     or 'text/html'
106 -- OUT
107 --
108 -- USED BY
109 --   Oracle MArketing Generic Apporval
110 --
111 -- HISTORY
112 --   04/25/2001   Prashanth Nerella   CREATION
113 --   05/30/2001   MICHELLE CHANG      MODIFIED
114 ----------------------------------------------------------------------------
115 PROCEDURE notify_requestor_of_approval(
116    document_id     IN       VARCHAR2
117   ,display_type    IN       VARCHAR2
118   ,document        IN OUT NOCOPY   VARCHAR2
119   ,document_type   IN OUT NOCOPY   VARCHAR2
120 );
121 
122 
123 --------------------------------------------------------------------------
124 -- PROCEDURE
125 --   Notify_requestor_of rejection
126 --
127 -- PURPOSE
128 --   Generate the Rejection Document for display in messages, either text or html
129 --
130 -- IN
131 --   document_id  - Item Key
132 --   display_type - either 'text/plain' or 'text/html'
133 --   document     - document buffer
134 --   document_type   - type of document buffer created, either 'text/plain'
135 --                     or 'text/html'
136 -- OUT
137 --
138 -- USED BY
139 --   Oracle MArketing Generic Apporval
140 --
141 -- HISTORY
142 --   04/25/2001    Prashanth Nerella      CREATION
143 --   05/30/2001    MICHELLE CHANG         MODIFIED
144 -------------------------------------------------------------------------------
145 PROCEDURE notify_requestor_of_rejection(
146    document_id     IN       VARCHAR2
147   ,display_type    IN       VARCHAR2
148   ,document        IN OUT NOCOPY   VARCHAR2
149   ,document_type   IN OUT NOCOPY   VARCHAR2
150 );
151 
152 
153 ---------------------------------------------------------------------
154 -- PROCEDURE
155 --   Set_claim_Activity_details
156 --
157 -- PURPOSE
158 --   This Procedure will set all the item attribute details
159 --
160 -- IN
161 --
162 -- OUT
163 --
164 -- Used By Activities
165 --
166 -- NOTES
167 --
168 -- HISTORY
169 --   04/25/2001     Prashanth Nerella      CREATION
170 --   05/30/2001     MICHELLE CHANG         MODIFIED
171 -------------------------------------------------------------------------------
172 PROCEDURE set_claim_activity_details(
173    itemtype    IN       VARCHAR2
174   ,itemkey     IN       VARCHAR2
175   ,actid       IN       NUMBER
176   ,funcmode    IN       VARCHAR2
177   ,resultout   OUT NOCOPY      VARCHAR2
178 );
179 
180 
181 ---------------------------------------------------------------------
182 -- PROCEDURE
183 --  Update_Claim_Statas
184 --
185 -- PURPOSE
186 --   This Procedure will update the status
187 --
188 -- IN
189 --
190 -- OUT
191 --
192 -- Used By Activities
193 --
194 -- NOTES
195 --
196 -- HISTORY
197 --   04/25/2001    Prashanth Nerella       CREATION
198 --   05/30/2001    MICHELLE CHANG          MODIFIED
199 -------------------------------------------------------------------------------
200 PROCEDURE update_claim_status(
201    itemtype    IN       VARCHAR2
202   ,itemkey     IN       VARCHAR2
203   ,actid       IN       NUMBER
204   ,funcmode    IN       VARCHAR2
205   ,resultout   OUT NOCOPY      VARCHAR2
206 );
207 
208 
209 END OZF_Claim_Approval_Pvt;