DBA Data[Home] [Help]

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

147: l_proc varchar2(72) := g_package||'api_updating';
148: l_fct_ret boolean;
149: --
150: Begin
151: hr_utility.set_location('Entering:'||l_proc, 5);
152: --
153: If (
154: p_prtt_rt_val_id is null and
155: p_object_version_number is null

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

163: If (
164: p_prtt_rt_val_id = g_old_rec.prtt_rt_val_id and
165: p_object_version_number = g_old_rec.object_version_number
166: ) Then
167: hr_utility.set_location(l_proc, 10);
168: --
169: -- The g_old_rec is current therefore we must
170: -- set the returning function to true
171: --

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

188: If (p_object_version_number <> g_old_rec.object_version_number) Then
189: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
190: fnd_message.raise_error;
191: End If;
192: hr_utility.set_location(l_proc, 15);
193: l_fct_ret := true;
194: End If;
195: End If;
196: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

192: hr_utility.set_location(l_proc, 15);
193: l_fct_ret := true;
194: End If;
195: End If;
196: hr_utility.set_location(' Leaving:'||l_proc, 20);
197: Return (l_fct_ret);
198: --
199: End api_updating;
200: --

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

282: --
283: l_proc varchar2(72) := g_package||'lck';
284: --
285: Begin
286: hr_utility.set_location('Entering:'||l_proc, 5);
287: --
288: --
289: -- Ensure that all the mandatory arguments are not null
290: --

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

310: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
311: fnd_message.raise_error;
312: End If;
313: --
314: hr_utility.set_location(' Leaving:'||l_proc, 10);
315: --
316: -- We need to trap the ORA LOCK exception
317: --
318: Exception

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

404: l_proc varchar2(72) := g_package||'convert_args';
405: --
406: Begin
407: --
408: hr_utility.set_location('Entering:'||l_proc, 5);
409: --
410: -- Convert arguments into local l_rec structure.
411: --
412: l_rec.prtt_rt_val_id := p_prtt_rt_val_id;

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

477: l_rec.object_version_number := p_object_version_number;
478: --
479: -- Return the plsql record structure.
480: --
481: hr_utility.set_location(' Leaving:'||l_proc, 10);
482: Return(l_rec);
483: --
484: End convert_args;
485: --