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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

863: l_rec.object_version_number := p_object_version_number;
864: --
865: -- Return the plsql record structure.
866: --
867: hr_utility.set_location(' Leaving:'||l_proc, 10);
868: Return(l_rec);
869: --
870: End convert_args;
871: --