DBA Data[Home] [Help]

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

Line 54: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

50: ben_utility.child_exists_error(p_table_name =>
51: 'BEN_PRTT_RT_VAL');
52:
53: ElsIf (p_constraint_name = 'BEN_OIPL_PK') Then
54: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
55: hr_utility.set_message_token('PROCEDURE', l_proc);
56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then

Line 55: hr_utility.set_message_token('PROCEDURE', l_proc);

51: 'BEN_PRTT_RT_VAL');
52:
53: ElsIf (p_constraint_name = 'BEN_OIPL_PK') Then
54: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
55: hr_utility.set_message_token('PROCEDURE', l_proc);
56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 56: hr_utility.set_message_token('STEP','10');

52:
53: ElsIf (p_constraint_name = 'BEN_OIPL_PK') Then
54: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
55: hr_utility.set_message_token('PROCEDURE', l_proc);
56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);

Line 57: hr_utility.raise_error;

53: ElsIf (p_constraint_name = 'BEN_OIPL_PK') Then
54: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
55: hr_utility.set_message_token('PROCEDURE', l_proc);
56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);
61: hr_utility.set_message_token('STEP','10');

Line 59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

55: hr_utility.set_message_token('PROCEDURE', l_proc);
56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);
61: hr_utility.set_message_token('STEP','10');
62: hr_utility.raise_error;
63:

Line 60: hr_utility.set_message_token('PROCEDURE', l_proc);

56: hr_utility.set_message_token('STEP','10');
57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);
61: hr_utility.set_message_token('STEP','10');
62: hr_utility.raise_error;
63:
64:

Line 61: hr_utility.set_message_token('STEP','10');

57: hr_utility.raise_error;
58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);
61: hr_utility.set_message_token('STEP','10');
62: hr_utility.raise_error;
63:
64:
65: Else

Line 62: hr_utility.raise_error;

58: ElsIf (p_constraint_name = 'BEN_OIPLIP_PK') Then
59: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');
60: hr_utility.set_message_token('PROCEDURE', l_proc);
61: hr_utility.set_message_token('STEP','10');
62: hr_utility.raise_error;
63:
64:
65: Else
66: fnd_message.set_name('PAY', 'HR_7877_API_INVALID_CONSTRAINT');

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

68: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
69: fnd_message.raise_error;
70: End If;
71: --
72: hr_utility.set_location(' Leaving:'||l_proc, 10);
73: End constraint_error;
74: --
75: -- ----------------------------------------------------------------------------
76: -- |-----------------------------< api_updating >-----------------------------|

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

230: l_proc varchar2(72) := g_package||'api_updating';
231: l_fct_ret boolean;
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: --
236: If (p_effective_date is null or
237: p_acty_base_rt_id is null or
238: p_object_version_number is null) Then

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

243: l_fct_ret := false;
244: Else
245: If (p_acty_base_rt_id = g_old_rec.acty_base_rt_id and
246: p_object_version_number = g_old_rec.object_version_number) Then
247: hr_utility.set_location(l_proc, 10);
248: --
249: -- The g_old_rec is current therefore we must
250: -- set the returning function to true
251: --

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

268: If (p_object_version_number <> g_old_rec.object_version_number) Then
269: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
270: fnd_message.raise_error;
271: End If;
272: hr_utility.set_location(l_proc, 15);
273: l_fct_ret := true;
274: End If;
275: End If;
276: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

272: hr_utility.set_location(l_proc, 15);
273: l_fct_ret := true;
274: End If;
275: End If;
276: hr_utility.set_location(' Leaving:'||l_proc, 20);
277: Return (l_fct_ret);
278: --
279: End api_updating;
280: --

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

339: and p_effective_date
340: between t.effective_start_date and t.effective_end_date;
341: --
342: Begin
343: hr_utility.set_location('Entering:'||l_proc, 5);
344: Open C_Sel1;
345: Fetch C_Sel1 Into l_parent_key_value1,
346: l_parent_key_value2,
347: l_parent_key_value3,

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

478: --
479: end if;
480: --
481:
482: hr_utility.set_location(' Leaving:'||l_proc, 10);
483: End find_dt_del_modes;
484: --
485: -- ----------------------------------------------------------------------------
486: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

495: --
496: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
497: --
498: Begin
499: hr_utility.set_location('Entering:'||l_proc, 5);
500: --
501: -- Call the corresponding datetrack api
502: --
503: dt_api.find_dt_upd_modes

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

509: p_update => p_update,
510: p_update_override => p_update_override,
511: p_update_change_insert => p_update_change_insert);
512: --
513: hr_utility.set_location(' Leaving:'||l_proc, 10);
514: End find_dt_upd_modes;
515: --
516: -- ----------------------------------------------------------------------------
517: -- |------------------------< upd_effective_end_date >------------------------|

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

527: l_proc varchar2(72) := g_package||'upd_effective_end_date';
528: l_object_version_number number;
529: --
530: Begin
531: hr_utility.set_location('Entering:'||l_proc, 5);
532: --
533: -- Because we are updating a row we must get the next object
534: -- version number.
535: --

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

538: (p_base_table_name => 'ben_acty_base_rt_f',
539: p_base_key_column => 'acty_base_rt_id',
540: p_base_key_value => p_base_key_value);
541: --
542: hr_utility.set_location(l_proc, 10);
543: g_api_dml := true; -- Set the api dml status
544: --
545: -- Update the specified datetrack row setting the effective
546: -- end date to the specified new effective end date.

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

553: between t.effective_start_date and t.effective_end_date;
554: --
555: g_api_dml := false; -- Unset the api dml status
556: p_object_version_number := l_object_version_number;
557: hr_utility.set_location(' Leaving:'||l_proc, 15);
558: --
559: Exception
560: When Others Then
561: g_api_dml := false; -- Unset the api dml status

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

732: --
733: --
734: --
735: Begin
736: hr_utility.set_location('Entering:'||l_proc, 5);
737: --
738: -- Ensure that all the mandatory arguments are not null
739: --
740: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

773: If (p_object_version_number <> g_old_rec.object_version_number) Then
774: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
775: fnd_message.raise_error;
776: End If;
777: hr_utility.set_location(l_proc, 15);
778: --
779: --
780: -- Validate the datetrack mode mode getting the validation start
781: -- and end dates for the specified datetrack operation.

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

915: p_validation_end_date := l_validation_end_date1;
916: --
917: end if;
918: --
919: hr_utility.set_location(' Leaving:'||l_proc, 30);
920: --
921: -- We need to trap the ORA LOCK exception
922: --
923: Exception

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

1086: l_proc varchar2(72) := g_package||'convert_args';
1087: --
1088: Begin
1089: --
1090: hr_utility.set_location('Entering:'||l_proc, 5);
1091: hr_utility.set_location('total rate before '||p_TTL_COMP_LVL_FCTR_ID, 99);
1092: --
1093: -- Convert arguments into local l_rec structure.
1094: --

Line 1091: hr_utility.set_location('total rate before '||p_TTL_COMP_LVL_FCTR_ID, 99);

1087: --
1088: Begin
1089: --
1090: hr_utility.set_location('Entering:'||l_proc, 5);
1091: hr_utility.set_location('total rate before '||p_TTL_COMP_LVL_FCTR_ID, 99);
1092: --
1093: -- Convert arguments into local l_rec structure.
1094: --
1095: l_rec.acty_base_rt_id := p_acty_base_rt_id;

Line 1234: hr_utility.set_location('total rate before '||l_rec.TTL_COMP_LVL_FCTR_ID, 99);

1230: l_rec.object_version_number := p_object_version_number;
1231: --
1232: -- Return the plsql record structure.
1233: --
1234: hr_utility.set_location('total rate before '||l_rec.TTL_COMP_LVL_FCTR_ID, 99);
1235: hr_utility.set_location(' Leaving:'||l_proc, 10);
1236: Return(l_rec);
1237: --
1238: End convert_args;

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

1231: --
1232: -- Return the plsql record structure.
1233: --
1234: hr_utility.set_location('total rate before '||l_rec.TTL_COMP_LVL_FCTR_ID, 99);
1235: hr_utility.set_location(' Leaving:'||l_proc, 10);
1236: Return(l_rec);
1237: --
1238: End convert_args;
1239: --