DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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