DBA Data[Home] [Help]

PACKAGE BODY: APPS.PQH_PRE_INS

Source


1 Package Body pqh_pre_ins as
2 /* $Header: pqprerhi.pkb 115.3 2002/12/03 20:42:09 rpasapul noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  pqh_pre_ins.';  -- Global package name
9 --
10 -- The following global variables are only to be used by
11 -- the set_base_key_value and pre_insert procedures.
12 --
13 g_ins_end_reason_id_i  number   default null;
14 --
15 -- ----------------------------------------------------------------------------
16 -- |------------------------< set_base_key_value >----------------------------|
17 -- ----------------------------------------------------------------------------
18 procedure set_base_key_value
19   (p_ins_end_reason_id  in  number) is
20 --
21   l_proc       varchar2(72) := g_package||'set_base_key_value';
22 --
23 Begin
24   hr_utility.set_location('Entering:'||l_proc, 10);
25   --
26   pqh_pre_ins.g_ins_end_reason_id_i := p_ins_end_reason_id;
27   --
28   hr_utility.set_location(' Leaving:'||l_proc, 20);
29 End set_base_key_value;
30 --
31 --
32 -- ----------------------------------------------------------------------------
33 -- |------------------------------< insert_dml >------------------------------|
34 -- ----------------------------------------------------------------------------
35 -- {Start Of Comments}
36 --
37 -- Description:
38 --   This procedure controls the actual dml insert logic. The processing of
39 --   this procedure are as follows:
40 --   1) Initialise the object_version_number to 1 if the object_version_number
41 --      is defined as an attribute for this entity.
42 --   2) To set and unset the g_api_dml status as required (as we are about to
43 --      perform dml).
44 --   3) To insert the row into the schema.
45 --   4) To trap any constraint violations that may have occurred.
46 --   5) To raise any other errors.
47 --
48 -- Prerequisites:
49 --   This is an internal private procedure which must be called from the ins
50 --   procedure and must have all mandatory attributes set (except the
51 --   object_version_number which is initialised within this procedure).
52 --
53 -- In Parameters:
54 --   A Pl/Sql record structre.
55 --
56 -- Post Success:
57 --   The specified row will be inserted into the schema.
58 --
59 -- Post Failure:
60 --   On the insert dml failure it is important to note that we always reset the
61 --   g_api_dml status to false.
62 --   If a check, unique or parent integrity constraint violation is raised the
63 --   constraint_error procedure will be called.
64 --   If any other error is reported, the error will be raised after the
65 --   g_api_dml status is reset.
66 --
67 -- Developer Implementation Notes:
68 --   None.
69 --
70 -- Access Status:
71 --   Internal Row Handler Use Only.
72 --
73 -- {End Of Comments}
74 -- ----------------------------------------------------------------------------
75 Procedure insert_dml
76   (p_rec in out nocopy pqh_pre_shd.g_rec_type
77   ) is
78 --
79   l_proc  varchar2(72) := g_package||'insert_dml';
80 --
81 Begin
82   hr_utility.set_location('Entering:'||l_proc, 5);
83   p_rec.object_version_number := 1;  -- Initialise the object version
84   --
85   --
86   --
87   -- Insert the row into: pqh_de_ins_end_reasons
88   --
89   insert into pqh_de_ins_end_reasons
90       (ins_end_reason_id
91       ,business_group_id
92       ,provider_organization_id
93       ,end_reason_number
94       ,end_reason_short_name
95       ,end_reason_description
96       ,object_version_number
97       )
98   Values
99     (p_rec.ins_end_reason_id
100     ,p_rec.business_group_id
101     ,p_rec.provider_organization_id
102     ,p_rec.end_reason_number
103     ,p_rec.end_reason_short_name
104     ,p_rec.end_reason_description
105     ,p_rec.object_version_number
106     );
107   --
108   --
109   --
110   hr_utility.set_location(' Leaving:'||l_proc, 10);
111 Exception
112   When hr_api.check_integrity_violated Then
113     -- A check constraint has been violated
114     --
115     pqh_pre_shd.constraint_error
116       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
117   When hr_api.parent_integrity_violated Then
118     -- Parent integrity has been violated
119     --
120     pqh_pre_shd.constraint_error
121       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
122   When hr_api.unique_integrity_violated Then
123     -- Unique integrity has been violated
124     --
125     pqh_pre_shd.constraint_error
126       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
127   When Others Then
128     --
129     Raise;
130 End insert_dml;
131 --
132 -- ----------------------------------------------------------------------------
133 -- |------------------------------< pre_insert >------------------------------|
134 -- ----------------------------------------------------------------------------
135 -- {Start Of Comments}
136 --
137 -- Description:
138 --   This private procedure contains any processing which is required before
139 --   the insert dml. Presently, if the entity has a corresponding primary
140 --   key which is maintained by an associating sequence, the primary key for
141 --   the entity will be populated with the next sequence value in
142 --   preparation for the insert dml.
143 --
144 -- Prerequisites:
145 --   This is an internal procedure which is called from the ins procedure.
146 --
147 -- In Parameters:
148 --   A Pl/Sql record structure.
149 --
150 -- Post Success:
151 --   Processing continues.
152 --
153 -- Post Failure:
154 --   If an error has occurred, an error message and exception will be raised
155 --   but not handled.
156 --
157 -- Developer Implementation Notes:
158 --   Any pre-processing required before the insert dml is issued should be
159 --   coded within this procedure. As stated above, a good example is the
160 --   generation of a primary key number via a corresponding sequence.
161 --   It is important to note that any 3rd party maintenance should be reviewed
162 --   before placing in this procedure.
163 --
164 -- Access Status:
165 --   Internal Row Handler Use Only.
166 --
167 -- {End Of Comments}
168 -- ----------------------------------------------------------------------------
169 Procedure pre_insert
170   (p_rec  in out nocopy pqh_pre_shd.g_rec_type
171   ) is
172 --
173   Cursor C_Sel1 is select pqh_de_ins_end_reasons_s.nextval from sys.dual;
174 --
175   Cursor C_Sel2 is
176     Select null
177       from pqh_de_ins_end_reasons
178      where ins_end_reason_id =
179              pqh_pre_ins.g_ins_end_reason_id_i;
180 --
181   l_proc   varchar2(72) := g_package||'pre_insert';
182   l_exists varchar2(1);
183 --
184 Begin
185   hr_utility.set_location('Entering:'||l_proc, 5);
186   --
187   If (pqh_pre_ins.g_ins_end_reason_id_i is not null) Then
188     --
189     -- Verify registered primary key values not already in use
190     --
191     Open C_Sel2;
192     Fetch C_Sel2 into l_exists;
193     If C_Sel2%found Then
194        Close C_Sel2;
195        --
196        -- The primary key values are already in use.
197        --
198        fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
199        fnd_message.set_token('TABLE_NAME','pqh_de_ins_end_reasons');
200        fnd_message.raise_error;
201     End If;
202     Close C_Sel2;
203     --
204     -- Use registered key values and clear globals
205     --
206     p_rec.ins_end_reason_id :=
207       pqh_pre_ins.g_ins_end_reason_id_i;
208     pqh_pre_ins.g_ins_end_reason_id_i := null;
209   Else
210     --
211     -- No registerd key values, so select the next sequence number
212     --
213     --
214     -- Select the next sequence number
215     --
216     Open C_Sel1;
217     Fetch C_Sel1 Into p_rec.ins_end_reason_id;
218     Close C_Sel1;
219   End If;
220   --
221   hr_utility.set_location(' Leaving:'||l_proc, 10);
222 End pre_insert;
223 --
224 -- ----------------------------------------------------------------------------
225 -- |-----------------------------< post_insert >------------------------------|
226 -- ----------------------------------------------------------------------------
227 -- {Start Of Comments}
228 --
229 -- Description:
230 --   This private procedure contains any processing which is required after
231 --   the insert dml.
232 --
233 -- Prerequisites:
234 --   This is an internal procedure which is called from the ins procedure.
235 --
236 -- In Parameters:
237 --   A Pl/Sql record structre.
238 --
239 -- Post Success:
240 --   Processing continues.
241 --
242 -- Post Failure:
243 --   If an error has occurred, an error message and exception will be raised
244 --   but not handled.
245 --
246 -- Developer Implementation Notes:
247 --   Any post-processing required after the insert dml is issued should be
248 --   coded within this procedure. It is important to note that any 3rd party
249 --   maintenance should be reviewed before placing in this procedure.
250 --
251 -- Access Status:
252 --   Internal Row Handler Use Only.
253 --
254 -- {End Of Comments}
255 -- ----------------------------------------------------------------------------
256 Procedure post_insert
257   (p_rec                          in pqh_pre_shd.g_rec_type
258   ) is
259 --
260   l_proc  varchar2(72) := g_package||'post_insert';
261 --
262 Begin
263   hr_utility.set_location('Entering:'||l_proc, 5);
264   begin
265     --
266     pqh_pre_rki.after_insert
267       (p_ins_end_reason_id
268       => p_rec.ins_end_reason_id
269       ,p_business_group_id
270       => p_rec.business_group_id
271       ,p_provider_organization_id
272       => p_rec.provider_organization_id
273       ,p_end_reason_number
274       => p_rec.end_reason_number
275       ,p_end_reason_short_name
276       => p_rec.end_reason_short_name
277       ,p_end_reason_description
278       => p_rec.end_reason_description
279       ,p_object_version_number
280       => p_rec.object_version_number
281       );
282     --
283   exception
284     --
285     when hr_api.cannot_find_prog_unit then
286       --
287       hr_api.cannot_find_prog_unit_error
288         (p_module_name => 'PQH_DE_INS_END_REASONS'
289         ,p_hook_type   => 'AI');
290       --
291   end;
292   --
293   hr_utility.set_location(' Leaving:'||l_proc, 10);
294 End post_insert;
295 --
296 -- ----------------------------------------------------------------------------
297 -- |---------------------------------< ins >----------------------------------|
298 -- ----------------------------------------------------------------------------
299 Procedure ins
300   (p_rec                          in out nocopy pqh_pre_shd.g_rec_type
301   ) is
302 --
303   l_proc  varchar2(72) := g_package||'ins';
304 --
305 Begin
306   hr_utility.set_location('Entering:'||l_proc, 5);
307   --
308   -- Call the supporting insert validate operations
309   --
310   pqh_pre_bus.insert_validate
311      (p_rec
312      );
313   --
314   -- Call to raise any errors on multi-message list
315   hr_multi_message.end_validation_set;
316   --
317   -- Call the supporting pre-insert operation
318   --
319   pqh_pre_ins.pre_insert(p_rec);
320   --
321   -- Insert the row
322   --
323   pqh_pre_ins.insert_dml(p_rec);
324   --
325   -- Call the supporting post-insert operation
326   --
327   pqh_pre_ins.post_insert
328      (p_rec
329      );
330   --
331   -- Call to raise any errors on multi-message list
332   hr_multi_message.end_validation_set;
333   --
334   hr_utility.set_location('Leaving:'||l_proc, 20);
335 end ins;
336 --
337 -- ----------------------------------------------------------------------------
338 -- |---------------------------------< ins >----------------------------------|
339 -- ----------------------------------------------------------------------------
340 Procedure ins
341   (p_business_group_id              in     number
342   ,p_provider_organization_id       in     number
343   ,p_end_reason_number              in     varchar2
344   ,p_end_reason_description         in     varchar2
345   ,p_end_reason_short_name          in     varchar2 default null
346   ,p_ins_end_reason_id                 out nocopy number
347   ,p_object_version_number             out nocopy number
348   ) is
349 --
350   l_rec   pqh_pre_shd.g_rec_type;
351   l_proc  varchar2(72) := g_package||'ins';
352 --
353 Begin
354   hr_utility.set_location('Entering:'||l_proc, 5);
355   --
356   -- Call conversion function to turn arguments into the
357   -- p_rec structure.
358   --
359   l_rec :=
360   pqh_pre_shd.convert_args
361     (null
362     ,p_business_group_id
363     ,p_provider_organization_id
364     ,p_end_reason_number
365     ,p_end_reason_short_name
366     ,p_end_reason_description
367     ,null
368     );
369   --
370   -- Having converted the arguments into the pqh_pre_rec
371   -- plsql record structure we call the corresponding record business process.
372   --
373   pqh_pre_ins.ins
374      (l_rec
375      );
376   --
377   -- As the primary key argument(s)
378   -- are specified as an OUT's we must set these values.
379   --
380   p_ins_end_reason_id := l_rec.ins_end_reason_id;
381   p_object_version_number := l_rec.object_version_number;
382   --
383   hr_utility.set_location(' Leaving:'||l_proc, 10);
384 End ins;
385 --
386 end pqh_pre_ins;