DBA Data[Home] [Help]

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

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

63: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
64: fnd_message.raise_error;
65: End If;
66: --
67: hr_utility.set_location(' Leaving:'||l_proc, 10);
68: End constraint_error;
69: --
70: -- ----------------------------------------------------------------------------
71: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

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

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

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

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

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

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

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

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

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

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

329: l_proc varchar2(72) := g_package||'convert_args';
330: --
331: Begin
332: --
333: hr_utility.set_location('Entering:'||l_proc, 5);
334: --
335: -- Convert arguments into local l_rec structure.
336: --
337: l_rec.cmbn_age_los_fctr_id := p_cmbn_age_los_fctr_id;

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

376: l_rec.name := p_name;
377: --
378: -- Return the plsql record structure.
379: --
380: hr_utility.set_location(' Leaving:'||l_proc, 10);
381: Return(l_rec);
382: --
383: End convert_args;
384: --