DBA Data[Home] [Help]

APPS.BEN_PEL_SHD dependencies on HR_UTILITY

Line 18: hr_utility.set_location('Entering:'||l_proc, 5);

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);

Line 22: hr_utility.set_location(' Leaving:'||l_proc, 10);

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 >---------------------------|

Line 34: hr_utility.set_location('Entering:'||l_proc, 5);

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_PIL_ELCTBL_CHC_POPL_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

Line 58: hr_utility.set_location(' Leaving:'||l_proc, 10);

54: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
55: fnd_message.raise_error;
56: End If;
57: --
58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: End constraint_error;
60: --
61: -- ----------------------------------------------------------------------------
62: -- |-----------------------------< api_updating >-----------------------------|

Line 162: hr_utility.set_location('Entering:'||l_proc, 5);

158: l_proc varchar2(72) := g_package||'api_updating';
159: l_fct_ret boolean;
160: --
161: Begin
162: hr_utility.set_location('Entering:'||l_proc, 5);
163: --
164: If (
165: p_pil_elctbl_chc_popl_id is null and
166: p_object_version_number is null

Line 178: hr_utility.set_location(l_proc, 10);

174: If (
175: p_pil_elctbl_chc_popl_id = g_old_rec.pil_elctbl_chc_popl_id and
176: p_object_version_number = g_old_rec.object_version_number
177: ) Then
178: hr_utility.set_location(l_proc, 10);
179: --
180: -- The g_old_rec is current therefore we must
181: -- set the returning function to true
182: --

Line 203: hr_utility.set_location(l_proc, 15);

199: If (p_object_version_number <> g_old_rec.object_version_number) Then
200: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
201: fnd_message.raise_error;
202: End If;
203: hr_utility.set_location(l_proc, 15);
204: l_fct_ret := true;
205: End If;
206: End If;
207: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 207: hr_utility.set_location(' Leaving:'||l_proc, 20);

203: hr_utility.set_location(l_proc, 15);
204: l_fct_ret := true;
205: End If;
206: End If;
207: hr_utility.set_location(' Leaving:'||l_proc, 20);
208: Return (l_fct_ret);
209: --
210: End api_updating;
211: --

Line 311: hr_utility.set_location('Entering:'||l_proc, 5);

307: --
308: l_proc varchar2(72) := g_package||'lck';
309: --
310: Begin
311: hr_utility.set_location('Entering:'||l_proc, 5);
312: --
313: -- Add any mandatory argument checking here:
314: -- Example:
315: -- hr_api.mandatory_arg_error

Line 336: hr_utility.set_location(' Leaving:'||l_proc, 10);

332: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
333: fnd_message.raise_error;
334: End If;
335: --
336: hr_utility.set_location(' Leaving:'||l_proc, 10);
337: --
338: -- We need to trap the ORA LOCK exception
339: --
340: Exception

Line 444: hr_utility.set_location('Entering:'||l_proc, 5);

440: l_proc varchar2(72) := g_package||'convert_args';
441: --
442: Begin
443: --
444: hr_utility.set_location('Entering:'||l_proc, 5);
445: --
446: -- Convert arguments into local l_rec structure.
447: --
448: l_rec.pil_elctbl_chc_popl_id := p_pil_elctbl_chc_popl_id;

Line 531: hr_utility.set_location(' Leaving:'||l_proc, 10);

527: l_rec.deenrol_made_dt := p_deenrol_made_dt;
528: --
529: -- Return the plsql record structure.
530: --
531: hr_utility.set_location(' Leaving:'||l_proc, 10);
532: Return(l_rec);
533: --
534: End convert_args;
535: --