DBA Data[Home] [Help]

PACKAGE BODY: APPS.GHR_CPL_INS

Source


1 Package Body ghr_cpl_ins as
2 /* $Header: ghcplrhi.pkb 115.1 2003/01/30 19:25:27 asubrahm noship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33) := '  ghr_cpl_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_compl_person_id_i  number   default null;
14 --
15 -- ----------------------------------------------------------------------------
16 -- |------------------------< set_base_key_value >----------------------------|
17 -- ----------------------------------------------------------------------------
18 procedure set_base_key_value
19   (p_compl_person_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   ghr_cpl_ins.g_compl_person_id_i := p_compl_person_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 ghr_cpl_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
87   -- Insert the row into: ghr_compl_people
84   --
85   --
86   --
88   --
89   insert into ghr_compl_people
90       (compl_person_id
91       ,person_id
92       ,complaint_id
93       ,role_code
94       ,start_date
95       ,end_date
96       ,object_version_number
97       )
98   Values
99     (p_rec.compl_person_id
100     ,p_rec.person_id
101     ,p_rec.complaint_id
102     ,p_rec.role_code
103     ,p_rec.start_date
104     ,p_rec.end_date
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     ghr_cpl_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     ghr_cpl_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     ghr_cpl_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 ghr_cpl_shd.g_rec_type
171   ) is
172 --
173   Cursor C_Sel1 is select ghr_compl_people_s.nextval from sys.dual;
174 --
175   Cursor C_Sel2 is
176     Select null
177       from ghr_compl_people
178      where compl_person_id =
179              ghr_cpl_ins.g_compl_person_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 (ghr_cpl_ins.g_compl_person_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','ghr_compl_people');
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.compl_person_id :=
207       ghr_cpl_ins.g_compl_person_id_i;
208     ghr_cpl_ins.g_compl_person_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.compl_person_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_effective_date               in date
258   ,p_rec                          in ghr_cpl_shd.g_rec_type
259   ) is
260 --
261   l_proc  varchar2(72) := g_package||'post_insert';
262 --
263 Begin
264   hr_utility.set_location('Entering:'||l_proc, 5);
265   begin
266     --
267     ghr_cpl_rki.after_insert
268       (p_effective_date              => p_effective_date
269       ,p_compl_person_id             => p_rec.compl_person_id
270       ,p_person_id                   => p_rec.person_id
271       ,p_complaint_id                => p_rec.complaint_id
272       ,p_role_code                   => p_rec.role_code
273       ,p_start_date                  => p_rec.start_date
274       ,p_end_date                    => p_rec.end_date
275       ,p_object_version_number       => p_rec.object_version_number
276       );
277     --
278   exception
279     --
280     when hr_api.cannot_find_prog_unit then
281       --
282       hr_api.cannot_find_prog_unit_error
283         (p_module_name => 'GHR_COMPL_PEOPLE'
284         ,p_hook_type   => 'AI');
285       --
286   end;
287   --
288   hr_utility.set_location(' Leaving:'||l_proc, 10);
289 End post_insert;
290 --
291 -- ----------------------------------------------------------------------------
292 -- |---------------------------------< ins >----------------------------------|
293 -- ----------------------------------------------------------------------------
294 Procedure ins
295   (p_effective_date               in date
296   ,p_rec                          in out nocopy ghr_cpl_shd.g_rec_type
297   ) is
298 --
299   l_proc  varchar2(72) := g_package||'ins';
300 --
301 Begin
302   hr_utility.set_location('Entering:'||l_proc, 5);
303   --
304   -- Call the supporting insert validate operations
305   --
306   ghr_cpl_bus.insert_validate
307      (p_effective_date
308      ,p_rec
309      );
310   --
311   -- Call the supporting pre-insert operation
312   --
313   ghr_cpl_ins.pre_insert(p_rec);
314   --
315   -- Insert the row
316   --
317   ghr_cpl_ins.insert_dml(p_rec);
318   --
319   -- Call the supporting post-insert operation
320   --
321   ghr_cpl_ins.post_insert
322      (p_effective_date
323      ,p_rec
324      );
325   --
326   hr_utility.set_location('Leaving:'||l_proc, 20);
327 end ins;
328 --
329 -- ----------------------------------------------------------------------------
330 -- |---------------------------------< ins >----------------------------------|
331 -- ----------------------------------------------------------------------------
332 Procedure ins
333   (p_effective_date               in     date
334   ,p_person_id                      in     number
335   ,p_complaint_id                   in     number
336   ,p_role_code                      in     varchar2 default null
337   ,p_start_date                     in     date     default null
338   ,p_end_date                       in     date     default null
339   ,p_compl_person_id                   out nocopy number
340   ,p_object_version_number             out nocopy number
341   ) is
342 --
343   l_rec   ghr_cpl_shd.g_rec_type;
344   l_proc  varchar2(72) := g_package||'ins';
345 --
346 Begin
347   hr_utility.set_location('Entering:'||l_proc, 5);
348   --
349   -- Call conversion function to turn arguments into the
350   -- p_rec structure.
351   --
352   l_rec :=
353   ghr_cpl_shd.convert_args
354     (null
355     ,p_person_id
356     ,p_complaint_id
357     ,p_role_code
358     ,p_start_date
359     ,p_end_date
360     ,null
361     );
362   --
363   -- Having converted the arguments into the ghr_cpl_rec
364   -- plsql record structure we call the corresponding record business process.
365   --
366   ghr_cpl_ins.ins
367      (p_effective_date
368      ,l_rec
369      );
370   --
371   -- As the primary key argument(s)
372   -- are specified as an OUT's we must set these values.
373   --
374   p_compl_person_id := l_rec.compl_person_id;
375   p_object_version_number := l_rec.object_version_number;
376   --
377   hr_utility.set_location(' Leaving:'||l_proc, 10);
378 End ins;
379 --
380 end ghr_cpl_ins;