DBA Data[Home] [Help]

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

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

49: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
50: fnd_message.raise_error;
51: End If;
52: --
53: hr_utility.set_location(' Leaving:'||l_proc, 10);
54: End constraint_error;
55: --
56: -- ----------------------------------------------------------------------------
57: -- |-----------------------------< api_updating >-----------------------------|

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

186: l_proc varchar2(72) := g_package||'api_updating';
187: l_fct_ret boolean;
188: --
189: Begin
190: hr_utility.set_location('Entering:'||l_proc, 5);
191: --
192: If (p_effective_date is null or
193: p_pgm_id is null or
194: p_object_version_number is null) Then

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

199: l_fct_ret := false;
200: Else
201: If (p_pgm_id = g_old_rec.pgm_id and
202: p_object_version_number = g_old_rec.object_version_number) Then
203: hr_utility.set_location(l_proc, 10);
204: --
205: -- The g_old_rec is current therefore we must
206: -- set the returning function to true
207: --

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

224: If (p_object_version_number <> g_old_rec.object_version_number) Then
225: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
226: fnd_message.raise_error;
227: End If;
228: hr_utility.set_location(l_proc, 15);
229: l_fct_ret := true;
230: End If;
231: End If;
232: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

228: hr_utility.set_location(l_proc, 15);
229: l_fct_ret := true;
230: End If;
231: End If;
232: hr_utility.set_location(' Leaving:'||l_proc, 20);
233: Return (l_fct_ret);
234: --
235: End api_updating;
236: --

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

266: and p_effective_date
267: between t.effective_start_date and t.effective_end_date;
268: --
269: Begin
270: hr_utility.set_location('Entering:'||l_proc, 5);
271: Open C_Sel1;
272: Fetch C_Sel1 Into l_parent_key_value1,
273: l_parent_key_value2,
274: l_parent_key_value3,

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

313: p_delete => p_delete,
314: p_future_change => p_future_change,
315: p_delete_next_change => p_delete_next_change);
316: --
317: hr_utility.set_location(' Leaving:'||l_proc, 10);
318: End find_dt_del_modes;
319: --
320: -- ----------------------------------------------------------------------------
321: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

330: --
331: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
332: --
333: Begin
334: hr_utility.set_location('Entering:'||l_proc, 5);
335: --
336: -- Call the corresponding datetrack api
337: --
338: dt_api.find_dt_upd_modes

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

344: p_update => p_update,
345: p_update_override => p_update_override,
346: p_update_change_insert => p_update_change_insert);
347: --
348: hr_utility.set_location(' Leaving:'||l_proc, 10);
349: End find_dt_upd_modes;
350: --
351: -- ----------------------------------------------------------------------------
352: -- |------------------------< upd_effective_end_date >------------------------|

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

362: l_proc varchar2(72) := g_package||'upd_effective_end_date';
363: l_object_version_number number;
364: --
365: Begin
366: hr_utility.set_location('Entering:'||l_proc, 5);
367: --
368: -- Because we are updating a row we must get the next object
369: -- version number.
370: --

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

373: (p_base_table_name => 'ben_pgm_f',
374: p_base_key_column => 'pgm_id',
375: p_base_key_value => p_base_key_value);
376: --
377: hr_utility.set_location(l_proc, 10);
378: g_api_dml := true; -- Set the api dml status
379: --
380: -- Update the specified datetrack row setting the effective
381: -- end date to the specified new effective end date.

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

388: between t.effective_start_date and t.effective_end_date;
389: --
390: g_api_dml := false; -- Unset the api dml status
391: p_object_version_number := l_object_version_number;
392: hr_utility.set_location(' Leaving:'||l_proc, 15);
393: --
394: Exception
395: When Others Then
396: g_api_dml := false; -- Unset the api dml status

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

538: --
539: --
540: --
541: Begin
542: hr_utility.set_location('Entering:'||l_proc, 5);
543: --
544: -- Ensure that all the mandatory arguments are not null
545: --
546: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

579: If (p_object_version_number <> g_old_rec.object_version_number) Then
580: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
581: fnd_message.raise_error;
582: End If;
583: hr_utility.set_location(l_proc, 15);
584: --
585: --
586: -- Validate the datetrack mode mode getting the validation start
587: -- and end dates for the specified datetrack operation.

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

682: --
683: p_validation_start_date := l_validation_start_date;
684: p_validation_end_date := l_validation_end_date;
685: --
686: hr_utility.set_location(' Leaving:'||l_proc, 30);
687: --
688: -- We need to trap the ORA LOCK exception
689: --
690: Exception

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

828: l_proc varchar2(72) := g_package||'convert_args';
829: --
830: Begin
831: --
832: hr_utility.set_location('Entering:'||l_proc, 5);
833: --
834: -- Convert arguments into local l_rec structure.
835: --
836: l_rec.pgm_id := p_pgm_id;

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

946: l_rec.all_inelig := p_all_inelig;
947: --
948: -- Return the plsql record structure.
949: --
950: hr_utility.set_location(' Leaving:'||l_proc, 10);
951: Return(l_rec);
952: --
953: End convert_args;
954: --