DBA Data[Home] [Help]

PACKAGE BODY: APPS.BEN_RRB_INS

Source


1 Package Body ben_rrb_ins as
2 /* $Header: berrbrhi.pkb 120.0.12010000.2 2008/08/05 15:26:44 ubhat ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33)	:= '  ben_rrb_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_rrb_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_regn_for_regy_body_f t
70     where  t.regn_for_regy_body_id       = p_rec.regn_for_regy_body_id
71     and    t.effective_start_date =
72              ben_rrb_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_regn_for_regy_body_f.created_by%TYPE;
77   l_creation_date       ben_regn_for_regy_body_f.creation_date%TYPE;
78   l_last_update_date   	ben_regn_for_regy_body_f.last_update_date%TYPE;
79   l_last_updated_by     ben_regn_for_regy_body_f.last_updated_by%TYPE;
80   l_last_update_login   ben_regn_for_regy_body_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_regn_for_regy_body_f',
90 	 p_base_key_column => 'regn_for_regy_body_id',
91 	 p_base_key_value  => p_rec.regn_for_regy_body_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       fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
116       fnd_message.set_token('PROCEDURE', l_proc);
117       fnd_message.set_token('STEP','10');
118       fnd_message.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_rrb_shd.g_api_dml := true;  -- Set the api dml status
130   --
131   -- Insert the row into: ben_regn_for_regy_body_f
132   --
133   insert into ben_regn_for_regy_body_f
134   (	regn_for_regy_body_id,
135 	effective_start_date,
136 	effective_end_date,
137 	regn_admin_cd,
138 	regn_id,
139 	organization_id,
140 	business_group_id,
141 	rrb_attribute_category,
142 	rrb_attribute1,
143 	rrb_attribute2,
144 	rrb_attribute3,
145 	rrb_attribute4,
146 	rrb_attribute5,
147 	rrb_attribute6,
148 	rrb_attribute7,
149 	rrb_attribute8,
150 	rrb_attribute9,
151 	rrb_attribute10,
152 	rrb_attribute11,
153 	rrb_attribute12,
154 	rrb_attribute13,
155 	rrb_attribute14,
156 	rrb_attribute15,
157 	rrb_attribute16,
158 	rrb_attribute17,
159 	rrb_attribute18,
160 	rrb_attribute19,
161 	rrb_attribute20,
162 	rrb_attribute21,
163 	rrb_attribute22,
164 	rrb_attribute23,
165 	rrb_attribute24,
166 	rrb_attribute25,
167 	rrb_attribute26,
168 	rrb_attribute27,
169 	rrb_attribute28,
170 	rrb_attribute29,
171 	rrb_attribute30,
172 	object_version_number
173    	, created_by,
174    	creation_date,
175    	last_update_date,
176    	last_updated_by,
177    	last_update_login
178   )
179   Values
180   (	p_rec.regn_for_regy_body_id,
181 	p_rec.effective_start_date,
182 	p_rec.effective_end_date,
183 	p_rec.regn_admin_cd,
184 	p_rec.regn_id,
185 	p_rec.organization_id,
186 	p_rec.business_group_id,
187 	p_rec.rrb_attribute_category,
188 	p_rec.rrb_attribute1,
189 	p_rec.rrb_attribute2,
190 	p_rec.rrb_attribute3,
191 	p_rec.rrb_attribute4,
192 	p_rec.rrb_attribute5,
193 	p_rec.rrb_attribute6,
194 	p_rec.rrb_attribute7,
195 	p_rec.rrb_attribute8,
196 	p_rec.rrb_attribute9,
197 	p_rec.rrb_attribute10,
198 	p_rec.rrb_attribute11,
199 	p_rec.rrb_attribute12,
200 	p_rec.rrb_attribute13,
201 	p_rec.rrb_attribute14,
202 	p_rec.rrb_attribute15,
203 	p_rec.rrb_attribute16,
204 	p_rec.rrb_attribute17,
205 	p_rec.rrb_attribute18,
206 	p_rec.rrb_attribute19,
207 	p_rec.rrb_attribute20,
208 	p_rec.rrb_attribute21,
209 	p_rec.rrb_attribute22,
210 	p_rec.rrb_attribute23,
211 	p_rec.rrb_attribute24,
212 	p_rec.rrb_attribute25,
213 	p_rec.rrb_attribute26,
214 	p_rec.rrb_attribute27,
215 	p_rec.rrb_attribute28,
216 	p_rec.rrb_attribute29,
217 	p_rec.rrb_attribute30,
218 	p_rec.object_version_number
219 	, l_created_by,
220    	l_creation_date,
221    	l_last_update_date,
222    	l_last_updated_by,
223    	l_last_update_login
224   );
225   --
226   ben_rrb_shd.g_api_dml := false;   -- Unset the api dml status
227   hr_utility.set_location(' Leaving:'||l_proc, 15);
228 --
229 Exception
230   When hr_api.check_integrity_violated Then
231     -- A check constraint has been violated
232     ben_rrb_shd.g_api_dml := false;   -- Unset the api dml status
233     ben_rrb_shd.constraint_error
234       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235   When hr_api.unique_integrity_violated Then
236     -- Unique integrity has been violated
237     ben_rrb_shd.g_api_dml := false;   -- Unset the api dml status
238     ben_rrb_shd.constraint_error
239       (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
240   When Others Then
241     ben_rrb_shd.g_api_dml := false;   -- Unset the api dml status
242     Raise;
243 End dt_insert_dml;
244 --
245 -- ----------------------------------------------------------------------------
246 -- |------------------------------< insert_dml >------------------------------|
247 -- ----------------------------------------------------------------------------
248 Procedure insert_dml
249 	(p_rec 			 in out nocopy ben_rrb_shd.g_rec_type,
250 	 p_effective_date	 in	date,
251 	 p_datetrack_mode	 in	varchar2,
252 	 p_validation_start_date in	date,
253 	 p_validation_end_date	 in	date) is
254 --
255   l_proc	varchar2(72) := g_package||'insert_dml';
256 --
257 Begin
258   hr_utility.set_location('Entering:'||l_proc, 5);
259   --
260   dt_insert_dml(p_rec			=> p_rec,
261 		p_effective_date	=> p_effective_date,
262 		p_datetrack_mode	=> p_datetrack_mode,
263        		p_validation_start_date	=> p_validation_start_date,
264 		p_validation_end_date	=> p_validation_end_date);
265   --
266   hr_utility.set_location(' Leaving:'||l_proc, 10);
267 End insert_dml;
268 --
269 -- ----------------------------------------------------------------------------
270 -- |------------------------------< pre_insert >------------------------------|
271 -- ----------------------------------------------------------------------------
272 -- {Start Of Comments}
273 --
274 -- Description:
275 --   This private procedure contains any processing which is required before
276 --   the insert dml. Presently, if the entity has a corresponding primary
277 --   key which is maintained by an associating sequence, the primary key for
278 --   the entity will be populated with the next sequence value in
279 --   preparation for the insert dml.
280 --   Also, if comments are defined for this entity, the comments insert
281 --   logic will also be called, generating a comment_id if required.
282 --
283 -- Prerequisites:
284 --   This is an internal procedure which is called from the ins procedure.
285 --
286 -- In Parameters:
287 --   A Pl/Sql record structre.
288 --
289 -- Post Success:
290 --   Processing continues.
291 --
292 -- Post Failure:
293 --   If an error has occurred, an error message and exception will be raised
294 --   but not handled.
295 --
296 -- Developer Implementation Notes:
297 --   Any pre-processing required before the insert dml is issued should be
298 --   coded within this procedure. As stated above, a good example is the
299 --   generation of a primary key number via a corresponding sequence.
300 --   It is important to note that any 3rd party maintenance should be reviewed
301 --   before placing in this procedure.
302 --
303 -- Access Status:
304 --   Internal Row Handler Use Only.
305 --
306 -- {End Of Comments}
307 -- ----------------------------------------------------------------------------
308 Procedure pre_insert
309 	(p_rec  			in out nocopy ben_rrb_shd.g_rec_type,
310 	 p_effective_date		in date,
311 	 p_datetrack_mode		in varchar2,
312 	 p_validation_start_date	in date,
313 	 p_validation_end_date		in date) is
314 --
315   l_proc	varchar2(72) := g_package||'pre_insert';
316   cursor c1 is
317     select ben_regn_for_regy_body_f_s.nextval
318     from sys.dual;
319 --
320 --
321 --
322 Begin
323   hr_utility.set_location('Entering:'||l_proc, 5);
324   --
325   open c1;
326   fetch c1 into p_rec.regn_for_regy_body_id;
327   close c1;
328   --
329   --
330   --
331   hr_utility.set_location(' Leaving:'||l_proc, 10);
332 End pre_insert;
333 --
334 -- ----------------------------------------------------------------------------
335 -- |-----------------------------< post_insert >------------------------------|
336 -- ----------------------------------------------------------------------------
337 -- {Start Of Comments}
338 --
339 -- Description:
340 --   This private procedure contains any processing which is required after the
341 --   insert dml.
342 --
343 -- Prerequisites:
344 --   This is an internal procedure which is called from the ins procedure.
345 --
346 -- In Parameters:
347 --   A Pl/Sql record structre.
348 --
349 -- Post Success:
350 --   Processing continues.
351 --
352 -- Post Failure:
353 --   If an error has occurred, an error message and exception will be raised
354 --   but not handled.
355 --
356 -- Developer Implementation Notes:
357 --   Any post-processing required after the insert dml is issued should be
358 --   coded within this procedure. It is important to note that any 3rd party
359 --   maintenance should be reviewed before placing in this procedure.
360 --
361 -- Access Status:
362 --   Internal Row Handler Use Only.
363 --
364 -- {End Of Comments}
365 -- ----------------------------------------------------------------------------
366 Procedure post_insert
367 	(p_rec 			 in ben_rrb_shd.g_rec_type,
368 	 p_effective_date	 in date,
369 	 p_datetrack_mode	 in varchar2,
370 	 p_validation_start_date in date,
371 	 p_validation_end_date	 in date) is
372 --
373   l_proc	varchar2(72) := g_package||'post_insert';
374 --
375 Begin
376   hr_utility.set_location('Entering:'||l_proc, 5);
377 --
378   --
379   -- Start of API User Hook for post_insert.
380   --
381   begin
382     --
383     ben_rrb_rki.after_insert
384       (
385   p_regn_for_regy_body_id         =>p_rec.regn_for_regy_body_id
386  ,p_effective_start_date          =>p_rec.effective_start_date
387  ,p_effective_end_date            =>p_rec.effective_end_date
388  ,p_regn_admin_cd                 =>p_rec.regn_admin_cd
389  ,p_regn_id                       =>p_rec.regn_id
390  ,p_organization_id               =>p_rec.organization_id
391  ,p_business_group_id             =>p_rec.business_group_id
392  ,p_rrb_attribute_category        =>p_rec.rrb_attribute_category
393  ,p_rrb_attribute1                =>p_rec.rrb_attribute1
394  ,p_rrb_attribute2                =>p_rec.rrb_attribute2
395  ,p_rrb_attribute3                =>p_rec.rrb_attribute3
396  ,p_rrb_attribute4                =>p_rec.rrb_attribute4
397  ,p_rrb_attribute5                =>p_rec.rrb_attribute5
398  ,p_rrb_attribute6                =>p_rec.rrb_attribute6
399  ,p_rrb_attribute7                =>p_rec.rrb_attribute7
400  ,p_rrb_attribute8                =>p_rec.rrb_attribute8
401  ,p_rrb_attribute9                =>p_rec.rrb_attribute9
402  ,p_rrb_attribute10               =>p_rec.rrb_attribute10
403  ,p_rrb_attribute11               =>p_rec.rrb_attribute11
404  ,p_rrb_attribute12               =>p_rec.rrb_attribute12
405  ,p_rrb_attribute13               =>p_rec.rrb_attribute13
406  ,p_rrb_attribute14               =>p_rec.rrb_attribute14
407  ,p_rrb_attribute15               =>p_rec.rrb_attribute15
408  ,p_rrb_attribute16               =>p_rec.rrb_attribute16
409  ,p_rrb_attribute17               =>p_rec.rrb_attribute17
410  ,p_rrb_attribute18               =>p_rec.rrb_attribute18
411  ,p_rrb_attribute19               =>p_rec.rrb_attribute19
412  ,p_rrb_attribute20               =>p_rec.rrb_attribute20
413  ,p_rrb_attribute21               =>p_rec.rrb_attribute21
417  ,p_rrb_attribute25               =>p_rec.rrb_attribute25
414  ,p_rrb_attribute22               =>p_rec.rrb_attribute22
415  ,p_rrb_attribute23               =>p_rec.rrb_attribute23
416  ,p_rrb_attribute24               =>p_rec.rrb_attribute24
418  ,p_rrb_attribute26               =>p_rec.rrb_attribute26
419  ,p_rrb_attribute27               =>p_rec.rrb_attribute27
420  ,p_rrb_attribute28               =>p_rec.rrb_attribute28
421  ,p_rrb_attribute29               =>p_rec.rrb_attribute29
422  ,p_rrb_attribute30               =>p_rec.rrb_attribute30
423  ,p_object_version_number         =>p_rec.object_version_number
424  ,p_effective_date                =>p_effective_date
425  ,p_validation_start_date         =>p_validation_start_date
426  ,p_validation_end_date           =>p_validation_end_date
427       );
428     --
429   exception
430     --
431     when hr_api.cannot_find_prog_unit then
432       --
433       hr_api.cannot_find_prog_unit_error
434         (p_module_name => 'ben_regn_for_regy_body_f'
435         ,p_hook_type   => 'AI');
436       --
437   end;
438   --
439   -- End of API User Hook for post_insert.
440   --
441   --
442   hr_utility.set_location(' Leaving:'||l_proc, 10);
443 End post_insert;
444 --
445 -- ----------------------------------------------------------------------------
446 -- |-------------------------------< ins_lck >--------------------------------|
447 -- ----------------------------------------------------------------------------
448 -- {Start Of Comments}
449 --
450 -- Description:
451 --   The ins_lck process has one main function to perform. When inserting
452 --   a datetracked row, we must validate the DT mode.
453 --   be manipulated.
454 --
455 -- Prerequisites:
456 --   This procedure can only be called for the datetrack mode of INSERT.
457 --
458 -- In Parameters:
459 --
460 -- Post Success:
461 --   On successful completion of the ins_lck process the parental
462 --   datetracked rows will be locked providing the p_enforce_foreign_locking
463 --   argument value is TRUE.
464 --   If the p_enforce_foreign_locking argument value is FALSE then the
465 --   parential rows are not locked.
466 --
467 -- Post Failure:
468 --   The Lck process can fail for:
469 --   1) When attempting to lock the row the row could already be locked by
470 --      another user. This will raise the HR_Api.Object_Locked exception.
471 --   2) When attempting to the lock the parent which doesn't exist.
472 --      For the entity to be locked the parent must exist!
473 --
474 -- Developer Implementation Notes:
475 --   None.
476 --
477 -- Access Status:
478 --   Internal Row Handler Use Only.
479 --
480 -- {End Of Comments}
481 -- ----------------------------------------------------------------------------
482 Procedure ins_lck
483 	(p_effective_date	 in  date,
484 	 p_datetrack_mode	 in  varchar2,
485 	 p_rec	 		 in  ben_rrb_shd.g_rec_type,
486 	 p_validation_start_date out nocopy date,
487 	 p_validation_end_date	 out nocopy date) is
488 --
489   l_proc		  varchar2(72) := g_package||'ins_lck';
490   l_validation_start_date date;
491   l_validation_end_date	  date;
492 --
493 Begin
494   hr_utility.set_location('Entering:'||l_proc, 5);
495   --
496   -- Validate the datetrack mode mode getting the validation start
497   -- and end dates for the specified datetrack operation.
498   --
499   dt_api.validate_dt_mode
500 	(p_effective_date	   => p_effective_date,
501 	 p_datetrack_mode	   => p_datetrack_mode,
502 	 p_base_table_name	   => 'ben_regn_for_regy_body_f',
503 	 p_base_key_column	   => 'regn_for_regy_body_id',
504 	 p_base_key_value 	   => p_rec.regn_for_regy_body_id,
505 	 p_parent_table_name1      => 'ben_regn_f',
506 	 p_parent_key_column1      => 'regn_id',
507 	 p_parent_key_value1       => p_rec.regn_id,
508          p_enforce_foreign_locking => true,
509 	 p_validation_start_date   => l_validation_start_date,
510  	 p_validation_end_date	   => l_validation_end_date);
511   --
512   -- Set the validation start and end date OUT arguments
513   --
514   p_validation_start_date := l_validation_start_date;
515   p_validation_end_date   := l_validation_end_date;
516   --
517   hr_utility.set_location(' Leaving:'||l_proc, 10);
518 --
519 End ins_lck;
520 --
521 -- ----------------------------------------------------------------------------
522 -- |---------------------------------< ins >----------------------------------|
523 -- ----------------------------------------------------------------------------
524 Procedure ins
525   (
526   p_rec		   in out nocopy ben_rrb_shd.g_rec_type,
527   p_effective_date in     date
528   ) is
529 --
530   l_proc			varchar2(72) := g_package||'ins';
531   l_datetrack_mode		varchar2(30) := 'INSERT';
532   l_validation_start_date	date;
533   l_validation_end_date		date;
534 --
535 Begin
536   hr_utility.set_location('Entering:'||l_proc, 5);
537   --
538   -- Call the lock operation
539   --
540   ins_lck
541 	(p_effective_date	 => p_effective_date,
542 	 p_datetrack_mode	 => l_datetrack_mode,
543 	 p_rec	 		 => p_rec,
544 	 p_validation_start_date => l_validation_start_date,
548   --
545 	 p_validation_end_date	 => l_validation_end_date);
546   --
547   -- Call the supporting insert validate operations
549   ben_rrb_bus.insert_validate
550 	(p_rec			 => p_rec,
551 	 p_effective_date	 => p_effective_date,
552 	 p_datetrack_mode	 => l_datetrack_mode,
553 	 p_validation_start_date => l_validation_start_date,
554 	 p_validation_end_date	 => l_validation_end_date);
555   --
556   -- Call the supporting pre-insert operation
557   --
558   pre_insert
559  	(p_rec			 => p_rec,
560 	 p_effective_date	 => p_effective_date,
561 	 p_datetrack_mode	 => l_datetrack_mode,
562 	 p_validation_start_date => l_validation_start_date,
563 	 p_validation_end_date	 => l_validation_end_date);
564   --
565   -- Insert the row
566   --
567   insert_dml
568  	(p_rec			 => p_rec,
569 	 p_effective_date	 => p_effective_date,
570 	 p_datetrack_mode	 => l_datetrack_mode,
571 	 p_validation_start_date => l_validation_start_date,
572 	 p_validation_end_date	 => l_validation_end_date);
573   --
574   -- Call the supporting post-insert operation
575   --
576   post_insert
577  	(p_rec			 => p_rec,
578 	 p_effective_date	 => p_effective_date,
579 	 p_datetrack_mode	 => l_datetrack_mode,
580 	 p_validation_start_date => l_validation_start_date,
581 	 p_validation_end_date	 => l_validation_end_date);
582 end ins;
583 --
584 -- ----------------------------------------------------------------------------
585 -- |---------------------------------< ins >----------------------------------|
586 -- ----------------------------------------------------------------------------
587 Procedure ins
588   (
589   p_regn_for_regy_body_id        out nocopy number,
590   p_effective_start_date         out nocopy date,
591   p_effective_end_date           out nocopy date,
592   p_regn_admin_cd                in varchar2         default null,
593   p_regn_id                      in number,
594   p_organization_id              in number,
595   p_business_group_id            in number,
596   p_rrb_attribute_category       in varchar2         default null,
597   p_rrb_attribute1               in varchar2         default null,
598   p_rrb_attribute2               in varchar2         default null,
599   p_rrb_attribute3               in varchar2         default null,
600   p_rrb_attribute4               in varchar2         default null,
601   p_rrb_attribute5               in varchar2         default null,
602   p_rrb_attribute6               in varchar2         default null,
603   p_rrb_attribute7               in varchar2         default null,
604   p_rrb_attribute8               in varchar2         default null,
605   p_rrb_attribute9               in varchar2         default null,
606   p_rrb_attribute10              in varchar2         default null,
607   p_rrb_attribute11              in varchar2         default null,
608   p_rrb_attribute12              in varchar2         default null,
609   p_rrb_attribute13              in varchar2         default null,
610   p_rrb_attribute14              in varchar2         default null,
611   p_rrb_attribute15              in varchar2         default null,
612   p_rrb_attribute16              in varchar2         default null,
613   p_rrb_attribute17              in varchar2         default null,
614   p_rrb_attribute18              in varchar2         default null,
615   p_rrb_attribute19              in varchar2         default null,
616   p_rrb_attribute20              in varchar2         default null,
617   p_rrb_attribute21              in varchar2         default null,
618   p_rrb_attribute22              in varchar2         default null,
619   p_rrb_attribute23              in varchar2         default null,
620   p_rrb_attribute24              in varchar2         default null,
621   p_rrb_attribute25              in varchar2         default null,
622   p_rrb_attribute26              in varchar2         default null,
623   p_rrb_attribute27              in varchar2         default null,
624   p_rrb_attribute28              in varchar2         default null,
625   p_rrb_attribute29              in varchar2         default null,
626   p_rrb_attribute30              in varchar2         default null,
627   p_object_version_number        out nocopy number,
628   p_effective_date		 in date
629   ) is
630 --
631   l_rec		ben_rrb_shd.g_rec_type;
632   l_proc	varchar2(72) := g_package||'ins';
633 --
634 Begin
635   hr_utility.set_location('Entering:'||l_proc, 5);
636   --
637   -- Call conversion function to turn arguments into the
638   -- p_rec structure.
639   --
640   l_rec :=
641   ben_rrb_shd.convert_args
642   (
643   null,
644   null,
645   null,
646   p_regn_admin_cd,
647   p_regn_id,
648   p_organization_id,
649   p_business_group_id,
650   p_rrb_attribute_category,
651   p_rrb_attribute1,
652   p_rrb_attribute2,
653   p_rrb_attribute3,
654   p_rrb_attribute4,
655   p_rrb_attribute5,
656   p_rrb_attribute6,
657   p_rrb_attribute7,
658   p_rrb_attribute8,
659   p_rrb_attribute9,
660   p_rrb_attribute10,
661   p_rrb_attribute11,
662   p_rrb_attribute12,
663   p_rrb_attribute13,
664   p_rrb_attribute14,
665   p_rrb_attribute15,
666   p_rrb_attribute16,
667   p_rrb_attribute17,
668   p_rrb_attribute18,
669   p_rrb_attribute19,
670   p_rrb_attribute20,
671   p_rrb_attribute21,
672   p_rrb_attribute22,
673   p_rrb_attribute23,
674   p_rrb_attribute24,
675   p_rrb_attribute25,
676   p_rrb_attribute26,
677   p_rrb_attribute27,
678   p_rrb_attribute28,
679   p_rrb_attribute29,
680   p_rrb_attribute30,
681   null
682   );
683   --
684   -- Having converted the arguments into the ben_rrb_rec
685   -- plsql record structure we call the corresponding record
686   -- business process.
687   --
688   ins(l_rec, p_effective_date);
689   --
690   -- Set the OUT arguments.
691   --
692   p_regn_for_regy_body_id        	:= l_rec.regn_for_regy_body_id;
693   p_effective_start_date  	:= l_rec.effective_start_date;
694   p_effective_end_date    	:= l_rec.effective_end_date;
695   p_object_version_number 	:= l_rec.object_version_number;
696   --
697   --
698   hr_utility.set_location(' Leaving:'||l_proc, 10);
699 End ins;
700 --
701 end ben_rrb_ins;