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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1079: end if;
1080: --
1081: end if;
1082: --
1083: hr_utility.set_location(' Leaving:'||l_proc, 30);
1084: --
1085: -- We need to trap the ORA LOCK exception
1086: --
1087: Exception

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

1303: l_proc varchar2(72) := g_package||'convert_args';
1304: --
1305: Begin
1306: --
1307: hr_utility.set_location('Entering:'||l_proc, 5);
1308: --
1309: -- Convert arguments into local l_rec structure.
1310: --
1311: l_rec.pl_id := p_pl_id;

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

1500:
1501: --
1502: -- Return the plsql record structure.
1503: --
1504: hr_utility.set_location(' Leaving:'||l_proc, 10);
1505: Return(l_rec);
1506: --
1507: End convert_args;
1508: --