DBA Data[Home] [Help]

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

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

49: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
50: fnd_message.raise_error;
51: End If;
52: --
53: hr_utility.set_location(' Leaving:'||l_proc, 10);
54: End constraint_error;
55: --
56: -- ----------------------------------------------------------------------------
57: -- |-----------------------------< api_updating >-----------------------------|

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

271: l_proc varchar2(72) := g_package||'api_updating';
272: l_fct_ret boolean;
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: If (p_effective_date is null or
278: p_pl_id is null or
279: p_object_version_number is null) Then

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

284: l_fct_ret := false;
285: Else
286: If (p_pl_id = g_old_rec.pl_id and
287: p_object_version_number = g_old_rec.object_version_number) Then
288: hr_utility.set_location(l_proc, 10);
289: --
290: -- The g_old_rec is current therefore we must
291: -- set the returning function to true
292: --

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

309: If (p_object_version_number <> g_old_rec.object_version_number) Then
310: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
311: fnd_message.raise_error;
312: End If;
313: hr_utility.set_location(l_proc, 15);
314: l_fct_ret := true;
315: End If;
316: End If;
317: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

313: hr_utility.set_location(l_proc, 15);
314: l_fct_ret := true;
315: End If;
316: End If;
317: hr_utility.set_location(' Leaving:'||l_proc, 20);
318: Return (l_fct_ret);
319: --
320: End api_updating;
321: --

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

380: and p_effective_date
381: between t.effective_start_date and t.effective_end_date;
382: --
383: Begin
384: hr_utility.set_location('Entering:'||l_proc, 5);
385: Open C_Sel1;
386: Fetch C_Sel1 Into l_parent_key_value1,
387: l_parent_key_value2,
388: l_parent_key_value3,

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

520: p_delete_next_change := false;
521: --
522: end if;
523: --
524: hr_utility.set_location(' Leaving:'||l_proc, 10);
525: End find_dt_del_modes;
526: --
527: -- ----------------------------------------------------------------------------
528: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

538: --
539: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
540: --
541: Begin
542: hr_utility.set_location('Entering:'||l_proc, 5);
543: --
544: -- Call the corresponding datetrack api
545: --
546: dt_api.find_dt_upd_modes

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

552: p_update => p_update,
553: p_update_override => p_update_override,
554: p_update_change_insert => p_update_change_insert);
555: --
556: hr_utility.set_location(' Leaving:'||l_proc, 10);
557: End find_dt_upd_modes;
558: --
559: -- ----------------------------------------------------------------------------
560: -- |------------------------< upd_effective_end_date >------------------------|

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

571: l_proc varchar2(72) := g_package||'upd_effective_end_date';
572: l_object_version_number number;
573: --
574: Begin
575: hr_utility.set_location('Entering:'||l_proc, 5);
576: --
577: -- Because we are updating a row we must get the next object
578: -- version number.
579: --

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

582: (p_base_table_name => 'ben_pl_f',
583: p_base_key_column => 'pl_id',
584: p_base_key_value => p_base_key_value);
585: --
586: hr_utility.set_location(l_proc, 10);
587: g_api_dml := true; -- Set the api dml status
588: --
589: -- Update the specified datetrack row setting the effective
590: -- end date to the specified new effective end date.

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

597: between t.effective_start_date and t.effective_end_date;
598: --
599: g_api_dml := false; -- Unset the api dml status
600: p_object_version_number := l_object_version_number;
601: hr_utility.set_location(' Leaving:'||l_proc, 15);
602: --
603: Exception
604: When Others Then
605: g_api_dml := false; -- Unset the api dml status

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

837: --
838: --
839: --
840: Begin
841: hr_utility.set_location('Entering:'||l_proc, 5);
842: --
843: -- Ensure that all the mandatory arguments are not null
844: --
845: hr_api.mandatory_arg_error(p_api_name => l_proc,

Line 870: hr_utility.set_location('no record found', 5);

866: --
867: Open C_Sel1;
868: Fetch C_Sel1 Into g_old_rec;
869: If C_Sel1%notfound then
870: hr_utility.set_location('no record found', 5);
871: Close C_Sel1;
872: --
873: -- The primary key is invalid therefore we must error
874: --

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

879: If (p_object_version_number <> g_old_rec.object_version_number) Then
880: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
881: fnd_message.raise_error;
882: End If;
883: hr_utility.set_location(l_proc, 15);
884: --
885: -- Validate the datetrack mode mode getting the validation start
886: -- and end dates for the specified datetrack operation.
887: --

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

1083: end if;
1084: --
1085: end if;
1086: --
1087: hr_utility.set_location(' Leaving:'||l_proc, 30);
1088: --
1089: -- We need to trap the ORA LOCK exception
1090: --
1091: Exception

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

1309: l_proc varchar2(72) := g_package||'convert_args';
1310: --
1311: Begin
1312: --
1313: hr_utility.set_location('Entering:'||l_proc, 5);
1314: --
1315: -- Convert arguments into local l_rec structure.
1316: --
1317: l_rec.pl_id := p_pl_id;

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

1507: l_rec.bnf_exl_participant_flag := p_bnf_exl_participant_flag; --Enh 16043887
1508: --
1509: -- Return the plsql record structure.
1510: --
1511: hr_utility.set_location(' Leaving:'||l_proc, 10);
1512: Return(l_rec);
1513: --
1514: End convert_args;
1515: --