DBA Data[Home] [Help]

APPS.BEN_PRC_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:

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

33: --
34: l_proc varchar2(72) := g_package||'constraint_error';
35: --
36: Begin
37: hr_utility.set_location('Entering:'||l_proc, 5);
38: --
39: If (p_constraint_name = 'BEN_PRTT_REIMBMT_RQST_F_DT6') Then
40: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
41: fnd_message.set_token('PROCEDURE', l_proc);

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

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

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

162: l_proc varchar2(72) := g_package||'api_updating';
163: l_fct_ret boolean;
164: --
165: Begin
166: hr_utility.set_location('Entering:'||l_proc, 5);
167: --
168: If (p_effective_date is null or
169: p_prtt_reimbmt_rqst_id is null or
170: p_object_version_number is null) Then

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

175: l_fct_ret := false;
176: Else
177: If (p_prtt_reimbmt_rqst_id = g_old_rec.prtt_reimbmt_rqst_id and
178: p_object_version_number = g_old_rec.object_version_number) Then
179: hr_utility.set_location(l_proc, 10);
180: --
181: -- The g_old_rec is current therefore we must
182: -- set the returning function to true
183: --

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

200: If (p_object_version_number <> g_old_rec.object_version_number) Then
201: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
202: fnd_message.raise_error;
203: End If;
204: hr_utility.set_location(l_proc, 15);
205: l_fct_ret := true;
206: End If;
207: End If;
208: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

204: hr_utility.set_location(l_proc, 15);
205: l_fct_ret := true;
206: End If;
207: End If;
208: hr_utility.set_location(' Leaving:'||l_proc, 20);
209: Return (l_fct_ret);
210: --
211: End api_updating;
212: --

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

232: and p_effective_date
233: between t.effective_start_date and t.effective_end_date;
234: --
235: Begin
236: hr_utility.set_location('Entering:'||l_proc, 5);
237: Open C_Sel1;
238: Fetch C_Sel1 Into l_parent_key_value1;
239: If C_Sel1%notfound then
240: Close C_Sel1;

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

259: p_delete => p_delete,
260: p_future_change => p_future_change,
261: p_delete_next_change => p_delete_next_change);
262: --
263: hr_utility.set_location(' Leaving:'||l_proc, 10);
264: End find_dt_del_modes;
265: --
266: -- ----------------------------------------------------------------------------
267: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

276: --
277: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
278: --
279: Begin
280: hr_utility.set_location('Entering:'||l_proc, 5);
281: --
282: -- Call the corresponding datetrack api
283: --
284: dt_api.find_dt_upd_modes

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

290: p_update => p_update,
291: p_update_override => p_update_override,
292: p_update_change_insert => p_update_change_insert);
293: --
294: hr_utility.set_location(' Leaving:'||l_proc, 10);
295: End find_dt_upd_modes;
296: --
297: -- ----------------------------------------------------------------------------
298: -- |------------------------< upd_effective_end_date >------------------------|

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

308: l_proc varchar2(72) := g_package||'upd_effective_end_date';
309: l_object_version_number number;
310: --
311: Begin
312: hr_utility.set_location('Entering:'||l_proc, 5);
313: --
314: -- Because we are updating a row we must get the next object
315: -- version number.
316: --

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

319: (p_base_table_name => 'ben_prtt_reimbmt_rqst_f',
320: p_base_key_column => 'prtt_reimbmt_rqst_id',
321: p_base_key_value => p_base_key_value);
322: --
323: hr_utility.set_location(l_proc, 10);
324: g_api_dml := true; -- Set the api dml status
325: --
326: -- Update the specified datetrack row setting the effective
327: -- end date to the specified new effective end date.

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

334: between t.effective_start_date and t.effective_end_date;
335: --
336: g_api_dml := false; -- Unset the api dml status
337: p_object_version_number := l_object_version_number;
338: hr_utility.set_location(' Leaving:'||l_proc, 15);
339: --
340: Exception
341: When Others Then
342: g_api_dml := false; -- Unset the api dml status

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

447: --
448: --
449: --
450: Begin
451: hr_utility.set_location('Entering:'||l_proc, 5);
452: hr_utility.set_location('reimb rq id :'||p_prtt_reimbmt_rqst_id, 5);
453: hr_utility.set_location('effct dt '||p_effective_date, 5);
454: --
455: -- Ensure that all the mandatory arguments are not null

Line 452: hr_utility.set_location('reimb rq id :'||p_prtt_reimbmt_rqst_id, 5);

448: --
449: --
450: Begin
451: hr_utility.set_location('Entering:'||l_proc, 5);
452: hr_utility.set_location('reimb rq id :'||p_prtt_reimbmt_rqst_id, 5);
453: hr_utility.set_location('effct dt '||p_effective_date, 5);
454: --
455: -- Ensure that all the mandatory arguments are not null
456: --

Line 453: hr_utility.set_location('effct dt '||p_effective_date, 5);

449: --
450: Begin
451: hr_utility.set_location('Entering:'||l_proc, 5);
452: hr_utility.set_location('reimb rq id :'||p_prtt_reimbmt_rqst_id, 5);
453: hr_utility.set_location('effct dt '||p_effective_date, 5);
454: --
455: -- Ensure that all the mandatory arguments are not null
456: --
457: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

490: If (p_object_version_number <> g_old_rec.object_version_number) Then
491: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
492: fnd_message.raise_error;
493: End If;
494: hr_utility.set_location(l_proc, 15);
495: --
496: --
497: -- Validate the datetrack mode mode getting the validation start
498: -- and end dates for the specified datetrack operation.

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

525: --
526: p_validation_start_date := l_validation_start_date;
527: p_validation_end_date := l_validation_end_date;
528: --
529: hr_utility.set_location(' Leaving:'||l_proc, 30);
530: --
531: -- We need to trap the ORA LOCK exception
532: --
533: Exception

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

634: l_proc varchar2(72) := g_package||'convert_args';
635: --
636: Begin
637: --
638: hr_utility.set_location('Entering:'||l_proc, 5);
639: --
640: -- Convert arguments into local l_rec structure.
641: --
642: l_rec.prtt_reimbmt_rqst_id := p_prtt_reimbmt_rqst_id;

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

715: l_rec.exp_incurd_dt := p_exp_incurd_dt ;
716: --
717: -- Return the plsql record structure.
718: --
719: hr_utility.set_location(' Leaving:'||l_proc, 10);
720: Return(l_rec);
721: --
722: End convert_args;
723: --