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 136: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

637:
638: --
639: -- Return the plsql record structure.
640: --
641: hr_utility.set_location(' Leaving:'||l_proc, 10);
642: Return(l_rec);
643: --
644: End convert_args;
645: --