DBA Data[Home] [Help]

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

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

71: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
72: fnd_message.raise_error;
73: End If;
74: --
75: hr_utility.set_location(' Leaving:'||l_proc, 10);
76: End constraint_error;
77: --
78: -- ----------------------------------------------------------------------------
79: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

166: If (
167: p_comp_lvl_fctr_id = g_old_rec.comp_lvl_fctr_id and
168: p_object_version_number = g_old_rec.object_version_number
169: ) Then
170: hr_utility.set_location(l_proc, 10);
171: --
172: -- The g_old_rec is current therefore we must
173: -- set the returning function to true
174: --

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

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

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

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

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

274: --
275: l_proc varchar2(72) := g_package||'lck';
276: --
277: Begin
278: hr_utility.set_location('Entering:'||l_proc, 5);
279: --
280: -- Add any mandatory argument checking here:
281: -- Example:
282: -- hr_api.mandatory_arg_error

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

299: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
300: fnd_message.raise_error;
301: End If;
302: --
303: hr_utility.set_location(' Leaving:'||l_proc, 10);
304: --
305: -- We need to trap the ORA LOCK exception
306: --
307: Exception

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

382: l_proc varchar2(72) := g_package||'convert_args';
383: --
384: Begin
385: --
386: hr_utility.set_location('Entering:'||l_proc, 5);
387: --
388: -- Convert arguments into local l_rec structure.
389: --
390: l_rec.comp_lvl_fctr_id := p_comp_lvl_fctr_id;

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

444: l_rec.sttd_sal_prdcty_cd := p_sttd_sal_prdcty_cd;
445: --
446: -- Return the plsql record structure.
447: --
448: hr_utility.set_location(' Leaving:'||l_proc, 10);
449: Return(l_rec);
450: --
451: End convert_args;
452: --