DBA Data[Home] [Help]

PACKAGE BODY: APPS.PER_PJO_DEL

Source


1 Package Body per_pjo_del as
2 /* $Header: pepjorhi.pkb 120.1 2008/07/08 13:06:55 brsinha noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  per_pjo_del.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |------------------------------< delete_dml >------------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16 --   This procedure controls the actual dml delete logic. The functions of
17 --   this procedure are as follows:
18 --   1) To set and unset the g_api_dml status as required (as we are about to
19 --      perform dml).
20 --   2) To delete the specified row from the schema using the primary key in
21 --      the predicates.
22 --   3) To trap any constraint violations that may have occurred.
23 --   4) To raise any other errors.
24 --
25 -- Prerequisites:
26 --   This is an internal private procedure which must be called from the del
27 --   procedure.
28 --
29 -- In Parameters:
30 --   A Pl/Sql record structre.
31 --
32 -- Post Success:
33 --   The specified row will be delete from the schema.
34 --
35 -- Post Failure:
36 --   On the delete dml failure it is important to note that we always reset the
37 --   g_api_dml status to false.
38 --   If a child integrity constraint violation is raised the
39 --   constraint_error procedure will be called.
40 --   If any other error is reported, the error will be raised after the
41 --   g_api_dml status is reset.
42 --
43 -- Developer Implementation Notes:
44 --   None.
45 --
46 -- Access Status:
47 --   Internal Row Handler Use Only.
48 --
49 -- {End Of Comments}
50 -- ----------------------------------------------------------------------------
51 Procedure delete_dml
52   (p_rec in per_pjo_shd.g_rec_type
53   ) is
54 --
55   l_proc  varchar2(72) := g_package||'delete_dml';
56 --
57 Begin
58   hr_utility.set_location('Entering:'||l_proc, 5);
59   --
60   --
61   --
62   -- Delete the per_previous_jobs row.
63   --
64   delete from per_previous_jobs
65   where previous_job_id = p_rec.previous_job_id;
66   --
67   --
68   --
69   hr_utility.set_location(' Leaving:'||l_proc, 10);
70 --
71 Exception
72   When hr_api.child_integrity_violated then
73     -- Child integrity has been violated
74     --
75     per_pjo_shd.constraint_error
76       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
77   When Others Then
78     --
79     Raise;
80 End delete_dml;
81 --
82 -- ----------------------------------------------------------------------------
83 -- |------------------------------< pre_delete >------------------------------|
84 -- ----------------------------------------------------------------------------
85 -- {Start Of Comments}
86 --
87 -- Description:
88 --   This private procedure contains any processing which is required before
89 --   the delete dml.
90 --
91 -- Prerequisites:
92 --   This is an internal procedure which is called from the del procedure.
93 --
94 -- In Parameters:
95 --   A Pl/Sql record structre.
96 --
97 -- Post Success:
98 --   Processing continues.
99 --
100 -- Post Failure:
101 --   If an error has occurred, an error message and exception will be raised
102 --   but not handled.
103 --
104 -- Developer Implementation Notes:
105 --   Any pre-processing required before the delete dml is issued should be
106 --   coded within this procedure. It is important to note that any 3rd party
107 --   maintenance should be reviewed before placing in this procedure.
108 --
109 -- Access Status:
110 --   Internal Row Handler Use Only.
111 --
112 -- {End Of Comments}
113 -- ----------------------------------------------------------------------------
114 Procedure pre_delete(p_rec in per_pjo_shd.g_rec_type) is
115 --
116   l_proc  varchar2(72) := g_package||'pre_delete';
117 --
118 Begin
119   hr_utility.set_location('Entering:'||l_proc, 5);
120   --
121   hr_utility.set_location(' Leaving:'||l_proc, 10);
122 End pre_delete;
123 --
124 -- ----------------------------------------------------------------------------
125 -- |-----------------------------< post_delete >------------------------------|
126 -- ----------------------------------------------------------------------------
127 -- {Start Of Comments}
128 --
129 -- Description:
130 --   This private procedure contains any processing which is required after
131 --   the delete dml.
132 --
133 -- Prerequistes:
134 --   This is an internal procedure which is called from the del procedure.
135 --
136 -- In Parameters:
137 --   A Pl/Sql record structure.
138 --
139 -- Post Success:
140 --   Processing continues.
141 --
142 -- Post Failure:
143 --   If an error has occurred, an error message and exception will be raised
144 --   but not handled.
145 --
146 -- Developer Implementation Notes:
147 --   Any post-processing required after the delete dml is issued should be
148 --   coded within this procedure. It is important to note that any 3rd party
149 --   maintenance should be reviewed before placing in this procedure.
150 --
151 -- Access Status:
152 --   Internal Row Handler Use Only.
153 --
154 -- {End Of Comments}
155 -- ----------------------------------------------------------------------------
156 Procedure post_delete(p_rec in per_pjo_shd.g_rec_type) is
157 --
158   l_proc  varchar2(72) := g_package||'post_delete';
159 --
160 Begin
161   hr_utility.set_location('Entering:'||l_proc, 5);
162   begin
163     --
164     per_pjo_rkd.after_delete
165       (p_previous_job_id
166       => p_rec.previous_job_id
167       ,p_previous_employer_id_o
168       => per_pjo_shd.g_old_rec.previous_employer_id
169       ,p_start_date_o
170       => per_pjo_shd.g_old_rec.start_date
171       ,p_end_date_o
172       => per_pjo_shd.g_old_rec.end_date
173       ,p_period_years_o
174       => per_pjo_shd.g_old_rec.period_years
175       ,p_period_days_o
176       => per_pjo_shd.g_old_rec.period_days
177       ,p_job_name_o
178       => per_pjo_shd.g_old_rec.job_name
179       ,p_employment_category_o
180       => per_pjo_shd.g_old_rec.employment_category
181       ,p_description_o
182       => per_pjo_shd.g_old_rec.description
183       ,p_pjo_attribute_category_o
184       => per_pjo_shd.g_old_rec.pjo_attribute_category
185       ,p_pjo_attribute1_o
186       => per_pjo_shd.g_old_rec.pjo_attribute1
187       ,p_pjo_attribute2_o
188       => per_pjo_shd.g_old_rec.pjo_attribute2
189       ,p_pjo_attribute3_o
190       => per_pjo_shd.g_old_rec.pjo_attribute3
191       ,p_pjo_attribute4_o
192       => per_pjo_shd.g_old_rec.pjo_attribute4
193       ,p_pjo_attribute5_o
194       => per_pjo_shd.g_old_rec.pjo_attribute5
195       ,p_pjo_attribute6_o
196       => per_pjo_shd.g_old_rec.pjo_attribute6
197       ,p_pjo_attribute7_o
198       => per_pjo_shd.g_old_rec.pjo_attribute7
199       ,p_pjo_attribute8_o
203       ,p_pjo_attribute10_o
200       => per_pjo_shd.g_old_rec.pjo_attribute8
201       ,p_pjo_attribute9_o
202       => per_pjo_shd.g_old_rec.pjo_attribute9
204       => per_pjo_shd.g_old_rec.pjo_attribute10
205       ,p_pjo_attribute11_o
206       => per_pjo_shd.g_old_rec.pjo_attribute11
207       ,p_pjo_attribute12_o
208       => per_pjo_shd.g_old_rec.pjo_attribute12
209       ,p_pjo_attribute13_o
210       => per_pjo_shd.g_old_rec.pjo_attribute13
211       ,p_pjo_attribute14_o
212       => per_pjo_shd.g_old_rec.pjo_attribute14
213       ,p_pjo_attribute15_o
214       => per_pjo_shd.g_old_rec.pjo_attribute15
215       ,p_pjo_attribute16_o
216       => per_pjo_shd.g_old_rec.pjo_attribute16
217       ,p_pjo_attribute17_o
218       => per_pjo_shd.g_old_rec.pjo_attribute17
219       ,p_pjo_attribute18_o
220       => per_pjo_shd.g_old_rec.pjo_attribute18
221       ,p_pjo_attribute19_o
222       => per_pjo_shd.g_old_rec.pjo_attribute19
223       ,p_pjo_attribute20_o
224       => per_pjo_shd.g_old_rec.pjo_attribute20
225       ,p_pjo_attribute21_o
226       => per_pjo_shd.g_old_rec.pjo_attribute21
227       ,p_pjo_attribute22_o
228       => per_pjo_shd.g_old_rec.pjo_attribute22
229       ,p_pjo_attribute23_o
230       => per_pjo_shd.g_old_rec.pjo_attribute23
231       ,p_pjo_attribute24_o
232       => per_pjo_shd.g_old_rec.pjo_attribute24
233       ,p_pjo_attribute25_o
234       => per_pjo_shd.g_old_rec.pjo_attribute25
235       ,p_pjo_attribute26_o
236       => per_pjo_shd.g_old_rec.pjo_attribute26
237       ,p_pjo_attribute27_o
238       => per_pjo_shd.g_old_rec.pjo_attribute27
239       ,p_pjo_attribute28_o
240       => per_pjo_shd.g_old_rec.pjo_attribute28
241       ,p_pjo_attribute29_o
242       => per_pjo_shd.g_old_rec.pjo_attribute29
243       ,p_pjo_attribute30_o
244       => per_pjo_shd.g_old_rec.pjo_attribute30
245       ,p_pjo_information_category_o
246       => per_pjo_shd.g_old_rec.pjo_information_category
247       ,p_pjo_information1_o
248       => per_pjo_shd.g_old_rec.pjo_information1
249       ,p_pjo_information2_o
250       => per_pjo_shd.g_old_rec.pjo_information2
251       ,p_pjo_information3_o
252       => per_pjo_shd.g_old_rec.pjo_information3
253       ,p_pjo_information4_o
254       => per_pjo_shd.g_old_rec.pjo_information4
255       ,p_pjo_information5_o
256       => per_pjo_shd.g_old_rec.pjo_information5
257       ,p_pjo_information6_o
258       => per_pjo_shd.g_old_rec.pjo_information6
259       ,p_pjo_information7_o
260       => per_pjo_shd.g_old_rec.pjo_information7
261       ,p_pjo_information8_o
262       => per_pjo_shd.g_old_rec.pjo_information8
263       ,p_pjo_information9_o
264       => per_pjo_shd.g_old_rec.pjo_information9
265       ,p_pjo_information10_o
266       => per_pjo_shd.g_old_rec.pjo_information10
267       ,p_pjo_information11_o
268       => per_pjo_shd.g_old_rec.pjo_information11
269       ,p_pjo_information12_o
270       => per_pjo_shd.g_old_rec.pjo_information12
271       ,p_pjo_information13_o
272       => per_pjo_shd.g_old_rec.pjo_information13
273       ,p_pjo_information14_o
274       => per_pjo_shd.g_old_rec.pjo_information14
275       ,p_pjo_information15_o
276       => per_pjo_shd.g_old_rec.pjo_information15
277       ,p_pjo_information16_o
278       => per_pjo_shd.g_old_rec.pjo_information16
279       ,p_pjo_information17_o
280       => per_pjo_shd.g_old_rec.pjo_information17
281       ,p_pjo_information18_o
282       => per_pjo_shd.g_old_rec.pjo_information18
283       ,p_pjo_information19_o
284       => per_pjo_shd.g_old_rec.pjo_information19
285       ,p_pjo_information20_o
286       => per_pjo_shd.g_old_rec.pjo_information20
287       ,p_pjo_information21_o
288       => per_pjo_shd.g_old_rec.pjo_information21
289       ,p_pjo_information22_o
290       => per_pjo_shd.g_old_rec.pjo_information22
291       ,p_pjo_information23_o
292       => per_pjo_shd.g_old_rec.pjo_information23
293       ,p_pjo_information24_o
294       => per_pjo_shd.g_old_rec.pjo_information24
295       ,p_pjo_information25_o
296       => per_pjo_shd.g_old_rec.pjo_information25
297       ,p_pjo_information26_o
298       => per_pjo_shd.g_old_rec.pjo_information26
299       ,p_pjo_information27_o
300       => per_pjo_shd.g_old_rec.pjo_information27
301       ,p_pjo_information28_o
302       => per_pjo_shd.g_old_rec.pjo_information28
303       ,p_pjo_information29_o
304       => per_pjo_shd.g_old_rec.pjo_information29
305       ,p_pjo_information30_o
306       => per_pjo_shd.g_old_rec.pjo_information30
307       ,p_object_version_number_o
308       => per_pjo_shd.g_old_rec.object_version_number
309       ,p_all_assignments_o
310       => per_pjo_shd.g_old_rec.all_assignments
311       ,p_period_months_o
312       => per_pjo_shd.g_old_rec.period_months
313       );
314     --
315   exception
316     --
317     when hr_api.cannot_find_prog_unit then
318       --
319       hr_api.cannot_find_prog_unit_error
320         (p_module_name => 'PER_PREVIOUS_JOBS'
321         ,p_hook_type   => 'AD');
322       --
323   end;
324   --
325   hr_utility.set_location(' Leaving:'||l_proc, 10);
326 End post_delete;
327 --
328 -- ----------------------------------------------------------------------------
329 -- |---------------------------------< del >----------------------------------|
330 -- ----------------------------------------------------------------------------
331 Procedure del
332   (p_rec              in per_pjo_shd.g_rec_type
333   ) is
334 --
335   l_proc  varchar2(72) := g_package||'del';
336 --
337 Begin
338   hr_utility.set_location('Entering:'||l_proc, 5);
339   --
340   -- We must lock the row which we need to delete.
341   --
342   per_pjo_shd.lck
343     (p_rec.previous_job_id
344     ,p_rec.object_version_number
345     );
346   --
347   -- Call the supporting delete validate operation
348   --
349   per_pjo_bus.delete_validate(p_rec);
350   --
351   -- Call to raise any errors on multi-message list
352   hr_multi_message.end_validation_set;
353   -- Call the supporting pre-delete operation
354   --
355   per_pjo_del.pre_delete(p_rec);
356   --
357   -- Delete the row.
358   --
359   per_pjo_del.delete_dml(p_rec);
360   --
361   -- Call the supporting post-delete operation
362   --
363   per_pjo_del.post_delete(p_rec);
364   --
365   -- Call to raise any errors on multi-message list
366   hr_multi_message.end_validation_set;
367 End del;
368 --
369 -- ----------------------------------------------------------------------------
370 -- |---------------------------------< del >----------------------------------|
371 -- ----------------------------------------------------------------------------
372 Procedure del
373   (p_previous_job_id                      in     number
374   ,p_object_version_number                in     number
375   ) is
376 --
377   l_rec   per_pjo_shd.g_rec_type;
378   l_proc  varchar2(72) := g_package||'del';
379 --
380 Begin
381   hr_utility.set_location('Entering:'||l_proc, 5);
382   --
383   -- As the delete procedure accepts a plsql record structure we do need to
384   -- convert the  arguments into the record structure.
385   -- We don't need to call the supplied conversion argument routine as we
386   -- only need a few attributes.
387   --
388   l_rec.previous_job_id := p_previous_job_id;
389   l_rec.object_version_number := p_object_version_number;
390   --
391   -- Having converted the arguments into the per_pjo_rec
392   -- plsql record structure we must call the corresponding entity
393   -- business process
394   --
395   per_pjo_del.del(l_rec);
396   --
397   hr_utility.set_location(' Leaving:'||l_proc, 10);
398 End del;
399 --
400 end per_pjo_del;