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 161: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

523: l_rec.deenrol_made_dt := p_deenrol_made_dt;
524: --
525: -- Return the plsql record structure.
526: --
527: hr_utility.set_location(' Leaving:'||l_proc, 10);
528: Return(l_rec);
529: --
530: End convert_args;
531: --