DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

355: l_rec.pl_gd_or_svc_id := p_pl_gd_or_svc_id ;
356: --
357: -- Return the plsql record structure.
358: --
359: hr_utility.set_location(' Leaving:'||l_proc, 10);
360: Return(l_rec);
361: --
362: End convert_args;
363: --