DBA Data[Home] [Help]

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

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

49: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
50: fnd_message.raise_error;
51: End If;
52: --
53: hr_utility.set_location(' Leaving:'||l_proc, 10);
54: End constraint_error;
55: --
56: -- ----------------------------------------------------------------------------
57: -- |-----------------------------< api_updating >-----------------------------|

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

124: l_proc varchar2(72) := g_package||'api_updating';
125: l_fct_ret boolean;
126: --
127: Begin
128: hr_utility.set_location('Entering:'||l_proc, 5);
129: --
130: If (
131: p_elig_dpnt_id is null and
132: p_object_version_number is null

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

140: If (
141: p_elig_dpnt_id = g_old_rec.elig_dpnt_id and
142: p_object_version_number = g_old_rec.object_version_number
143: ) Then
144: hr_utility.set_location(l_proc, 10);
145: --
146: -- The g_old_rec is current therefore we must
147: -- set the returning function to true
148: --

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

165: If (p_object_version_number <> g_old_rec.object_version_number) Then
166: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
167: fnd_message.raise_error;
168: End If;
169: hr_utility.set_location(l_proc, 15);
170: l_fct_ret := true;
171: End If;
172: End If;
173: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

169: hr_utility.set_location(l_proc, 15);
170: l_fct_ret := true;
171: End If;
172: End If;
173: hr_utility.set_location(' Leaving:'||l_proc, 20);
174: Return (l_fct_ret);
175: --
176: End api_updating;
177: --

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

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

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

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

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

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

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

406: l_rec.object_version_number := p_object_version_number;
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: --