DBA Data[Home] [Help]

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

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

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

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

188: l_proc varchar2(72) := g_package||'api_updating';
189: l_fct_ret boolean;
190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: If (p_effective_date is null or
195: p_eligy_prfl_id is null or
196: p_object_version_number is null) Then

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

201: l_fct_ret := false;
202: Else
203: If (p_eligy_prfl_id = g_old_rec.eligy_prfl_id and
204: p_object_version_number = g_old_rec.object_version_number) Then
205: hr_utility.set_location(l_proc, 10);
206: --
207: -- The g_old_rec is current therefore we must
208: -- set the returning function to true
209: --

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

226: If (p_object_version_number <> g_old_rec.object_version_number) Then
227: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
228: fnd_message.raise_error;
229: End If;
230: hr_utility.set_location(l_proc, 15);
231: l_fct_ret := true;
232: End If;
233: End If;
234: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

230: hr_utility.set_location(l_proc, 15);
231: l_fct_ret := true;
232: End If;
233: End If;
234: hr_utility.set_location(' Leaving:'||l_proc, 20);
235: Return (l_fct_ret);
236: --
237: End api_updating;
238: --

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

252: --
253: --
254: --
255: Begin
256: hr_utility.set_location('Entering:'||l_proc, 5);
257: --
258: --
259: -- Call the corresponding datetrack api
260: --

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

267: p_delete => p_delete,
268: p_future_change => p_future_change,
269: p_delete_next_change => p_delete_next_change);
270: --
271: hr_utility.set_location(' Leaving:'||l_proc, 10);
272: End find_dt_del_modes;
273: --
274: -- ----------------------------------------------------------------------------
275: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

284: --
285: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
286: --
287: Begin
288: hr_utility.set_location('Entering:'||l_proc, 5);
289: --
290: -- Call the corresponding datetrack api
291: --
292: dt_api.find_dt_upd_modes

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

298: p_update => p_update,
299: p_update_override => p_update_override,
300: p_update_change_insert => p_update_change_insert);
301: --
302: hr_utility.set_location(' Leaving:'||l_proc, 10);
303: End find_dt_upd_modes;
304: --
305: -- ----------------------------------------------------------------------------
306: -- |------------------------< upd_effective_end_date >------------------------|

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

316: l_proc varchar2(72) := g_package||'upd_effective_end_date';
317: l_object_version_number number;
318: --
319: Begin
320: hr_utility.set_location('Entering:'||l_proc, 5);
321: --
322: -- Because we are updating a row we must get the next object
323: -- version number.
324: --

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

327: (p_base_table_name => 'ben_eligy_prfl_f',
328: p_base_key_column => 'eligy_prfl_id',
329: p_base_key_value => p_base_key_value);
330: --
331: hr_utility.set_location(l_proc, 10);
332: g_api_dml := true; -- Set the api dml status
333: --
334: -- Update the specified datetrack row setting the effective
335: -- end date to the specified new effective end date.

Line 346: hr_utility.set_location(' Leaving:'||l_proc, 15);

342: between t.effective_start_date and t.effective_end_date;
343: --
344: g_api_dml := false; -- Unset the api dml status
345: p_object_version_number := l_object_version_number;
346: hr_utility.set_location(' Leaving:'||l_proc, 15);
347: --
348: Exception
349: When Others Then
350: g_api_dml := false; -- Unset the api dml status

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

486: --
487: --
488: --
489: Begin
490: hr_utility.set_location('Entering:'||l_proc, 5);
491: --
492: -- Ensure that all the mandatory arguments are not null
493: --
494: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

527: If (p_object_version_number <> g_old_rec.object_version_number) Then
528: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
529: fnd_message.raise_error;
530: End If;
531: hr_utility.set_location(l_proc, 15);
532: --
533: --
534: -- Validate the datetrack mode mode getting the validation start
535: -- and end dates for the specified datetrack operation.

Line 565: hr_utility.set_location(' Leaving:'||l_proc, 30);

561: --
562: p_validation_start_date := l_validation_start_date;
563: p_validation_end_date := l_validation_end_date;
564: --
565: hr_utility.set_location(' Leaving:'||l_proc, 30);
566: --
567: -- We need to trap the ORA LOCK exception
568: --
569: Exception

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

701: l_proc varchar2(72) := g_package||'convert_args';
702: --
703: Begin
704: --
705: hr_utility.set_location('Entering:'||l_proc, 5);
706: --
707: -- Convert arguments into local l_rec structure.
708: --
709: l_rec.eligy_prfl_id := p_eligy_prfl_id;

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

813: l_rec.object_version_number := p_object_version_number;
814: --
815: -- Return the plsql record structure.
816: --
817: hr_utility.set_location(' Leaving:'||l_proc, 10);
818: Return(l_rec);
819: --
820: End convert_args;
821: --