DBA Data[Home] [Help]

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

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

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

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

127: l_proc varchar2(72) := g_package||'api_updating';
128: l_fct_ret boolean;
129: --
130: Begin
131: hr_utility.set_location('Entering:'||l_proc, 5);
132: --
133: If (
134: p_crt_ordr_id is null and
135: p_object_version_number is null

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

143: If (
144: p_crt_ordr_id = g_old_rec.crt_ordr_id and
145: p_object_version_number = g_old_rec.object_version_number
146: ) Then
147: hr_utility.set_location(l_proc, 10);
148: --
149: -- The g_old_rec is current therefore we must
150: -- set the returning function to true
151: --

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

168: If (p_object_version_number <> g_old_rec.object_version_number) Then
169: fnd_message.set_name('BEN', 'HR_7155_OBJECT_INVALID');
170: fnd_message.raise_error;
171: End If;
172: hr_utility.set_location(l_proc, 15);
173: l_fct_ret := true;
174: End If;
175: End If;
176: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

172: hr_utility.set_location(l_proc, 15);
173: l_fct_ret := true;
174: End If;
175: End If;
176: hr_utility.set_location(' Leaving:'||l_proc, 20);
177: Return (l_fct_ret);
178: --
179: End api_updating;
180: --

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

248: --
249: l_proc varchar2(72) := g_package||'lck';
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: -- Add any mandatory argument checking here:
255: -- Example:
256: -- hr_api.mandatory_arg_error

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

273: fnd_message.set_name('BEN', 'HR_7155_OBJECT_INVALID');
274: fnd_message.raise_error;
275: End If;
276: --
277: hr_utility.set_location(' Leaving:'||l_proc, 10);
278: --
279: -- We need to trap the ORA LOCK exception
280: --
281: Exception

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

353: l_proc varchar2(72) := g_package||'convert_args';
354: --
355: Begin
356: --
357: hr_utility.set_location('Entering:'||l_proc, 5);
358: --
359: -- Convert arguments into local l_rec structure.
360: --
361: l_rec.crt_ordr_id := p_crt_ordr_id;

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

412: l_rec.pl_typ_id := p_pl_typ_id;
413: --
414: -- Return the plsql record structure.
415: --
416: hr_utility.set_location(' Leaving:'||l_proc, 10);
417: Return(l_rec);
418: --
419: End convert_args;
420: --