DBA Data[Home] [Help]

PACKAGE BODY: APPS.PER_PSV_UPD

Source


1 Package Body per_psv_upd as
2 /* $Header: pepsvrhi.pkb 115.7 2002/12/05 09:55:22 eumenyio noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  per_psv_upd.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |------------------------------< update_dml >------------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16 --   This procedure controls the actual dml update logic. The processing of
17 --   this procedure is:
18 --   1) Increment the object_version_number by 1 if the object_version_number
19 --      is defined as an attribute for this entity.
20 --   2) To set and unset the g_api_dml status as required (as we are about to
21 --      perform dml).
22 --   3) To update the specified row in the schema using the primary key in
23 --      the predicates.
24 --   4) To trap any constraint violations that may have occurred.
25 --   5) To raise any other errors.
26 --
27 -- Prerequisites:
28 --   This is an internal private procedure which must be called from the upd
29 --   procedure.
30 --
31 -- In Parameters:
32 --   A Pl/Sql record structre.
33 --
34 -- Post Success:
35 --   The specified row will be updated in the schema.
36 --
37 -- Post Failure:
38 --   On the update dml failure it is important to note that we always reset the
39 --   g_api_dml status to false.
40 --   If a check, unique or parent integrity constraint violation is raised the
41 --   constraint_error procedure will be called.
42 --   If any other error is reported, the error will be raised after the
43 --   g_api_dml status is reset.
44 --
45 -- Developer Implementation Notes:
46 --   The update 'set' attribute list should be modified if any of your
47 --   attributes are not updateable.
48 --
49 -- Access Status:
50 --   Internal Row Handler Use Only.
51 --
52 -- {End Of Comments}
53 -- ----------------------------------------------------------------------------
54 Procedure update_dml
55   (p_rec in out nocopy per_psv_shd.g_rec_type
56   ) is
57 --
58   l_proc  varchar2(72) := g_package||'update_dml';
59 --
60 Begin
61   hr_utility.set_location('Entering:'||l_proc, 5);
62   --
63   -- Increment the object version
64   p_rec.object_version_number := p_rec.object_version_number + 1;
65   --
66   per_psv_shd.g_api_dml := true;  -- Set the api dml status
67   --
68   -- Update the per_pos_structure_versions Row
69   --
70   update per_pos_structure_versions
71     set
72      pos_structure_version_id        = p_rec.pos_structure_version_id
73     ,business_group_id               = p_rec.business_group_id
74     ,position_structure_id           = p_rec.position_structure_id
75     ,date_from                       = p_rec.date_from
76     ,version_number                  = p_rec.version_number
77     ,copy_structure_version_id       = p_rec.copy_structure_version_id
78     ,date_to                         = p_rec.date_to
79     ,request_id                      = p_rec.request_id
80     ,program_application_id          = p_rec.program_application_id
81     ,program_id                      = p_rec.program_id
82     ,program_update_date             = p_rec.program_update_date
83     ,object_version_number           = p_rec.object_version_number
84     where pos_structure_version_id = p_rec.pos_structure_version_id;
85   --
86   per_psv_shd.g_api_dml := false;   -- Unset the api dml status
87   --
88   hr_utility.set_location(' Leaving:'||l_proc, 10);
89 --
90 Exception
91   When hr_api.check_integrity_violated Then
92     -- A check constraint has been violated
93     per_psv_shd.g_api_dml := false;   -- Unset the api dml status
94     per_psv_shd.constraint_error
95       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96   When hr_api.parent_integrity_violated Then
97     -- Parent integrity has been violated
98     per_psv_shd.g_api_dml := false;   -- Unset the api dml status
99     per_psv_shd.constraint_error
100       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101   When hr_api.unique_integrity_violated Then
102     -- Unique integrity has been violated
103     per_psv_shd.g_api_dml := false;   -- Unset the api dml status
104     per_psv_shd.constraint_error
105       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
106   When Others Then
107     per_psv_shd.g_api_dml := false;   -- Unset the api dml status
108     Raise;
109 End update_dml;
110 --
111 -- ----------------------------------------------------------------------------
112 -- |------------------------------< pre_update >------------------------------|
113 -- ----------------------------------------------------------------------------
114 -- {Start Of Comments}
115 --
116 -- Description:
117 --   This private procedure contains any processing which is required before
118 --   the update dml.
119 --
120 -- Prerequisites:
121 --   This is an internal procedure which is called from the upd procedure.
122 --
123 -- In Parameters:
124 --   A Pl/Sql record structure.
125 --
126 -- Post Success:
127 --   Processing continues.
128 --
129 -- Post Failure:
130 --   If an error has occurred, an error message and exception wil be raised
131 --   but not handled.
132 --
133 -- Developer Implementation Notes:
134 --   Any pre-processing required before the update dml is issued should be
135 --   coded within this procedure. It is important to note that any 3rd party
136 --   maintenance should be reviewed before placing in this procedure.
137 --
138 -- Access Status:
139 --   Internal Row Handler Use Only.
140 --
141 -- {End Of Comments}
142 -- ----------------------------------------------------------------------------
143 Procedure pre_update
144   (p_rec in per_psv_shd.g_rec_type
145   ) is
146 --
147   l_proc  varchar2(72) := g_package||'pre_update';
148 --
149 Begin
150   hr_utility.set_location('Entering:'||l_proc, 5);
151   --
152   hr_utility.set_location(' Leaving:'||l_proc, 10);
153 End pre_update;
154 --
155 -- ----------------------------------------------------------------------------
156 -- |-----------------------------< post_update >------------------------------|
157 -- ----------------------------------------------------------------------------
158 -- {Start Of Comments}
159 --
160 -- Description:
161 --   This private procedure contains any processing which is required after
162 --   the update dml.
163 --
164 -- Prerequisites:
165 --   This is an internal procedure which is called from the upd procedure.
166 --
167 -- In Parameters:
168 --   A Pl/Sql record structure.
169 --
170 -- Post Success:
171 --   Processing continues.
172 --
173 -- Post Failure:
174 --   If an error has occurred, an error message and exception will be raised
175 --   but not handled.
176 --
177 -- Developer Implementation Notes:
178 --   Any post-processing required after the update dml is issued should be
179 --   coded within this procedure. It is important to note that any 3rd party
180 --   maintenance should be reviewed before placing in this procedure.
181 --
182 -- Access Status:
183 --   Internal Row Handler Use Only.
184 --
185 -- {End Of Comments}
186 -- ----------------------------------------------------------------------------
187 Procedure post_update
188   (p_effective_date               in date
189   ,p_rec                          in per_psv_shd.g_rec_type
190   ) is
191 --
192   l_proc  varchar2(72) := g_package||'post_update';
193 --
194 Begin
195   hr_utility.set_location('Entering:'||l_proc, 5);
196   begin
197     --
198     per_psv_rku.after_update
199       (p_effective_date              => p_effective_date
200       ,p_pos_structure_version_id
201       => p_rec.pos_structure_version_id
202       ,p_business_group_id
203       => p_rec.business_group_id
204       ,p_position_structure_id
205       => p_rec.position_structure_id
206       ,p_date_from
207       => p_rec.date_from
208       ,p_version_number
209       => p_rec.version_number
210       ,p_copy_structure_version_id
211       => p_rec.copy_structure_version_id
212       ,p_date_to
213       => p_rec.date_to
214       ,p_request_id
215       => p_rec.request_id
216       ,p_program_application_id
217       => p_rec.program_application_id
218       ,p_program_id
219       => p_rec.program_id
220       ,p_program_update_date
221       => p_rec.program_update_date
222       ,p_object_version_number
223       => p_rec.object_version_number
224       ,p_business_group_id_o
225       => per_psv_shd.g_old_rec.business_group_id
226       ,p_position_structure_id_o
227       => per_psv_shd.g_old_rec.position_structure_id
228       ,p_date_from_o
229       => per_psv_shd.g_old_rec.date_from
230       ,p_version_number_o
231       => per_psv_shd.g_old_rec.version_number
232       ,p_copy_structure_version_id_o
233       => per_psv_shd.g_old_rec.copy_structure_version_id
234       ,p_date_to_o
235       => per_psv_shd.g_old_rec.date_to
236       ,p_request_id_o
237       => per_psv_shd.g_old_rec.request_id
238       ,p_program_application_id_o
239       => per_psv_shd.g_old_rec.program_application_id
240       ,p_program_id_o
241       => per_psv_shd.g_old_rec.program_id
242       ,p_program_update_date_o
243       => per_psv_shd.g_old_rec.program_update_date
244       ,p_object_version_number_o
245       => per_psv_shd.g_old_rec.object_version_number
246       );
247     --
248   exception
249     --
250     when hr_api.cannot_find_prog_unit then
251       --
252       hr_api.cannot_find_prog_unit_error
253         (p_module_name => 'PER_POS_STRUCTURE_VERSIONS'
254         ,p_hook_type   => 'AU');
255       --
256   end;
257   --
258   hr_utility.set_location(' Leaving:'||l_proc, 10);
259 End post_update;
260 --
261 -- ----------------------------------------------------------------------------
262 -- |-----------------------------< convert_defs >-----------------------------|
263 -- ----------------------------------------------------------------------------
264 -- {Start Of Comments}
265 --
266 -- Description:
267 --   The Convert_Defs procedure has one very important function:
268 --   It must return the record structure for the row with all system defaulted
269 --   values converted into its corresponding parameter value for update. When
270 --   we attempt to update a row through the Upd process , certain
271 --   parameters can be defaulted which enables flexibility in the calling of
272 --   the upd process (e.g. only attributes which need to be updated need to be
273 --   specified). For the upd process to determine which attributes
274 --   have NOT been specified we need to check if the parameter has a reserved
275 --   system default value. Therefore, for all parameters which have a
276 --   corresponding reserved system default mechanism specified we need to
277 --   check if a system default is being used. If a system default is being
278 --   used then we convert the defaulted value into its corresponding attribute
279 --   value held in the g_old_rec data structure.
280 --
281 -- Prerequisites:
282 --   This private function can only be called from the upd process.
283 --
284 -- In Parameters:
285 --   A Pl/Sql record structure.
286 --
287 -- Post Success:
288 --   The record structure will be returned with all system defaulted parameter
289 --   values converted into its current row attribute value.
290 --
291 -- Post Failure:
292 --   No direct error handling is required within this function. Any possible
293 --   errors within this procedure will be a PL/SQL value error due to
294 --   conversion of datatypes or data lengths.
295 --
296 -- Developer Implementation Notes:
297 --   None.
298 --
299 -- Access Status:
300 --   Internal Row Handler Use Only.
301 --
302 -- {End Of Comments}
303 -- ----------------------------------------------------------------------------
304 Procedure convert_defs
305   (p_rec in out nocopy per_psv_shd.g_rec_type
306   ) is
307 --
308 Begin
309   --
310   -- We must now examine each argument value in the
311   -- p_rec plsql record structure
312   -- to see if a system default is being used. If a system default
313   -- is being used then we must set to the 'current' argument value.
314   --
315   If (p_rec.business_group_id = hr_api.g_number) then
316     p_rec.business_group_id :=
317     per_psv_shd.g_old_rec.business_group_id;
318   End If;
319   If (p_rec.position_structure_id = hr_api.g_number) then
320     p_rec.position_structure_id :=
321     per_psv_shd.g_old_rec.position_structure_id;
322   End If;
323   If (p_rec.date_from = hr_api.g_date) then
324     p_rec.date_from :=
325     per_psv_shd.g_old_rec.date_from;
326   End If;
327   If (p_rec.version_number = hr_api.g_number) then
328     p_rec.version_number :=
329     per_psv_shd.g_old_rec.version_number;
330   End If;
331   If (p_rec.copy_structure_version_id = hr_api.g_number) then
332     p_rec.copy_structure_version_id :=
333     per_psv_shd.g_old_rec.copy_structure_version_id;
334   End If;
335   If (p_rec.date_to = hr_api.g_date) then
336     p_rec.date_to :=
337     per_psv_shd.g_old_rec.date_to;
338   End If;
339   If (p_rec.request_id = hr_api.g_number) then
340     p_rec.request_id :=
341     per_psv_shd.g_old_rec.request_id;
342   End If;
343   If (p_rec.program_application_id = hr_api.g_number) then
344     p_rec.program_application_id :=
345     per_psv_shd.g_old_rec.program_application_id;
346   End If;
347   If (p_rec.program_id = hr_api.g_number) then
348     p_rec.program_id :=
349     per_psv_shd.g_old_rec.program_id;
350   End If;
351   If (p_rec.program_update_date = hr_api.g_date) then
352     p_rec.program_update_date :=
353     per_psv_shd.g_old_rec.program_update_date;
354   End If;
355   --
356 End convert_defs;
357 --
358 -- ----------------------------------------------------------------------------
359 -- |---------------------------------< upd >----------------------------------|
360 -- ----------------------------------------------------------------------------
361 Procedure upd
362   (p_effective_date               in date
363   ,p_rec                          in out nocopy per_psv_shd.g_rec_type
364   ,p_gap_warning                     out nocopy boolean
365   ) is
366 --
367   l_proc  varchar2(72) := g_package||'upd';
368 --
369 Begin
370   hr_utility.set_location('Entering:'||l_proc, 5);
371   --
372   -- We must lock the row which we need to update.
373   --
374   per_psv_shd.lck
375     (p_rec.pos_structure_version_id
376     ,p_rec.object_version_number
377     );
378   --
379   -- 1. During an update system defaults are used to determine if
380   --    arguments have been defaulted or not. We must therefore
381   --    derive the full record structure values to be updated.
382   --
383   -- 2. Call the supporting update validate operations.
384   --
385   convert_defs(p_rec);
386   per_psv_bus.update_validate
387      (p_effective_date
388      ,p_rec
389      ,p_gap_warning
390      );
391   --
392   -- Call the supporting pre-update operation
393   --
394   per_psv_upd.pre_update(p_rec);
395   --
396   -- Update the row.
397   --
398   per_psv_upd.update_dml(p_rec);
399   --
400   -- Call the supporting post-update operation
401   --
402   per_psv_upd.post_update
403      (p_effective_date
404      ,p_rec
405      );
406 End upd;
407 --
408 -- ----------------------------------------------------------------------------
409 -- |---------------------------------< upd >----------------------------------|
410 -- ----------------------------------------------------------------------------
411 Procedure upd
412   (p_effective_date               in     date
413   ,p_pos_structure_version_id     in     number
414   ,p_position_structure_id        in     number    default hr_api.g_number
415   ,p_date_from                    in     date      default hr_api.g_date
416   ,p_version_number               in     number    default hr_api.g_number
417   ,p_copy_structure_version_id    in     number    default hr_api.g_number
418   ,p_date_to                      in     date      default hr_api.g_date
419   ,p_request_id                   in     number    default hr_api.g_number
420   ,p_program_application_id       in     number    default hr_api.g_number
421   ,p_program_id                   in     number    default hr_api.g_number
422   ,p_program_update_date          in     date      default hr_api.g_date
423   ,p_object_version_number        in out nocopy number
424   ,p_gap_warning                  out nocopy    boolean
425 ) is
426 --
427   l_rec   per_psv_shd.g_rec_type;
428   l_proc  varchar2(72) := g_package||'upd';
429 --
430 Begin
431   hr_utility.set_location('Entering:'||l_proc, 5);
432   --
433   -- Call conversion function to turn arguments into the
434   -- l_rec structure.
435   --
436   l_rec :=
437   per_psv_shd.convert_args
438   (p_pos_structure_version_id
439   ,hr_api.g_number
440   ,p_position_structure_id
441   ,p_date_from
442   ,p_version_number
443   ,p_copy_structure_version_id
444   ,p_date_to
445   ,p_request_id
446   ,p_program_application_id
447   ,p_program_id
448   ,p_program_update_date
449   ,p_object_version_number
450   );
451   --
452   -- Having converted the arguments into the
453   -- plsql record structure we call the corresponding record
454   -- business process.
455   --
456   per_psv_upd.upd
457      (p_effective_date
458      ,l_rec
459      ,p_gap_warning
460      );
461   p_object_version_number := l_rec.object_version_number;
462   --
463   hr_utility.set_location(' Leaving:'||l_proc, 10);
464 End upd;
465 --
466 end per_psv_upd;