DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

235: --
236: l_proc varchar2(72) := g_package||'lck';
237: --
238: Begin
239: hr_utility.set_location('Entering:'||l_proc, 5);
240: --
241: -- Add any mandatory argument checking here:
242: -- Example:
243: -- hr_api.mandatory_arg_error

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

260: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
261: fnd_message.raise_error;
262: End If;
263: --
264: hr_utility.set_location(' Leaving:'||l_proc, 10);
265: --
266: -- We need to trap the ORA LOCK exception
267: --
268: Exception

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

332: l_proc varchar2(72) := g_package||'convert_args';
333: --
334: Begin
335: --
336: hr_utility.set_location('Entering:'||l_proc, 5);
337: --
338: -- Convert arguments into local l_rec structure.
339: --
340: l_rec.elctbl_chc_ctfn_id := p_elctbl_chc_ctfn_id;

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

383: l_rec.object_version_number := p_object_version_number;
384: --
385: -- Return the plsql record structure.
386: --
387: hr_utility.set_location(' Leaving:'||l_proc, 10);
388: Return(l_rec);
389: --
390: End convert_args;
391: --