DBA Data[Home] [Help]

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

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

74: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
75: fnd_message.raise_error;
76: End If;
77: --
78: hr_utility.set_location(' Leaving:'||l_proc, 10);
79: End constraint_error;
80: --
81: -- ----------------------------------------------------------------------------
82: -- |-----------------------------< api_updating >-----------------------------|

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

202: l_fct_ret boolean;
203: --
204: Begin
205: /*
206: hr_utility.set_location('Entering:'||l_proc, 5);
207: */
208: --
209: If (p_effective_date is null or
210: p_elig_per_id is null or

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

217: Else
218: If (p_elig_per_id = g_old_rec.elig_per_id and
219: p_object_version_number = g_old_rec.object_version_number) Then
220: /*
221: hr_utility.set_location(l_proc, 10);
222: */
223: --
224: -- The g_old_rec is current therefore we must
225: -- set the returning function to true

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

244: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
245: fnd_message.raise_error;
246: End If;
247: /*
248: hr_utility.set_location(l_proc, 15);
249: */
250: l_fct_ret := true;
251: End If;
252: End If;

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

250: l_fct_ret := true;
251: End If;
252: End If;
253: /*
254: hr_utility.set_location(' Leaving:'||l_proc, 20);
255: */
256: Return (l_fct_ret);
257: --
258: End api_updating;

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

288: and p_effective_date between t.effective_start_date
289: and t.effective_end_date;
290: --
291: Begin
292: hr_utility.set_location('Entering:'||l_proc, 5);
293: Open C_Sel1;
294: Fetch C_Sel1 Into l_parent_key_value1,
295: l_parent_key_value2,
296: l_parent_key_value3,

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

331: p_delete => p_delete,
332: p_future_change => p_future_change,
333: p_delete_next_change => p_delete_next_change);
334: --
335: hr_utility.set_location(' Leaving:'||l_proc, 10);
336: End find_dt_del_modes;
337: --
338: -- ----------------------------------------------------------------------------
339: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

348: --
349: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
350: --
351: Begin
352: hr_utility.set_location('Entering:'||l_proc, 5);
353: --
354: -- Call the corresponding datetrack api
355: --
356: dt_api.find_dt_upd_modes

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

362: p_update => p_update,
363: p_update_override => p_update_override,
364: p_update_change_insert => p_update_change_insert);
365: --
366: hr_utility.set_location(' Leaving:'||l_proc, 10);
367: End find_dt_upd_modes;
368: --
369: -- ----------------------------------------------------------------------------
370: -- |------------------------< upd_effective_end_date >------------------------|

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

380: l_proc varchar2(72) := g_package||'upd_effective_end_date';
381: l_object_version_number number;
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: --
386: -- Because we are updating a row we must get the next object
387: -- version number.
388: --

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

391: (p_base_table_name => 'ben_elig_per_f',
392: p_base_key_column => 'elig_per_id',
393: p_base_key_value => p_base_key_value);
394: --
395: hr_utility.set_location(l_proc, 10);
396: g_api_dml := true; -- Set the api dml status
397: --
398: -- Update the specified datetrack row setting the effective
399: -- end date to the specified new effective end date.

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

406: between t.effective_start_date and t.effective_end_date;
407: --
408: g_api_dml := false; -- Unset the api dml status
409: p_object_version_number := l_object_version_number;
410: hr_utility.set_location(' Leaving:'||l_proc, 15);
411: --
412: Exception
413: When Others Then
414: g_api_dml := false; -- Unset the api dml status

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

546: --
547: --
548: --
549: Begin
550: hr_utility.set_location('Entering:'||l_proc, 5);
551: --
552: -- Ensure that all the mandatory arguments are not null
553: --
554: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

587: If (p_object_version_number <> g_old_rec.object_version_number) Then
588: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
589: fnd_message.raise_error;
590: End If;
591: hr_utility.set_location(l_proc, 15);
592: --
593: -- Validate the datetrack mode mode getting the validation start
594: -- and end dates for the specified datetrack operation.
595: --

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

639: --
640: p_validation_start_date := l_validation_start_date;
641: p_validation_end_date := l_validation_end_date;
642: --
643: hr_utility.set_location(' Leaving:'||l_proc, 30);
644: --
645: -- We need to trap the ORA LOCK exception
646: --
647: Exception

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

775: l_proc varchar2(72) := g_package||'convert_args';
776: --
777: Begin
778: --
779: hr_utility.set_location('Entering:'||l_proc, 5);
780: --
781: -- Convert arguments into local l_rec structure.
782: --
783: l_rec.elig_per_id := p_elig_per_id;

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

883: l_rec.object_version_number := p_object_version_number;
884: --
885: -- Return the plsql record structure.
886: --
887: hr_utility.set_location(' Leaving:'||l_proc, 10);
888: Return(l_rec);
889: --
890: End convert_args;
891: --