DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

201: and p_effective_date
202: between t.effective_start_date and t.effective_end_date;
203: --
204: Begin
205: hr_utility.set_location('Entering:'||l_proc, 5);
206: Open C_Sel1;
207: Fetch C_Sel1 Into l_parent_key_value1;
208: If C_Sel1%notfound then
209: Close C_Sel1;

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

228: p_delete => p_delete,
229: p_future_change => p_future_change,
230: p_delete_next_change => p_delete_next_change);
231: --
232: hr_utility.set_location(' Leaving:'||l_proc, 10);
233: End find_dt_del_modes;
234: --
235: -- ----------------------------------------------------------------------------
236: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

245: --
246: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
247: --
248: Begin
249: hr_utility.set_location('Entering:'||l_proc, 5);
250: --
251: -- Call the corresponding datetrack api
252: --
253: dt_api.find_dt_upd_modes

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

259: p_update => p_update,
260: p_update_override => p_update_override,
261: p_update_change_insert => p_update_change_insert);
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);
264: End find_dt_upd_modes;
265: --
266: -- ----------------------------------------------------------------------------
267: -- |------------------------< upd_effective_end_date >------------------------|

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

277: l_proc varchar2(72) := g_package||'upd_effective_end_date';
278: l_object_version_number number;
279: --
280: Begin
281: hr_utility.set_location('Entering:'||l_proc, 5);
282: --
283: -- Because we are updating a row we must get the next object
284: -- version number.
285: --

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

288: (p_base_table_name => 'ben_dpnt_cvg_eligy_prfl_f',
289: p_base_key_column => 'dpnt_cvg_eligy_prfl_id',
290: p_base_key_value => p_base_key_value);
291: --
292: hr_utility.set_location(l_proc, 10);
293: g_api_dml := true; -- Set the api dml status
294: --
295: -- Update the specified datetrack row setting the effective
296: -- end date to the specified new effective end date.

Line 307: hr_utility.set_location(' Leaving:'||l_proc, 15);

303: between t.effective_start_date and t.effective_end_date;
304: --
305: g_api_dml := false; -- Unset the api dml status
306: p_object_version_number := l_object_version_number;
307: hr_utility.set_location(' Leaving:'||l_proc, 15);
308: --
309: Exception
310: When Others Then
311: g_api_dml := false; -- Unset the api dml status

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

393: --
394: --
395: --
396: Begin
397: hr_utility.set_location('Entering:'||l_proc, 5);
398: --
399: -- Ensure that all the mandatory arguments are not null
400: --
401: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

434: If (p_object_version_number <> g_old_rec.object_version_number) Then
435: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
436: fnd_message.raise_error;
437: End If;
438: hr_utility.set_location(l_proc, 15);
439: --
440: --
441: -- Validate the datetrack mode mode getting the validation start
442: -- and end dates for the specified datetrack operation.

Line 492: hr_utility.set_location(' Leaving:'||l_proc, 30);

488: --
489: p_validation_start_date := l_validation_start_date;
490: p_validation_end_date := l_validation_end_date;
491: --
492: hr_utility.set_location(' Leaving:'||l_proc, 30);
493: --
494: -- We need to trap the ORA LOCK exception
495: --
496: Exception

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

574: l_proc varchar2(72) := g_package||'convert_args';
575: --
576: Begin
577: --
578: hr_utility.set_location('Entering:'||l_proc, 5);
579: --
580: -- Convert arguments into local l_rec structure.
581: --
582: l_rec.dpnt_cvg_eligy_prfl_id := p_dpnt_cvg_eligy_prfl_id;

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

633:
634: --
635: -- Return the plsql record structure.
636: --
637: hr_utility.set_location(' Leaving:'||l_proc, 10);
638: Return(l_rec);
639: --
640: End convert_args;
641: --