DBA Data[Home] [Help]

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

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

57: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
58: fnd_message.raise_error;
59: End If;
60: --
61: hr_utility.set_location(' Leaving:'||l_proc, 10);
62: End constraint_error;
63: --
64: -- ----------------------------------------------------------------------------
65: -- |-----------------------------< api_updating >-----------------------------|

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

130: l_proc varchar2(72) := g_package||'api_updating';
131: l_fct_ret boolean;
132: --
133: Begin
134: hr_utility.set_location('Entering:'||l_proc, 5);
135: --
136: If (
137: p_los_fctr_id is null and
138: p_object_version_number is null

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

146: If (
147: p_los_fctr_id = g_old_rec.los_fctr_id and
148: p_object_version_number = g_old_rec.object_version_number
149: ) Then
150: hr_utility.set_location(l_proc, 10);
151: --
152: -- The g_old_rec is current therefore we must
153: -- set the returning function to true
154: --

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

171: If (p_object_version_number <> g_old_rec.object_version_number) Then
172: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
173: fnd_message.raise_error;
174: End If;
175: hr_utility.set_location(l_proc, 15);
176: l_fct_ret := true;
177: End If;
178: End If;
179: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

175: hr_utility.set_location(l_proc, 15);
176: l_fct_ret := true;
177: End If;
178: End If;
179: hr_utility.set_location(' Leaving:'||l_proc, 20);
180: Return (l_fct_ret);
181: --
182: End api_updating;
183: --

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

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

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

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

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

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

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

406: l_rec.use_overid_svc_dt_flag := p_use_overid_svc_dt_flag;
407: --
408: -- Return the plsql record structure.
409: --
410: hr_utility.set_location(' Leaving:'||l_proc, 10);
411: Return(l_rec);
412: --
413: End convert_args;
414: --