DBA Data[Home] [Help]

PACKAGE BODY: APPS.BEN_PBM_SHD

Source


1 Package Body ben_pbm_shd as
2 /* $Header: bepbmrhi.pkb 115.6 2002/12/11 11:17:16 hnarayan ship $ */
3 --
4 -- ----------------------------------------------------------------------------
5 -- |                     Private Global Definitions                           |
6 -- ----------------------------------------------------------------------------
7 --
8 g_package  varchar2(33)	:= '  ben_pbm_shd.';  -- Global package name
9 --
10 -- ----------------------------------------------------------------------------
11 -- |------------------------< return_api_dml_status >-------------------------|
12 -- ----------------------------------------------------------------------------
13 Function return_api_dml_status Return Boolean Is
14 --
15   l_proc 	varchar2(72) := g_package||'return_api_dml_status';
16 --
17 Begin
18   hr_utility.set_location('Entering:'||l_proc, 5);
19   --
20   Return (nvl(g_api_dml, false));
21   --
22   hr_utility.set_location(' Leaving:'||l_proc, 10);
23 End return_api_dml_status;
24 --
25 -- ----------------------------------------------------------------------------
26 -- |---------------------------< constraint_error >---------------------------|
27 -- ----------------------------------------------------------------------------
28 Procedure constraint_error
29             (p_constraint_name in all_constraints.constraint_name%TYPE) Is
30 --
31   l_proc 	varchar2(72) := g_package||'constraint_error';
32 --
33 Begin
34   hr_utility.set_location('Entering:'||l_proc, 5);
35   --
36   If (p_constraint_name = 'BEN_PL_R_OIPL_PREM_BY_MO_PK') Then
37     fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38     fnd_message.set_token('PROCEDURE', l_proc);
39     fnd_message.set_token('STEP','5');
40     fnd_message.raise_error;
41   Else
42     fnd_message.set_name('PAY', 'HR_7877_API_INVALID_CONSTRAINT');
43     fnd_message.set_token('PROCEDURE', l_proc);
44     fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
45     fnd_message.raise_error;
46   End If;
47   --
48   hr_utility.set_location(' Leaving:'||l_proc, 10);
49 End constraint_error;
50 --
51 -- ----------------------------------------------------------------------------
52 -- |-----------------------------< api_updating >-----------------------------|
53 -- ----------------------------------------------------------------------------
54 Function api_updating
55   (p_effective_date		in date,
56    p_pl_r_oipl_prem_by_mo_id		in number,
57    p_object_version_number	in number
58   ) Return Boolean Is
59 --
60   --
61   -- Cursor selects the 'current' row from the HR Schema
62   --
63   Cursor C_Sel1 is
64     select
65 	pl_r_oipl_prem_by_mo_id,
66 	effective_start_date,
67 	effective_end_date,
68 	mnl_adj_flag,
69 	mo_num,
70 	yr_num,
71 	val,
72 	uom,
73 	prtts_num,
74 	actl_prem_id,
75         cost_allocation_keyflex_id,
76 	business_group_id,
77 	pbm_attribute_category,
78 	pbm_attribute1,
79 	pbm_attribute2,
80 	pbm_attribute3,
81 	pbm_attribute4,
82 	pbm_attribute5,
83 	pbm_attribute6,
84 	pbm_attribute7,
85 	pbm_attribute8,
86 	pbm_attribute9,
87 	pbm_attribute10,
88 	pbm_attribute11,
89 	pbm_attribute12,
90 	pbm_attribute13,
91 	pbm_attribute14,
92 	pbm_attribute15,
93 	pbm_attribute16,
94 	pbm_attribute17,
95 	pbm_attribute18,
96 	pbm_attribute19,
97 	pbm_attribute20,
98 	pbm_attribute21,
99 	pbm_attribute22,
100 	pbm_attribute23,
101 	pbm_attribute24,
102 	pbm_attribute25,
103 	pbm_attribute26,
104 	pbm_attribute27,
105 	pbm_attribute28,
106 	pbm_attribute29,
107 	pbm_attribute30,
108 	object_version_number,
109         request_id,
110         program_id,
111         program_application_id,
112         program_update_date
113     from	ben_pl_r_oipl_prem_by_mo_f
114     where	pl_r_oipl_prem_by_mo_id = p_pl_r_oipl_prem_by_mo_id
115     and		p_effective_date
116     between	effective_start_date and effective_end_date;
117 --
118   l_proc	varchar2(72)	:= g_package||'api_updating';
119   l_fct_ret	boolean;
120 --
121 Begin
122   hr_utility.set_location('Entering:'||l_proc, 5);
123   --
124   If (p_effective_date is null or
125       p_pl_r_oipl_prem_by_mo_id is null or
126       p_object_version_number is null) Then
127     --
128     -- One of the primary key arguments is null therefore we must
129     -- set the returning function value to false
130     --
131     l_fct_ret := false;
132   Else
133     If (p_pl_r_oipl_prem_by_mo_id = g_old_rec.pl_r_oipl_prem_by_mo_id and
134         p_object_version_number = g_old_rec.object_version_number) Then
135       hr_utility.set_location(l_proc, 10);
136       --
137       -- The g_old_rec is current therefore we must
138       -- set the returning function to true
139       --
140       l_fct_ret := true;
141     Else
142       --
143       -- Select the current row
144       --
145       Open C_Sel1;
146       Fetch C_Sel1 Into g_old_rec;
147       If C_Sel1%notfound Then
148         Close C_Sel1;
149         --
150         -- The primary key is invalid therefore we must error
151         --
152         fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
153         fnd_message.raise_error;
154       End If;
155       Close C_Sel1;
156       If (p_object_version_number <> g_old_rec.object_version_number) Then
157         fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
158         fnd_message.raise_error;
159       End If;
160       hr_utility.set_location(l_proc, 15);
161       l_fct_ret := true;
162     End If;
163   End If;
164   hr_utility.set_location(' Leaving:'||l_proc, 20);
165   Return (l_fct_ret);
166 --
167 End api_updating;
168 --
169 -- ----------------------------------------------------------------------------
170 -- |--------------------------< find_dt_del_modes >---------------------------|
171 -- ----------------------------------------------------------------------------
172 Procedure find_dt_del_modes
173 	(p_effective_date	in  date,
174 	 p_base_key_value	in  number,
175 	 p_zap		 out nocopy boolean,
176 	 p_delete	 out nocopy boolean,
177 	 p_future_change out nocopy boolean,
178 	 p_delete_next_change out nocopy boolean) is
179 --
180   l_proc 		varchar2(72) 	:= g_package||'find_dt_del_modes';
181 --
182   l_parent_key_value1	number;
183   --
184   Cursor C_Sel1 Is
185     select  t.actl_prem_id
186     from    ben_pl_r_oipl_prem_by_mo_f t
187     where   t.pl_r_oipl_prem_by_mo_id = p_base_key_value
188     and     p_effective_date
189     between t.effective_start_date and t.effective_end_date;
190 --
191 Begin
192   hr_utility.set_location('Entering:'||l_proc, 5);
193   Open  C_Sel1;
194   Fetch C_Sel1 Into l_parent_key_value1;
195   If C_Sel1%notfound then
196     Close C_Sel1;
197     fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
198     fnd_message.set_token('PROCEDURE', l_proc);
199     fnd_message.set_token('STEP','10');
200     fnd_message.raise_error;
201   End If;
202   Close C_Sel1;
203   --
204   -- Call the corresponding datetrack api
205   --
206   dt_api.find_dt_del_modes
207 	(p_effective_date	=> p_effective_date,
208 	 p_base_table_name	=> 'ben_pl_r_oipl_prem_by_mo_f',
209 	 p_base_key_column	=> 'pl_r_oipl_prem_by_mo_id',
210 	 p_base_key_value	=> p_base_key_value,
211 	 p_parent_table_name1	=> 'ben_actl_prem_f',
212 	 p_parent_key_column1	=> 'actl_prem_id',
213 	 p_parent_key_value1	=> l_parent_key_value1,
214 	 p_zap			=> p_zap,
215 	 p_delete		=> p_delete,
216 	 p_future_change	=> p_future_change,
217 	 p_delete_next_change	=> p_delete_next_change);
218   --
219   hr_utility.set_location(' Leaving:'||l_proc, 10);
220 End find_dt_del_modes;
221 --
222 -- ----------------------------------------------------------------------------
223 -- |--------------------------< find_dt_upd_modes >---------------------------|
224 -- ----------------------------------------------------------------------------
225 Procedure find_dt_upd_modes
226 	(p_effective_date	in  date,
227 	 p_base_key_value	in  number,
228 	 p_correction	 out nocopy boolean,
229 	 p_update	 out nocopy boolean,
230 	 p_update_override out nocopy boolean,
231 	 p_update_change_insert out nocopy boolean) is
232 --
233   l_proc 	varchar2(72) := g_package||'find_dt_upd_modes';
234 --
235 Begin
236   hr_utility.set_location('Entering:'||l_proc, 5);
237   --
238   -- Call the corresponding datetrack api
239   --
240   dt_api.find_dt_upd_modes
241 	(p_effective_date	=> p_effective_date,
242 	 p_base_table_name	=> 'ben_pl_r_oipl_prem_by_mo_f',
243 	 p_base_key_column	=> 'pl_r_oipl_prem_by_mo_id',
244 	 p_base_key_value	=> p_base_key_value,
245 	 p_correction		=> p_correction,
246 	 p_update		=> p_update,
247 	 p_update_override	=> p_update_override,
248 	 p_update_change_insert	=> p_update_change_insert);
249   --
250   hr_utility.set_location(' Leaving:'||l_proc, 10);
251 End find_dt_upd_modes;
252 --
253 -- ----------------------------------------------------------------------------
254 -- |------------------------< upd_effective_end_date >------------------------|
255 -- ----------------------------------------------------------------------------
256 Procedure upd_effective_end_date
257 	(p_effective_date		in date,
258 	 p_base_key_value		in number,
259 	 p_new_effective_end_date	in date,
260 	 p_validation_start_date	in date,
261 	 p_validation_end_date		in date,
262          p_object_version_number       out nocopy number) is
263 --
264   l_proc 		  varchar2(72) := g_package||'upd_effective_end_date';
265   l_object_version_number number;
266 --
267 Begin
268   hr_utility.set_location('Entering:'||l_proc, 5);
269   --
270   -- Because we are updating a row we must get the next object
271   -- version number.
272   --
273   l_object_version_number :=
274     dt_api.get_object_version_number
275 	(p_base_table_name	=> 'ben_pl_r_oipl_prem_by_mo_f',
276 	 p_base_key_column	=> 'pl_r_oipl_prem_by_mo_id',
277 	 p_base_key_value	=> p_base_key_value);
278   --
279   hr_utility.set_location(l_proc, 10);
280   g_api_dml := true;  -- Set the api dml status
281   --
282   -- Update the specified datetrack row setting the effective
283   -- end date to the specified new effective end date.
284   --
285   update  ben_pl_r_oipl_prem_by_mo_f t
286   set	  t.effective_end_date	  = p_new_effective_end_date,
287 	  t.object_version_number = l_object_version_number
288   where	  t.pl_r_oipl_prem_by_mo_id	  = p_base_key_value
289   and	  p_effective_date
290   between t.effective_start_date and t.effective_end_date;
291   --
292   g_api_dml := false;   -- Unset the api dml status
293   p_object_version_number := l_object_version_number;
294   hr_utility.set_location(' Leaving:'||l_proc, 15);
295 --
296 Exception
297   When Others Then
298     g_api_dml := false;   -- Unset the api dml status
299     Raise;
300 End upd_effective_end_date;
301 --
302 -- ----------------------------------------------------------------------------
303 -- |---------------------------------< lck >----------------------------------|
304 -- ----------------------------------------------------------------------------
305 Procedure lck
306 	(p_effective_date	 in  date,
307 	 p_datetrack_mode	 in  varchar2,
308 	 p_pl_r_oipl_prem_by_mo_id	 in  number,
309 	 p_object_version_number in  number,
310 	 p_validation_start_date out nocopy date,
311 	 p_validation_end_date	 out nocopy date) is
312 --
313   l_proc		  varchar2(72) := g_package||'lck';
314   l_validation_start_date date;
315   l_validation_end_date	  date;
316   l_object_invalid 	  exception;
317   l_argument		  varchar2(30);
318   --
319   -- Cursor C_Sel1 selects the current locked row as of session date
320   -- ensuring that the object version numbers match.
321   --
322   Cursor C_Sel1 is
323     select
324 	pl_r_oipl_prem_by_mo_id,
325 	effective_start_date,
326 	effective_end_date,
327 	mnl_adj_flag,
328 	mo_num,
329 	yr_num,
330 	val,
331 	uom,
332 	prtts_num,
333 	actl_prem_id,
334         cost_allocation_keyflex_id,
335 	business_group_id,
336 	pbm_attribute_category,
337 	pbm_attribute1,
338 	pbm_attribute2,
339 	pbm_attribute3,
340 	pbm_attribute4,
341 	pbm_attribute5,
342 	pbm_attribute6,
343 	pbm_attribute7,
344 	pbm_attribute8,
345 	pbm_attribute9,
346 	pbm_attribute10,
347 	pbm_attribute11,
348 	pbm_attribute12,
349 	pbm_attribute13,
350 	pbm_attribute14,
351 	pbm_attribute15,
352 	pbm_attribute16,
353 	pbm_attribute17,
354 	pbm_attribute18,
355 	pbm_attribute19,
356 	pbm_attribute20,
357 	pbm_attribute21,
358 	pbm_attribute22,
359 	pbm_attribute23,
360 	pbm_attribute24,
361 	pbm_attribute25,
362 	pbm_attribute26,
363 	pbm_attribute27,
364 	pbm_attribute28,
365 	pbm_attribute29,
366 	pbm_attribute30,
367 	object_version_number,
368         request_id,
369         program_id,
370         program_application_id,
371         program_update_date
372     from    ben_pl_r_oipl_prem_by_mo_f
373     where   pl_r_oipl_prem_by_mo_id         = p_pl_r_oipl_prem_by_mo_id
374     and	    p_effective_date
375     between effective_start_date and effective_end_date
376     for update nowait;
377   --
378   --
379   --
380 Begin
381   hr_utility.set_location('Entering:'||l_proc, 5);
382   --
383   -- Ensure that all the mandatory arguments are not null
384   --
385   hr_api.mandatory_arg_error(p_api_name       => l_proc,
386                              p_argument       => 'effective_date',
387                              p_argument_value => p_effective_date);
388   --
389   hr_api.mandatory_arg_error(p_api_name       => l_proc,
390                              p_argument       => 'datetrack_mode',
391                              p_argument_value => p_datetrack_mode);
392   --
393   hr_api.mandatory_arg_error(p_api_name       => l_proc,
394                              p_argument       => 'pl_r_oipl_prem_by_mo_id',
395                              p_argument_value => p_pl_r_oipl_prem_by_mo_id);
396   --
397   hr_api.mandatory_arg_error(p_api_name       => l_proc,
398                              p_argument       => 'object_version_number',
399                              p_argument_value => p_object_version_number);
400   --
401   -- Check to ensure the datetrack mode is not INSERT.
402   --
403   If (p_datetrack_mode <> 'INSERT') then
404     --
405     -- We must select and lock the current row.
406     --
407     Open  C_Sel1;
408     Fetch C_Sel1 Into g_old_rec;
409     If C_Sel1%notfound then
410       Close C_Sel1;
411       --
412       -- The primary key is invalid therefore we must error
413       --
414       fnd_message.set_name('PAY', 'HR_7220_INVALID_PRIMARY_KEY');
415       fnd_message.raise_error;
416     End If;
417     Close C_Sel1;
418     If (p_object_version_number <> g_old_rec.object_version_number) Then
419         fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
420         fnd_message.raise_error;
421       End If;
422     hr_utility.set_location(l_proc, 15);
423     --
424     --
425     -- Validate the datetrack mode mode getting the validation start
426     -- and end dates for the specified datetrack operation.
427     --
428     dt_api.validate_dt_mode
429 	(p_effective_date	   => p_effective_date,
430 	 p_datetrack_mode	   => p_datetrack_mode,
431 	 p_base_table_name	   => 'ben_pl_r_oipl_prem_by_mo_f',
432 	 p_base_key_column	   => 'pl_r_oipl_prem_by_mo_id',
433 	 p_base_key_value 	   => p_pl_r_oipl_prem_by_mo_id,
437          p_enforce_foreign_locking => false,
434 	 p_parent_table_name1      => 'ben_actl_prem_f',
435 	 p_parent_key_column1      => 'actl_prem_id',
436 	 p_parent_key_value1       => g_old_rec.actl_prem_id,
438 	 p_validation_start_date   => l_validation_start_date,
439  	 p_validation_end_date	   => l_validation_end_date);
440   Else
441     --
442     -- We are doing a datetrack 'INSERT' which is illegal within this
443     -- procedure therefore we must error (note: to lck on insert the
444     -- private procedure ins_lck should be called).
445     --
446     fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
447     fnd_message.set_token('PROCEDURE', l_proc);
448     fnd_message.set_token('STEP','20');
449     fnd_message.raise_error;
450   End If;
451   --
452   -- Set the validation start and end date OUT arguments
453   --
454   p_validation_start_date := l_validation_start_date;
455   p_validation_end_date   := l_validation_end_date;
456   --
457   hr_utility.set_location(' Leaving:'||l_proc, 30);
458 --
459 -- We need to trap the ORA LOCK exception
460 --
461 Exception
462   When HR_Api.Object_Locked then
463     --
464     -- The object is locked therefore we need to supply a meaningful
465     -- error message.
466     --
467     fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
468     fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');
469     fnd_message.raise_error;
470   When l_object_invalid then
471     --
472     -- The object doesn't exist or is invalid
473     --
474     fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
475     fnd_message.set_token('TABLE_NAME', 'ben_pl_r_oipl_prem_by_mo_f');
476     fnd_message.raise_error;
477 End lck;
478 --
479 -- ----------------------------------------------------------------------------
480 -- |-----------------------------< convert_args >-----------------------------|
481 -- ----------------------------------------------------------------------------
482 Function convert_args
483 	(
484 	p_pl_r_oipl_prem_by_mo_id       in number,
485 	p_effective_start_date          in date,
486 	p_effective_end_date            in date,
487 	p_mnl_adj_flag                  in varchar2,
488 	p_mo_num                        in number,
489 	p_yr_num                        in number,
490 	p_val                           in number,
491 	p_uom                           in varchar2,
492 	p_prtts_num                     in number,
493 	p_actl_prem_id                  in number,
494         p_cost_allocation_keyflex_id    in number,
495 	p_business_group_id             in number,
496 	p_pbm_attribute_category        in varchar2,
497 	p_pbm_attribute1                in varchar2,
498 	p_pbm_attribute2                in varchar2,
499 	p_pbm_attribute3                in varchar2,
500 	p_pbm_attribute4                in varchar2,
501 	p_pbm_attribute5                in varchar2,
502 	p_pbm_attribute6                in varchar2,
503 	p_pbm_attribute7                in varchar2,
504 	p_pbm_attribute8                in varchar2,
505 	p_pbm_attribute9                in varchar2,
506 	p_pbm_attribute10               in varchar2,
507 	p_pbm_attribute11               in varchar2,
508 	p_pbm_attribute12               in varchar2,
509 	p_pbm_attribute13               in varchar2,
510 	p_pbm_attribute14               in varchar2,
511 	p_pbm_attribute15               in varchar2,
512 	p_pbm_attribute16               in varchar2,
513 	p_pbm_attribute17               in varchar2,
514 	p_pbm_attribute18               in varchar2,
515 	p_pbm_attribute19               in varchar2,
516 	p_pbm_attribute20               in varchar2,
517 	p_pbm_attribute21               in varchar2,
518 	p_pbm_attribute22               in varchar2,
519 	p_pbm_attribute23               in varchar2,
520 	p_pbm_attribute24               in varchar2,
521 	p_pbm_attribute25               in varchar2,
522 	p_pbm_attribute26               in varchar2,
523 	p_pbm_attribute27               in varchar2,
524 	p_pbm_attribute28               in varchar2,
525 	p_pbm_attribute29               in varchar2,
526 	p_pbm_attribute30               in varchar2,
527 	p_object_version_number         in number,
528         p_request_id                     in number,
529         p_program_id                       in number,
530         p_program_application_id          in number,
531         p_program_update_date             in date
532 	)
533 	Return g_rec_type is
534 --
535   l_rec	  g_rec_type;
536   l_proc  varchar2(72) := g_package||'convert_args';
537 --
538 Begin
539   --
540   hr_utility.set_location('Entering:'||l_proc, 5);
541   --
542   -- Convert arguments into local l_rec structure.
543   --
544   l_rec.pl_r_oipl_prem_by_mo_id          := p_pl_r_oipl_prem_by_mo_id;
545   l_rec.effective_start_date             := p_effective_start_date;
546   l_rec.effective_end_date               := p_effective_end_date;
547   l_rec.mnl_adj_flag                     := p_mnl_adj_flag;
548   l_rec.mo_num                           := p_mo_num;
549   l_rec.yr_num                           := p_yr_num;
550   l_rec.val                              := p_val;
551   l_rec.uom                              := p_uom;
552   l_rec.prtts_num                        := p_prtts_num;
553   l_rec.actl_prem_id                     := p_actl_prem_id;
554   l_rec.cost_allocation_keyflex_id       := p_cost_allocation_keyflex_id;
555   l_rec.business_group_id                := p_business_group_id;
556   l_rec.pbm_attribute_category           := p_pbm_attribute_category;
557   l_rec.pbm_attribute1                   := p_pbm_attribute1;
558   l_rec.pbm_attribute2                   := p_pbm_attribute2;
559   l_rec.pbm_attribute3                   := p_pbm_attribute3;
560   l_rec.pbm_attribute4                   := p_pbm_attribute4;
561   l_rec.pbm_attribute5                   := p_pbm_attribute5;
562   l_rec.pbm_attribute6                   := p_pbm_attribute6;
563   l_rec.pbm_attribute7                   := p_pbm_attribute7;
564   l_rec.pbm_attribute8                   := p_pbm_attribute8;
565   l_rec.pbm_attribute9                   := p_pbm_attribute9;
566   l_rec.pbm_attribute10                  := p_pbm_attribute10;
567   l_rec.pbm_attribute11                  := p_pbm_attribute11;
568   l_rec.pbm_attribute12                  := p_pbm_attribute12;
569   l_rec.pbm_attribute13                  := p_pbm_attribute13;
570   l_rec.pbm_attribute14                  := p_pbm_attribute14;
571   l_rec.pbm_attribute15                  := p_pbm_attribute15;
572   l_rec.pbm_attribute16                  := p_pbm_attribute16;
573   l_rec.pbm_attribute17                  := p_pbm_attribute17;
574   l_rec.pbm_attribute18                  := p_pbm_attribute18;
575   l_rec.pbm_attribute19                  := p_pbm_attribute19;
576   l_rec.pbm_attribute20                  := p_pbm_attribute20;
577   l_rec.pbm_attribute21                  := p_pbm_attribute21;
578   l_rec.pbm_attribute22                  := p_pbm_attribute22;
579   l_rec.pbm_attribute23                  := p_pbm_attribute23;
580   l_rec.pbm_attribute24                  := p_pbm_attribute24;
581   l_rec.pbm_attribute25                  := p_pbm_attribute25;
582   l_rec.pbm_attribute26                  := p_pbm_attribute26;
583   l_rec.pbm_attribute27                  := p_pbm_attribute27;
584   l_rec.pbm_attribute28                  := p_pbm_attribute28;
585   l_rec.pbm_attribute29                  := p_pbm_attribute29;
586   l_rec.pbm_attribute30                  := p_pbm_attribute30;
587   l_rec.object_version_number            := p_object_version_number;
588   l_rec.request_id                       := p_request_id;
589   l_rec.program_id                       := p_program_id;
590   l_rec.program_application_id           := p_program_application_id;
591   l_rec.program_update_date              := p_program_update_date;
592   --
593   -- Return the plsql record structure.
594   --
595   hr_utility.set_location(' Leaving:'||l_proc, 10);
596   Return(l_rec);
597 --
598 End convert_args;
599 --
600 end ben_pbm_shd;