DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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