DBA Data[Home] [Help]

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

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

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

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

114: l_proc varchar2(72) := g_package||'api_updating';
115: l_fct_ret boolean;
116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: If (
121: p_crt_ordr_cvrd_per_id is null and
122: p_object_version_number is null

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

130: If (
131: p_crt_ordr_cvrd_per_id = g_old_rec.crt_ordr_cvrd_per_id and
132: p_object_version_number = g_old_rec.object_version_number
133: ) Then
134: hr_utility.set_location(l_proc, 10);
135: --
136: -- The g_old_rec is current therefore we must
137: -- set the returning function to true
138: --

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

155: If (p_object_version_number <> g_old_rec.object_version_number) Then
156: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
157: fnd_message.raise_error;
158: End If;
159: hr_utility.set_location(l_proc, 15);
160: l_fct_ret := true;
161: End If;
162: End If;
163: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

159: hr_utility.set_location(l_proc, 15);
160: l_fct_ret := true;
161: End If;
162: End If;
163: hr_utility.set_location(' Leaving:'||l_proc, 20);
164: Return (l_fct_ret);
165: --
166: End api_updating;
167: --

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

219: --
220: l_proc varchar2(72) := g_package||'lck';
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: --
225: -- Add any mandatory argument checking here:
226: -- Example:
227: -- hr_api.mandatory_arg_error

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

244: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
245: fnd_message.raise_error;
246: End If;
247: --
248: hr_utility.set_location(' Leaving:'||l_proc, 10);
249: --
250: -- We need to trap the ORA LOCK exception
251: --
252: Exception

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

308: l_proc varchar2(72) := g_package||'convert_args';
309: --
310: Begin
311: --
312: hr_utility.set_location('Entering:'||l_proc, 5);
313: --
314: -- Convert arguments into local l_rec structure.
315: --
316: l_rec.crt_ordr_cvrd_per_id := p_crt_ordr_cvrd_per_id;

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

351: l_rec.object_version_number := p_object_version_number;
352: --
353: -- Return the plsql record structure.
354: --
355: hr_utility.set_location(' Leaving:'||l_proc, 10);
356: Return(l_rec);
357: --
358: End convert_args;
359: --