DBA Data[Home] [Help]

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

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

54: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
55: fnd_message.raise_error;
56: End If;
57: --
58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: End constraint_error;
60: --
61: -- ----------------------------------------------------------------------------
62: -- |-----------------------------< api_updating >-----------------------------|

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

148: l_proc varchar2(72) := g_package||'api_updating';
149: l_fct_ret boolean;
150: --
151: Begin
152: hr_utility.set_location('Entering:'||l_proc, 5);
153: --
154: If (p_effective_date is null or
155: p_actl_prem_id is null or
156: p_object_version_number is null) Then

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

161: l_fct_ret := false;
162: Else
163: If (p_actl_prem_id = g_old_rec.actl_prem_id and
164: p_object_version_number = g_old_rec.object_version_number) Then
165: hr_utility.set_location(l_proc, 10);
166: --
167: -- The g_old_rec is current therefore we must
168: -- set the returning function to true
169: --

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

186: If (p_object_version_number <> g_old_rec.object_version_number) Then
187: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
188: fnd_message.raise_error;
189: End If;
190: hr_utility.set_location(l_proc, 15);
191: l_fct_ret := true;
192: End If;
193: End If;
194: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

190: hr_utility.set_location(l_proc, 15);
191: l_fct_ret := true;
192: End If;
193: End If;
194: hr_utility.set_location(' Leaving:'||l_proc, 20);
195: Return (l_fct_ret);
196: --
197: End api_updating;
198: --

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

218: and p_effective_date
219: between t.effective_start_date and t.effective_end_date;
220: --
221: Begin
222: hr_utility.set_location('Entering:'||l_proc, 5);
223: Open C_Sel1;
224: Fetch C_Sel1 Into l_parent_key_value1;
225: If C_Sel1%notfound then
226: Close C_Sel1;

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

245: p_delete => p_delete,
246: p_future_change => p_future_change,
247: p_delete_next_change => p_delete_next_change);
248: --
249: hr_utility.set_location(' Leaving:'||l_proc, 10);
250: End find_dt_del_modes;
251: --
252: -- ----------------------------------------------------------------------------
253: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

262: --
263: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
264: --
265: Begin
266: hr_utility.set_location('Entering:'||l_proc, 5);
267: --
268: -- Call the corresponding datetrack api
269: --
270: dt_api.find_dt_upd_modes

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

276: p_update => p_update,
277: p_update_override => p_update_override,
278: p_update_change_insert => p_update_change_insert);
279: --
280: hr_utility.set_location(' Leaving:'||l_proc, 10);
281: End find_dt_upd_modes;
282: --
283: -- ----------------------------------------------------------------------------
284: -- |------------------------< upd_effective_end_date >------------------------|

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

294: l_proc varchar2(72) := g_package||'upd_effective_end_date';
295: l_object_version_number number;
296: --
297: Begin
298: hr_utility.set_location('Entering:'||l_proc, 5);
299: --
300: -- Because we are updating a row we must get the next object
301: -- version number.
302: --

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

305: (p_base_table_name => 'ben_actl_prem_f',
306: p_base_key_column => 'actl_prem_id',
307: p_base_key_value => p_base_key_value);
308: --
309: hr_utility.set_location(l_proc, 10);
310: g_api_dml := true; -- Set the api dml status
311: --
312: -- Update the specified datetrack row setting the effective
313: -- end date to the specified new effective end date.

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

320: between t.effective_start_date and t.effective_end_date;
321: --
322: g_api_dml := false; -- Unset the api dml status
323: p_object_version_number := l_object_version_number;
324: hr_utility.set_location(' Leaving:'||l_proc, 15);
325: --
326: Exception
327: When Others Then
328: g_api_dml := false; -- Unset the api dml status

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

427: --
428: --
429: --
430: Begin
431: hr_utility.set_location('Entering:'||l_proc, 5);
432: --
433: -- Ensure that all the mandatory arguments are not null
434: --
435: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

468: If (p_object_version_number <> g_old_rec.object_version_number) Then
469: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
470: fnd_message.raise_error;
471: End If;
472: hr_utility.set_location(l_proc, 15);
473: --
474: --
475: -- Validate the datetrack mode mode getting the validation start
476: -- and end dates for the specified datetrack operation.

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

511: --
512: p_validation_start_date := l_validation_start_date;
513: p_validation_end_date := l_validation_end_date;
514: --
515: hr_utility.set_location(' Leaving:'||l_proc, 30);
516: --
517: -- We need to trap the ORA LOCK exception
518: --
519: Exception

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

614: l_proc varchar2(72) := g_package||'convert_args';
615: --
616: Begin
617: --
618: hr_utility.set_location('Entering:'||l_proc, 5);
619: --
620: -- Convert arguments into local l_rec structure.
621: --
622: l_rec.actl_prem_id := p_actl_prem_id;

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

689: l_rec.object_version_number := p_object_version_number;
690: --
691: -- Return the plsql record structure.
692: --
693: hr_utility.set_location(' Leaving:'||l_proc, 10);
694: Return(l_rec);
695: --
696: End convert_args;
697: --