DBA Data[Home] [Help]

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

39:
40: l_name ben_ext_file.name%type ;
41: --
42: Begin
43: hr_utility.set_location('Entering:'||l_proc, 5);
44: --
45: If (p_constraint_name = 'BEN_EXT_RCD_FK1') Then
46: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
47: 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 143: hr_utility.set_location('Entering:'||l_proc, 5);

139: l_proc varchar2(72) := g_package||'api_updating';
140: l_fct_ret boolean;
141: --
142: Begin
143: hr_utility.set_location('Entering:'||l_proc, 5);
144: --
145: If (
146: p_ext_rcd_id is null and
147: p_object_version_number is null

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

155: If (
156: p_ext_rcd_id = g_old_rec.ext_rcd_id and
157: p_object_version_number = g_old_rec.object_version_number
158: ) Then
159: hr_utility.set_location(l_proc, 10);
160: --
161: -- The g_old_rec is current therefore we must
162: -- set the returning function to true
163: --

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

180: If (p_object_version_number <> g_old_rec.object_version_number) Then
181: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
182: fnd_message.raise_error;
183: End If;
184: hr_utility.set_location(l_proc, 15);
185: l_fct_ret := true;
186: End If;
187: End If;
188: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

184: hr_utility.set_location(l_proc, 15);
185: l_fct_ret := true;
186: End If;
187: End If;
188: hr_utility.set_location(' Leaving:'||l_proc, 20);
189: Return (l_fct_ret);
190: --
191: End api_updating;
192: --

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

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

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

277: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
278: fnd_message.raise_error;
279: End If;
280: --
281: hr_utility.set_location(' Leaving:'||l_proc, 10);
282: --
283: -- We need to trap the ORA LOCK exception
284: --
285: Exception

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

349: l_proc varchar2(72) := g_package||'convert_args';
350: --
351: Begin
352: --
353: hr_utility.set_location('Entering:'||l_proc, 5);
354: --
355: -- Convert arguments into local l_rec structure.
356: --
357: l_rec.ext_rcd_id := p_ext_rcd_id;

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

400: l_rec.object_version_number := p_object_version_number;
401: --
402: -- Return the plsql record structure.
403: --
404: hr_utility.set_location(' Leaving:'||l_proc, 10);
405: Return(l_rec);
406: --
407: End convert_args;
408: --