DBA Data[Home] [Help]

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

170: l_proc varchar2(72) := g_package||'api_updating';
171: l_fct_ret boolean;
172: --
173: Begin
174: hr_utility.set_location('Entering:'||l_proc, 5);
175: --
176: If (p_effective_date is null or
177: p_plip_id is null or
178: p_object_version_number is null) Then

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

183: l_fct_ret := false;
184: Else
185: If (p_plip_id = g_old_rec.plip_id and
186: p_object_version_number = g_old_rec.object_version_number) Then
187: hr_utility.set_location(l_proc, 10);
188: --
189: -- The g_old_rec is current therefore we must
190: -- set the returning function to true
191: --

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

208: If (p_object_version_number <> g_old_rec.object_version_number) Then
209: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
210: fnd_message.raise_error;
211: End If;
212: hr_utility.set_location(l_proc, 15);
213: l_fct_ret := true;
214: End If;
215: End If;
216: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

212: hr_utility.set_location(l_proc, 15);
213: l_fct_ret := true;
214: End If;
215: End If;
216: hr_utility.set_location(' Leaving:'||l_proc, 20);
217: Return (l_fct_ret);
218: --
219: End api_updating;
220: --

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

246: and p_effective_date
247: between t.effective_start_date and t.effective_end_date;
248: --
249: Begin
250: hr_utility.set_location('Entering:'||l_proc, 5);
251: Open C_Sel1;
252: Fetch C_Sel1 Into l_parent_key_value1,
253: l_parent_key_value2,
254: l_parent_key_value3,

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

285: p_delete => p_delete,
286: p_future_change => p_future_change,
287: p_delete_next_change => p_delete_next_change);
288: --
289: hr_utility.set_location(' Leaving:'||l_proc, 10);
290: End find_dt_del_modes;
291: --
292: -- ----------------------------------------------------------------------------
293: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

302: --
303: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
304: --
305: Begin
306: hr_utility.set_location('Entering:'||l_proc, 5);
307: --
308: -- Call the corresponding datetrack api
309: --
310: dt_api.find_dt_upd_modes

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

316: p_update => p_update,
317: p_update_override => p_update_override,
318: p_update_change_insert => p_update_change_insert);
319: --
320: hr_utility.set_location(' Leaving:'||l_proc, 10);
321: End find_dt_upd_modes;
322: --
323: -- ----------------------------------------------------------------------------
324: -- |------------------------< upd_effective_end_date >------------------------|

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

334: l_proc varchar2(72) := g_package||'upd_effective_end_date';
335: l_object_version_number number;
336: --
337: Begin
338: hr_utility.set_location('Entering:'||l_proc, 5);
339: --
340: -- Because we are updating a row we must get the next object
341: -- version number.
342: --

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

345: (p_base_table_name => 'ben_plip_f',
346: p_base_key_column => 'plip_id',
347: p_base_key_value => p_base_key_value);
348: --
349: hr_utility.set_location(l_proc, 10);
350: g_api_dml := true; -- Set the api dml status
351: --
352: -- Update the specified datetrack row setting the effective
353: -- end date to the specified new effective end date.

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

360: between t.effective_start_date and t.effective_end_date;
361: --
362: g_api_dml := false; -- Unset the api dml status
363: p_object_version_number := l_object_version_number;
364: hr_utility.set_location(' Leaving:'||l_proc, 15);
365: --
366: Exception
367: When Others Then
368: g_api_dml := false; -- Unset the api dml status

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

494: --
495: --
496: --
497: Begin
498: hr_utility.set_location('Entering:'||l_proc, 5);
499: --
500: -- Ensure that all the mandatory arguments are not null
501: --
502: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

535: If (p_object_version_number <> g_old_rec.object_version_number) Then
536: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
537: fnd_message.raise_error;
538: End If;
539: hr_utility.set_location(l_proc, 15);
540: --
541: --
542: -- Validate the datetrack mode mode getting the validation start
543: -- and end dates for the specified datetrack operation.

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

581: --
582: p_validation_start_date := l_validation_start_date;
583: p_validation_end_date := l_validation_end_date;
584: --
585: hr_utility.set_location(' Leaving:'||l_proc, 30);
586: --
587: -- We need to trap the ORA LOCK exception
588: --
589: Exception

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

711: l_proc varchar2(72) := g_package||'convert_args';
712: --
713: Begin
714: --
715: hr_utility.set_location('Entering:'||l_proc, 5);
716: --
717: -- Convert arguments into local l_rec structure.
718: --
719: l_rec.plip_id := p_plip_id;

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

813: l_rec.all_inelig := p_all_inelig;
814: --
815: -- Return the plsql record structure.
816: --
817: hr_utility.set_location(' Leaving:'||l_proc, 10);
818: Return(l_rec);
819: --
820: End convert_args;
821: --