DBA Data[Home] [Help]

PACKAGE BODY: APPS.BEN_CTU_INS

Source


1 Package Body ben_ctu_ins as
2 /* $Header: becturhi.pkb 115.10 2002/12/16 17:35:35 glingapp ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33)	:= '  ben_ctu_ins.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |----------------------------< dt_insert_dml >-----------------------------|
12 -- ----------------------------------------------------------------------------
13 -- {Start Of Comments}
14 --
15 -- Description:
16 --   This procedure controls the actual dml insert logic for datetrack. The
17 --   functions of this procedure are as follows:
18 --   1) Get the object_version_number.
19 --   2) To set the effective start and end dates to the corresponding
20 --      validation start and end dates. Also, the object version number
21 --      record attribute is set.
22 --   3) To set and unset the g_api_dml status as required (as we are about to
23 --      perform dml).
24 --   4) To insert the row into the schema with the derived effective start
25 --      and end dates and the object version number.
26 --   5) To trap any constraint violations that may have occurred.
27 --   6) To raise any other errors.
28 --
29 -- Prerequisites:
30 --   This is an internal private procedure which must be called from the
31 --   insert_dml and pre_update (logic permitting) procedure and must have
32 --   all mandatory arguments set.
33 --
34 -- In Parameters:
35 --   A Pl/Sql record structre.
36 --
37 -- Post Success:
38 --   The specified row will be inserted into the schema.
39 --
40 -- Post Failure:
41 --   On the insert dml failure it is important to note that we always reset the
42 --   g_api_dml status to false.
43 --   If a check or unique integrity constraint violation is raised the
44 --   constraint_error procedure will be called.
45 --   If any other error is reported, the error will be raised after the
46 --   g_api_dml status is reset.
47 --
48 -- Developer Implementation Notes:
49 --   This is an internal datetrack maintenance procedure which should
50 --   not be modified in anyway.
51 --
52 -- Access Status:
53 --   Internal Row Handler Use Only.
54 --
55 -- {End Of Comments}
56 -- ----------------------------------------------------------------------------
57 Procedure dt_insert_dml
58 	(p_rec 			 in out nocopy ben_ctu_shd.g_rec_type,
59 	 p_effective_date	 in	date,
60 	 p_datetrack_mode	 in	varchar2,
61 	 p_validation_start_date in	date,
62 	 p_validation_end_date	 in	date) is
63 --
64 -- Cursor to select 'old' created AOL who column values
65 --
66   Cursor C_Sel1 Is
67     select t.created_by,
68            t.creation_date
69     from   ben_cm_typ_usg_f t
70     where  t.cm_typ_usg_id       = p_rec.cm_typ_usg_id
71     and    t.effective_start_date =
72              ben_ctu_shd.g_old_rec.effective_start_date
73     and    t.effective_end_date   = (p_validation_start_date - 1);
74 --
75   l_proc		varchar2(72) := g_package||'dt_insert_dml';
76   l_created_by          ben_cm_typ_usg_f.created_by%TYPE;
77   l_creation_date       ben_cm_typ_usg_f.creation_date%TYPE;
78   l_last_update_date   	ben_cm_typ_usg_f.last_update_date%TYPE;
79   l_last_updated_by     ben_cm_typ_usg_f.last_updated_by%TYPE;
80   l_last_update_login   ben_cm_typ_usg_f.last_update_login%TYPE;
81 --
82 Begin
83   hr_utility.set_location('Entering:'||l_proc, 5);
84   --
85   -- Get the object version number for the insert
86   --
87   p_rec.object_version_number :=
88     dt_api.get_object_version_number
89 	(p_base_table_name => 'ben_cm_typ_usg_f',
90 	 p_base_key_column => 'cm_typ_usg_id',
91 	 p_base_key_value  => p_rec.cm_typ_usg_id);
92   --
93   -- Set the effective start and end dates to the corresponding
94   -- validation start and end dates
95   --
96   p_rec.effective_start_date := p_validation_start_date;
97   p_rec.effective_end_date   := p_validation_end_date;
98   --
99   -- If the datetrack_mode is not INSERT then we must populate the WHO
100   -- columns with the 'old' creation values and 'new' updated values.
101   --
102   If (p_datetrack_mode <> 'INSERT') then
103     hr_utility.set_location(l_proc, 10);
104     --
105     -- Select the 'old' created values
106     --
107     Open C_Sel1;
108     Fetch C_Sel1 Into l_created_by, l_creation_date;
109     If C_Sel1%notfound Then
110       --
111       -- The previous 'old' created row has not been found. We need
112       -- to error as an internal datetrack problem exists.
113       --
114       Close C_Sel1;
115       hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
116       hr_utility.set_message_token('PROCEDURE', l_proc);
117       hr_utility.set_message_token('STEP','10');
118       hr_utility.raise_error;
119     End If;
120     Close C_Sel1;
121     --
122     -- Set the AOL updated WHO values
123     --
124     l_last_update_date   := sysdate;
125     l_last_updated_by    := fnd_global.user_id;
126     l_last_update_login  := fnd_global.login_id;
127   End If;
128   --
129   ben_ctu_shd.g_api_dml := true;  -- Set the api dml status
130   --
131   -- Insert the row into: ben_cm_typ_usg_f
132   --
133   insert into ben_cm_typ_usg_f
134   (	cm_typ_usg_id,
135 	effective_start_date,
136 	effective_end_date,
137 	all_r_any_cd,
138 	cm_usg_rl,
139         descr_text,
140 	pgm_id,
141 	pl_id,
142         pl_typ_id,
143 	enrt_perd_id,
144 	actn_typ_id,
145 	cm_typ_id,
146 	ler_id,
147 	business_group_id,
148 	ctu_attribute_category,
149 	ctu_attribute1,
150 	ctu_attribute2,
151 	ctu_attribute3,
152 	ctu_attribute4,
153 	ctu_attribute5,
154 	ctu_attribute6,
155 	ctu_attribute7,
156 	ctu_attribute8,
157 	ctu_attribute9,
158 	ctu_attribute10,
159 	ctu_attribute11,
160 	ctu_attribute12,
161 	ctu_attribute13,
162 	ctu_attribute14,
163 	ctu_attribute15,
164 	ctu_attribute16,
165 	ctu_attribute17,
166 	ctu_attribute18,
167 	ctu_attribute19,
168 	ctu_attribute20,
169 	ctu_attribute21,
170 	ctu_attribute22,
171 	ctu_attribute23,
172 	ctu_attribute24,
173 	ctu_attribute25,
174 	ctu_attribute26,
175 	ctu_attribute27,
176 	ctu_attribute28,
177 	ctu_attribute29,
178 	ctu_attribute30,
179 	object_version_number
180    	, created_by,
181    	creation_date,
182    	last_update_date,
183    	last_updated_by,
184    	last_update_login
185   )
186   Values
187   (	p_rec.cm_typ_usg_id,
188 	p_rec.effective_start_date,
189 	p_rec.effective_end_date,
190 	p_rec.all_r_any_cd,
191 	p_rec.cm_usg_rl,
192         p_rec.descr_text,
193 	p_rec.pgm_id,
194 	p_rec.pl_id,
195         p_rec.pl_typ_id,
196 	p_rec.enrt_perd_id,
197 	p_rec.actn_typ_id,
198 	p_rec.cm_typ_id,
199 	p_rec.ler_id,
200 	p_rec.business_group_id,
201 	p_rec.ctu_attribute_category,
202 	p_rec.ctu_attribute1,
203 	p_rec.ctu_attribute2,
204 	p_rec.ctu_attribute3,
205 	p_rec.ctu_attribute4,
206 	p_rec.ctu_attribute5,
207 	p_rec.ctu_attribute6,
208 	p_rec.ctu_attribute7,
209 	p_rec.ctu_attribute8,
210 	p_rec.ctu_attribute9,
211 	p_rec.ctu_attribute10,
212 	p_rec.ctu_attribute11,
213 	p_rec.ctu_attribute12,
214 	p_rec.ctu_attribute13,
215 	p_rec.ctu_attribute14,
216 	p_rec.ctu_attribute15,
217 	p_rec.ctu_attribute16,
218 	p_rec.ctu_attribute17,
219 	p_rec.ctu_attribute18,
220 	p_rec.ctu_attribute19,
221 	p_rec.ctu_attribute20,
222 	p_rec.ctu_attribute21,
223 	p_rec.ctu_attribute22,
224 	p_rec.ctu_attribute23,
225 	p_rec.ctu_attribute24,
226 	p_rec.ctu_attribute25,
227 	p_rec.ctu_attribute26,
228 	p_rec.ctu_attribute27,
229 	p_rec.ctu_attribute28,
230 	p_rec.ctu_attribute29,
231 	p_rec.ctu_attribute30,
232 	p_rec.object_version_number
233 	, l_created_by,
234    	l_creation_date,
235    	l_last_update_date,
236    	l_last_updated_by,
237    	l_last_update_login
238   );
239   --
240   ben_ctu_shd.g_api_dml := false;   -- Unset the api dml status
241   hr_utility.set_location(' Leaving:'||l_proc, 15);
242 --
243 Exception
244   When hr_api.check_integrity_violated Then
245     -- A check constraint has been violated
246     ben_ctu_shd.g_api_dml := false;   -- Unset the api dml status
247     ben_ctu_shd.constraint_error
248       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
249   When hr_api.unique_integrity_violated Then
250     -- Unique integrity has been violated
251     ben_ctu_shd.g_api_dml := false;   -- Unset the api dml status
252     ben_ctu_shd.constraint_error
253       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
254   When Others Then
255     ben_ctu_shd.g_api_dml := false;   -- Unset the api dml status
256     Raise;
257 End dt_insert_dml;
258 --
259 -- ----------------------------------------------------------------------------
260 -- |------------------------------< insert_dml >------------------------------|
261 -- ----------------------------------------------------------------------------
262 Procedure insert_dml
263 	(p_rec 			 in out nocopy ben_ctu_shd.g_rec_type,
264 	 p_effective_date	 in	date,
265 	 p_datetrack_mode	 in	varchar2,
266 	 p_validation_start_date in	date,
267 	 p_validation_end_date	 in	date) is
268 --
269   l_proc	varchar2(72) := g_package||'insert_dml';
270 --
271 Begin
272   hr_utility.set_location('Entering:'||l_proc, 5);
273   --
274   dt_insert_dml(p_rec			=> p_rec,
275 		p_effective_date	=> p_effective_date,
276 		p_datetrack_mode	=> p_datetrack_mode,
277        		p_validation_start_date	=> p_validation_start_date,
278 		p_validation_end_date	=> p_validation_end_date);
279   --
280   hr_utility.set_location(' Leaving:'||l_proc, 10);
281 End insert_dml;
282 --
283 -- ----------------------------------------------------------------------------
284 -- |------------------------------< pre_insert >------------------------------|
285 -- ----------------------------------------------------------------------------
286 -- {Start Of Comments}
287 --
288 -- Description:
289 --   This private procedure contains any processing which is required before
290 --   the insert dml. Presently, if the entity has a corresponding primary
291 --   key which is maintained by an associating sequence, the primary key for
292 --   the entity will be populated with the next sequence value in
293 --   preparation for the insert dml.
294 --   Also, if comments are defined for this entity, the comments insert
295 --   logic will also be called, generating a comment_id if required.
296 --
297 -- Prerequisites:
298 --   This is an internal procedure which is called from the ins procedure.
299 --
300 -- In Parameters:
301 --   A Pl/Sql record structre.
302 --
303 -- Post Success:
304 --   Processing continues.
305 --
306 -- Post Failure:
307 --   If an error has occurred, an error message and exception will be raised
308 --   but not handled.
309 --
310 -- Developer Implementation Notes:
311 --   Any pre-processing required before the insert dml is issued should be
312 --   coded within this procedure. As stated above, a good example is the
313 --   generation of a primary key number via a corresponding sequence.
314 --   It is important to note that any 3rd party maintenance should be reviewed
315 --   before placing in this procedure.
316 --
317 -- Access Status:
318 --   Internal Row Handler Use Only.
319 --
320 -- {End Of Comments}
321 -- ----------------------------------------------------------------------------
322 Procedure pre_insert
323 	(p_rec  			in out nocopy ben_ctu_shd.g_rec_type,
324 	 p_effective_date		in date,
325 	 p_datetrack_mode		in varchar2,
326 	 p_validation_start_date	in date,
327 	 p_validation_end_date		in date) is
328 --
329   l_proc	varchar2(72) := g_package||'pre_insert';
330 --
331 --
332 --
333 Begin
334   hr_utility.set_location('Entering:'||l_proc, 5);
335   --
336   --
337   select ben_cm_typ_usg_f_s.nextval into p_rec.cm_typ_usg_id from sys.dual;
338   --
339   --
340   hr_utility.set_location(' Leaving:'||l_proc, 10);
341 End pre_insert;
342 --
343 -- ----------------------------------------------------------------------------
344 -- |-----------------------------< post_insert >------------------------------|
345 -- ----------------------------------------------------------------------------
346 -- {Start Of Comments}
347 --
348 -- Description:
349 --   This private procedure contains any processing which is required after the
350 --   insert dml.
351 --
352 -- Prerequisites:
353 --   This is an internal procedure which is called from the ins procedure.
354 --
355 -- In Parameters:
356 --   A Pl/Sql record structre.
357 --
358 -- Post Success:
359 --   Processing continues.
360 --
361 -- Post Failure:
362 --   If an error has occurred, an error message and exception will be raised
363 --   but not handled.
364 --
365 -- Developer Implementation Notes:
366 --   Any post-processing required after the insert dml is issued should be
367 --   coded within this procedure. It is important to note that any 3rd party
368 --   maintenance should be reviewed before placing in this procedure.
369 --
370 -- Access Status:
371 --   Internal Row Handler Use Only.
372 --
373 -- {End Of Comments}
374 -- ----------------------------------------------------------------------------
375 Procedure post_insert
376 	(p_rec 			 in ben_ctu_shd.g_rec_type,
377 	 p_effective_date	 in date,
378 	 p_datetrack_mode	 in varchar2,
379 	 p_validation_start_date in date,
380 	 p_validation_end_date	 in date) is
381 --
382   l_proc	varchar2(72) := g_package||'post_insert';
383 --
384 Begin
385   hr_utility.set_location('Entering:'||l_proc, 5);
386 --
387   --
388   -- Start of API User Hook for post_insert.
389   --
390   begin
391     --
392     ben_ctu_rki.after_insert
393       (p_cm_typ_usg_id                 =>p_rec.cm_typ_usg_id
394       ,p_effective_start_date          =>p_rec.effective_start_date
395       ,p_effective_end_date            =>p_rec.effective_end_date
396       ,p_all_r_any_cd                  =>p_rec.all_r_any_cd
397       ,p_cm_usg_rl                     =>p_rec.cm_usg_rl
398       ,p_descr_text                    =>p_rec.descr_text
399       ,p_pgm_id                        =>p_rec.pgm_id
400       ,p_pl_id                         =>p_rec.pl_id
401       ,p_pl_typ_id                     =>p_rec.pl_typ_id
402       ,p_enrt_perd_id                  =>p_rec.enrt_perd_id
403       ,p_actn_typ_id                   =>p_rec.actn_typ_id
404       ,p_cm_typ_id                     =>p_rec.cm_typ_id
405       ,p_ler_id                        =>p_rec.ler_id
406       ,p_business_group_id             =>p_rec.business_group_id
407       ,p_ctu_attribute_category        =>p_rec.ctu_attribute_category
408       ,p_ctu_attribute1                =>p_rec.ctu_attribute1
409       ,p_ctu_attribute2                =>p_rec.ctu_attribute2
410       ,p_ctu_attribute3                =>p_rec.ctu_attribute3
411       ,p_ctu_attribute4                =>p_rec.ctu_attribute4
412       ,p_ctu_attribute5                =>p_rec.ctu_attribute5
413       ,p_ctu_attribute6                =>p_rec.ctu_attribute6
414       ,p_ctu_attribute7                =>p_rec.ctu_attribute7
415       ,p_ctu_attribute8                =>p_rec.ctu_attribute8
416       ,p_ctu_attribute9                =>p_rec.ctu_attribute9
417       ,p_ctu_attribute10               =>p_rec.ctu_attribute10
418       ,p_ctu_attribute11               =>p_rec.ctu_attribute11
419       ,p_ctu_attribute12               =>p_rec.ctu_attribute12
423       ,p_ctu_attribute16               =>p_rec.ctu_attribute16
420       ,p_ctu_attribute13               =>p_rec.ctu_attribute13
421       ,p_ctu_attribute14               =>p_rec.ctu_attribute14
422       ,p_ctu_attribute15               =>p_rec.ctu_attribute15
424       ,p_ctu_attribute17               =>p_rec.ctu_attribute17
425       ,p_ctu_attribute18               =>p_rec.ctu_attribute18
426       ,p_ctu_attribute19               =>p_rec.ctu_attribute19
427       ,p_ctu_attribute20               =>p_rec.ctu_attribute20
428       ,p_ctu_attribute21               =>p_rec.ctu_attribute21
429       ,p_ctu_attribute22               =>p_rec.ctu_attribute22
430       ,p_ctu_attribute23               =>p_rec.ctu_attribute23
431       ,p_ctu_attribute24               =>p_rec.ctu_attribute24
432       ,p_ctu_attribute25               =>p_rec.ctu_attribute25
433       ,p_ctu_attribute26               =>p_rec.ctu_attribute26
434       ,p_ctu_attribute27               =>p_rec.ctu_attribute27
435       ,p_ctu_attribute28               =>p_rec.ctu_attribute28
436       ,p_ctu_attribute29               =>p_rec.ctu_attribute29
437       ,p_ctu_attribute30               =>p_rec.ctu_attribute30
438       ,p_object_version_number         =>p_rec.object_version_number
439       ,p_effective_date                =>p_effective_date
440       ,p_validation_start_date         =>p_validation_start_date
441       ,p_validation_end_date           =>p_validation_end_date);
442     --
443   exception
444     --
445     when hr_api.cannot_find_prog_unit then
446       --
447       hr_api.cannot_find_prog_unit_error
448         (p_module_name => 'ben_cm_typ_usg_f'
449         ,p_hook_type   => 'AI');
450       --
451   end;
452   --
453   -- End of API User Hook for post_insert.
454   --
455   --
456   hr_utility.set_location(' Leaving:'||l_proc, 10);
457 End post_insert;
458 --
459 -- ----------------------------------------------------------------------------
460 -- |-------------------------------< ins_lck >--------------------------------|
461 -- ----------------------------------------------------------------------------
462 -- {Start Of Comments}
463 --
464 -- Description:
465 --   The ins_lck process has one main function to perform. When inserting
466 --   a datetracked row, we must validate the DT mode.
467 --   be manipulated.
468 --
469 -- Prerequisites:
470 --   This procedure can only be called for the datetrack mode of INSERT.
471 --
472 -- In Parameters:
473 --
474 -- Post Success:
475 --   On successful completion of the ins_lck process the parental
476 --   datetracked rows will be locked providing the p_enforce_foreign_locking
477 --   argument value is TRUE.
478 --   If the p_enforce_foreign_locking argument value is FALSE then the
479 --   parential rows are not locked.
480 --
481 -- Post Failure:
482 --   The Lck process can fail for:
483 --   1) When attempting to lock the row the row could already be locked by
484 --      another user. This will raise the HR_Api.Object_Locked exception.
485 --   2) When attempting to the lock the parent which doesn't exist.
486 --      For the entity to be locked the parent must exist!
487 --
488 -- Developer Implementation Notes:
489 --   None.
490 --
491 -- Access Status:
492 --   Internal Row Handler Use Only.
493 --
494 -- {End Of Comments}
495 -- ----------------------------------------------------------------------------
496 Procedure ins_lck
497 	(p_effective_date	 in  date,
498 	 p_datetrack_mode	 in  varchar2,
499 	 p_rec	 		 in  ben_ctu_shd.g_rec_type,
500 	 p_validation_start_date out nocopy date,
501 	 p_validation_end_date	 out nocopy date) is
502 --
503   l_proc		  varchar2(72) := g_package||'ins_lck';
504   l_validation_start_date date;
505   l_validation_end_date	  date;
506 --
507 Begin
508   hr_utility.set_location('Entering:'||l_proc, 5);
509   --
510   -- Validate the datetrack mode mode getting the validation start
511   -- and end dates for the specified datetrack operation.
512   --
513   dt_api.validate_dt_mode
514 	(p_effective_date	   => p_effective_date,
515 	 p_datetrack_mode	   => p_datetrack_mode,
516 	 p_base_table_name	   => 'ben_cm_typ_usg_f',
517 	 p_base_key_column	   => 'cm_typ_usg_id',
518 	 p_base_key_value 	   => p_rec.cm_typ_usg_id,
519 	 p_parent_table_name1      => 'ben_pgm_f',
520 	 p_parent_key_column1      => 'pgm_id',
521 	 p_parent_key_value1       => p_rec.pgm_id,
522 	 p_parent_table_name2      => 'ben_cm_typ_f',
523 	 p_parent_key_column2      => 'cm_typ_id',
524 	 p_parent_key_value2       => p_rec.cm_typ_id,
525 	 p_parent_table_name3      => 'ben_pl_f',
526 	 p_parent_key_column3      => 'pl_id',
527 	 p_parent_key_value3       => p_rec.pl_id,
528          p_parent_table_name4      => 'ben_pl_typ_f',
529          p_parent_key_column4      => 'pl_typ_id',
530          p_parent_key_value4       => p_rec.pl_typ_id,
531          p_enforce_foreign_locking => true,
532 	 p_validation_start_date   => l_validation_start_date,
533  	 p_validation_end_date	   => l_validation_end_date);
534   --
535   -- Set the validation start and end date OUT arguments
536   --
537   p_validation_start_date := l_validation_start_date;
538   p_validation_end_date   := l_validation_end_date;
539   --
543 --
540   hr_utility.set_location(' Leaving:'||l_proc, 10);
541 --
542 End ins_lck;
544 -- ----------------------------------------------------------------------------
545 -- |---------------------------------< ins >----------------------------------|
546 -- ----------------------------------------------------------------------------
547 Procedure ins
548   (
549   p_rec		   in out nocopy ben_ctu_shd.g_rec_type,
550   p_effective_date in     date
551   ) is
552 --
553   l_proc			varchar2(72) := g_package||'ins';
554   l_datetrack_mode		varchar2(30) := 'INSERT';
555   l_validation_start_date	date;
556   l_validation_end_date		date;
557 --
558 Begin
559   hr_utility.set_location('Entering:'||l_proc, 5);
560   --
561   -- Call the lock operation
562   --
563   ins_lck
564 	(p_effective_date	 => p_effective_date,
565 	 p_datetrack_mode	 => l_datetrack_mode,
566 	 p_rec	 		 => p_rec,
567 	 p_validation_start_date => l_validation_start_date,
568 	 p_validation_end_date	 => l_validation_end_date);
569   --
570   -- Call the supporting insert validate operations
571   --
572   ben_ctu_bus.insert_validate
573 	(p_rec			 => p_rec,
574 	 p_effective_date	 => p_effective_date,
575 	 p_datetrack_mode	 => l_datetrack_mode,
576 	 p_validation_start_date => l_validation_start_date,
577 	 p_validation_end_date	 => l_validation_end_date);
578   --
579   -- Call the supporting pre-insert operation
580   --
581   pre_insert
582  	(p_rec			 => p_rec,
583 	 p_effective_date	 => p_effective_date,
584 	 p_datetrack_mode	 => l_datetrack_mode,
585 	 p_validation_start_date => l_validation_start_date,
586 	 p_validation_end_date	 => l_validation_end_date);
587   --
588   -- Insert the row
589   --
590   insert_dml
591  	(p_rec			 => p_rec,
592 	 p_effective_date	 => p_effective_date,
593 	 p_datetrack_mode	 => l_datetrack_mode,
594 	 p_validation_start_date => l_validation_start_date,
595 	 p_validation_end_date	 => l_validation_end_date);
596   --
597   -- Call the supporting post-insert operation
598   --
599   post_insert
600  	(p_rec			 => p_rec,
601 	 p_effective_date	 => p_effective_date,
602 	 p_datetrack_mode	 => l_datetrack_mode,
603 	 p_validation_start_date => l_validation_start_date,
604 	 p_validation_end_date	 => l_validation_end_date);
605 end ins;
606 --
607 -- ----------------------------------------------------------------------------
608 -- |---------------------------------< ins >----------------------------------|
609 -- ----------------------------------------------------------------------------
610 Procedure ins
611   (
612   p_cm_typ_usg_id                out nocopy number,
613   p_effective_start_date         out nocopy date,
614   p_effective_end_date           out nocopy date,
615   p_all_r_any_cd                 in varchar2,
616   p_cm_usg_rl                    in number           default null,
617   p_descr_text                   in varchar2         default null,
618   p_pgm_id                       in number           default null,
619   p_pl_id                        in number           default null,
620   p_pl_typ_id                    in number           default null,
621   p_enrt_perd_id                 in number           default null,
622   p_actn_typ_id                  in number           default null,
623   p_cm_typ_id                    in number,
624   p_ler_id                       in number           default null,
625   p_business_group_id            in number,
626   p_ctu_attribute_category       in varchar2         default null,
627   p_ctu_attribute1               in varchar2         default null,
628   p_ctu_attribute2               in varchar2         default null,
629   p_ctu_attribute3               in varchar2         default null,
630   p_ctu_attribute4               in varchar2         default null,
631   p_ctu_attribute5               in varchar2         default null,
632   p_ctu_attribute6               in varchar2         default null,
633   p_ctu_attribute7               in varchar2         default null,
634   p_ctu_attribute8               in varchar2         default null,
635   p_ctu_attribute9               in varchar2         default null,
636   p_ctu_attribute10              in varchar2         default null,
637   p_ctu_attribute11              in varchar2         default null,
638   p_ctu_attribute12              in varchar2         default null,
639   p_ctu_attribute13              in varchar2         default null,
640   p_ctu_attribute14              in varchar2         default null,
641   p_ctu_attribute15              in varchar2         default null,
642   p_ctu_attribute16              in varchar2         default null,
643   p_ctu_attribute17              in varchar2         default null,
644   p_ctu_attribute18              in varchar2         default null,
645   p_ctu_attribute19              in varchar2         default null,
646   p_ctu_attribute20              in varchar2         default null,
647   p_ctu_attribute21              in varchar2         default null,
648   p_ctu_attribute22              in varchar2         default null,
649   p_ctu_attribute23              in varchar2         default null,
650   p_ctu_attribute24              in varchar2         default null,
651   p_ctu_attribute25              in varchar2         default null,
652   p_ctu_attribute26              in varchar2         default null,
653   p_ctu_attribute27              in varchar2         default null,
654   p_ctu_attribute28              in varchar2         default null,
655   p_ctu_attribute29              in varchar2         default null,
656   p_ctu_attribute30              in varchar2         default null,
657   p_object_version_number        out nocopy number,
658   p_effective_date		 in date
659   ) is
660 --
661   l_rec		ben_ctu_shd.g_rec_type;
662   l_proc	varchar2(72) := g_package||'ins';
663 --
664 Begin
665   hr_utility.set_location('Entering:'||l_proc, 5);
666   --
667   -- Call conversion function to turn arguments into the
668   -- p_rec structure.
669   --
670   l_rec :=
671   ben_ctu_shd.convert_args
672   (
673   null,
674   null,
675   null,
676   p_all_r_any_cd,
677   p_cm_usg_rl,
678   p_descr_text,
679   p_pgm_id,
680   p_pl_id,
681   p_pl_typ_id,
682   p_enrt_perd_id,
683   p_actn_typ_id,
684   p_cm_typ_id,
685   p_ler_id,
686   p_business_group_id,
687   p_ctu_attribute_category,
688   p_ctu_attribute1,
689   p_ctu_attribute2,
690   p_ctu_attribute3,
691   p_ctu_attribute4,
692   p_ctu_attribute5,
693   p_ctu_attribute6,
694   p_ctu_attribute7,
695   p_ctu_attribute8,
696   p_ctu_attribute9,
697   p_ctu_attribute10,
698   p_ctu_attribute11,
699   p_ctu_attribute12,
700   p_ctu_attribute13,
701   p_ctu_attribute14,
702   p_ctu_attribute15,
703   p_ctu_attribute16,
704   p_ctu_attribute17,
705   p_ctu_attribute18,
706   p_ctu_attribute19,
707   p_ctu_attribute20,
708   p_ctu_attribute21,
709   p_ctu_attribute22,
710   p_ctu_attribute23,
711   p_ctu_attribute24,
712   p_ctu_attribute25,
713   p_ctu_attribute26,
714   p_ctu_attribute27,
715   p_ctu_attribute28,
716   p_ctu_attribute29,
717   p_ctu_attribute30,
718   null
719   );
720   --
721   -- Having converted the arguments into the ben_ctu_rec
722   -- plsql record structure we call the corresponding record
723   -- business process.
724   --
725   ins(l_rec, p_effective_date);
726   --
727   -- Set the OUT arguments.
728   --
729   p_cm_typ_usg_id        	:= l_rec.cm_typ_usg_id;
730   p_effective_start_date  	:= l_rec.effective_start_date;
731   p_effective_end_date    	:= l_rec.effective_end_date;
732   p_object_version_number 	:= l_rec.object_version_number;
733   --
734   --
735   hr_utility.set_location(' Leaving:'||l_proc, 10);
736 End ins;
737 --
738 end ben_ctu_ins;