DBA Data[Home] [Help]

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

80:
81: l_name ben_ext_file.name%TYPE; -- UTF8 varchar2(100);
82: --
83: Begin
84: hr_utility.set_location('Entering:'||l_proc, 5);
85: --
86: If (p_constraint_name = 'BEN_EXT_RCD_IN_FILE_FK1') Then
87: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
88: fnd_message.set_token('PROCEDURE', l_proc);

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

155: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
156: fnd_message.raise_error;
157: End If;
158: --
159: hr_utility.set_location(' Leaving:'||l_proc, 10);
160: End constraint_error;
161: --
162: -- ----------------------------------------------------------------------------
163: -- |-----------------------------< api_updating >-----------------------------|

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

197: l_proc varchar2(72) := g_package||'api_updating';
198: l_fct_ret boolean;
199: --
200: Begin
201: hr_utility.set_location('Entering:'||l_proc, 5);
202: --
203: If (
204: p_ext_data_elmt_in_rcd_id is null and
205: p_object_version_number is null

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

213: If (
214: p_ext_data_elmt_in_rcd_id = g_old_rec.ext_data_elmt_in_rcd_id and
215: p_object_version_number = g_old_rec.object_version_number
216: ) Then
217: hr_utility.set_location(l_proc, 10);
218: --
219: -- The g_old_rec is current therefore we must
220: -- set the returning function to true
221: --

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

238: If (p_object_version_number <> g_old_rec.object_version_number) Then
239: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
240: fnd_message.raise_error;
241: End If;
242: hr_utility.set_location(l_proc, 15);
243: l_fct_ret := true;
244: End If;
245: End If;
246: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

242: hr_utility.set_location(l_proc, 15);
243: l_fct_ret := true;
244: End If;
245: End If;
246: hr_utility.set_location(' Leaving:'||l_proc, 20);
247: Return (l_fct_ret);
248: --
249: End api_updating;
250: --

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

284: --
285: l_proc varchar2(72) := g_package||'lck';
286: --
287: Begin
288: hr_utility.set_location('Entering:'||l_proc, 5);
289: --
290: -- Add any mandatory argument checking here:
291: -- Example:
292: -- hr_api.mandatory_arg_error

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

309: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
310: fnd_message.raise_error;
311: End If;
312: --
313: hr_utility.set_location(' Leaving:'||l_proc, 10);
314: --
315: -- We need to trap the ORA LOCK exception
316: --
317: Exception

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

355: l_proc varchar2(72) := g_package||'convert_args';
356: --
357: Begin
358: --
359: hr_utility.set_location('Entering:'||l_proc, 5);
360: --
361: -- Convert arguments into local l_rec structure.
362: --
363: l_rec.ext_data_elmt_in_rcd_id := p_ext_data_elmt_in_rcd_id;

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

380: l_rec.hide_flag := p_hide_flag;
381: --
382: -- Return the plsql record structure.
383: --
384: hr_utility.set_location(' Leaving:'||l_proc, 10);
385: Return(l_rec);
386: --
387: End convert_args;
388: --