DBA Data[Home] [Help]

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

179: l_proc varchar2(72) := g_package||'api_updating';
180: l_fct_ret boolean;
181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: If (p_effective_date is null or
186: p_ptip_id is null or
187: p_object_version_number is null) Then

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

192: l_fct_ret := false;
193: Else
194: If (p_ptip_id = g_old_rec.ptip_id and
195: p_object_version_number = g_old_rec.object_version_number) Then
196: hr_utility.set_location(l_proc, 10);
197: --
198: -- The g_old_rec is current therefore we must
199: -- set the returning function to true
200: --

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

217: If (p_object_version_number <> g_old_rec.object_version_number) Then
218: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
219: fnd_message.raise_error;
220: End If;
221: hr_utility.set_location(l_proc, 15);
222: l_fct_ret := true;
223: End If;
224: End If;
225: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

221: hr_utility.set_location(l_proc, 15);
222: l_fct_ret := true;
223: End If;
224: End If;
225: hr_utility.set_location(' Leaving:'||l_proc, 20);
226: Return (l_fct_ret);
227: --
228: End api_updating;
229: --

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

257: and p_effective_date
258: between t.effective_start_date and t.effective_end_date;
259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: Open C_Sel1;
263: Fetch C_Sel1 Into l_parent_key_value1,
264: l_parent_key_value2,
265: l_parent_key_value3,

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

300: p_delete => p_delete,
301: p_future_change => p_future_change,
302: p_delete_next_change => p_delete_next_change);
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 10);
305: End find_dt_del_modes;
306: --
307: -- ----------------------------------------------------------------------------
308: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

317: --
318: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
319: --
320: Begin
321: hr_utility.set_location('Entering:'||l_proc, 5);
322: --
323: -- Call the corresponding datetrack api
324: --
325: dt_api.find_dt_upd_modes

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

331: p_update => p_update,
332: p_update_override => p_update_override,
333: p_update_change_insert => p_update_change_insert);
334: --
335: hr_utility.set_location(' Leaving:'||l_proc, 10);
336: End find_dt_upd_modes;
337: --
338: -- ----------------------------------------------------------------------------
339: -- |------------------------< upd_effective_end_date >------------------------|

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

349: l_proc varchar2(72) := g_package||'upd_effective_end_date';
350: l_object_version_number number;
351: --
352: Begin
353: hr_utility.set_location('Entering:'||l_proc, 5);
354: --
355: -- Because we are updating a row we must get the next object
356: -- version number.
357: --

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

360: (p_base_table_name => 'ben_ptip_f',
361: p_base_key_column => 'ptip_id',
362: p_base_key_value => p_base_key_value);
363: --
364: hr_utility.set_location(l_proc, 10);
365: g_api_dml := true; -- Set the api dml status
366: --
367: -- Update the specified datetrack row setting the effective
368: -- end date to the specified new effective end date.

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

375: between t.effective_start_date and t.effective_end_date;
376: --
377: g_api_dml := false; -- Unset the api dml status
378: p_object_version_number := l_object_version_number;
379: hr_utility.set_location(' Leaving:'||l_proc, 15);
380: --
381: Exception
382: When Others Then
383: g_api_dml := false; -- Unset the api dml status

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

518: --
519: --
520: --
521: Begin
522: hr_utility.set_location('Entering:'||l_proc, 5);
523: --
524: -- Ensure that all the mandatory arguments are not null
525: --
526: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

559: If (p_object_version_number <> g_old_rec.object_version_number) Then
560: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
561: fnd_message.raise_error;
562: End If;
563: hr_utility.set_location(l_proc, 15);
564: --
565: --
566: -- Validate the datetrack mode mode getting the validation start
567: -- and end dates for the specified datetrack operation.

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

617: --
618: p_validation_start_date := l_validation_start_date;
619: p_validation_end_date := l_validation_end_date;
620: --
621: hr_utility.set_location(' Leaving:'||l_proc, 30);
622: --
623: -- We need to trap the ORA LOCK exception
624: --
625: Exception

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

756: l_proc varchar2(72) := g_package||'convert_args';
757: --
758: Begin
759: --
760: hr_utility.set_location('Entering:'||l_proc, 5);
761: --
762: -- Convert arguments into local l_rec structure.
763: --
764: l_rec.ptip_id := p_ptip_id;

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

867: l_rec.all_inelig := p_all_inelig;
868: --
869: -- Return the plsql record structure.
870: --
871: hr_utility.set_location(' Leaving:'||l_proc, 10);
872: Return(l_rec);
873: --
874: End convert_args;
875: --