DBA Data[Home] [Help]

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

164: l_fct_ret boolean;
165: --
166: Begin
167: /*
168: hr_utility.set_location('Entering:'||l_proc, 5);
169: */
170: --
171: If (p_effective_date is null or
172: p_elig_per_opt_id is null or

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

179: Else
180: If (p_elig_per_opt_id = g_old_rec.elig_per_opt_id and
181: p_object_version_number = g_old_rec.object_version_number) Then
182: /*
183: hr_utility.set_location(l_proc, 10);
184: */
185: --
186: -- The g_old_rec is current therefore we must
187: -- set the returning function to true

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

206: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
207: fnd_message.raise_error;
208: End If;
209: /*
210: hr_utility.set_location(l_proc, 15);
211: */
212: l_fct_ret := true;
213: End If;
214: End If;

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

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

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

243: and p_effective_date
244: between t.effective_start_date and t.effective_end_date;
245: --
246: Begin
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: Open C_Sel1;
249: Fetch C_Sel1 Into l_parent_key_value1,
250: l_parent_key_value2;
251: If C_Sel1%notfound then

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

274: p_delete => p_delete,
275: p_future_change => p_future_change,
276: p_delete_next_change => p_delete_next_change);
277: --
278: hr_utility.set_location(' Leaving:'||l_proc, 10);
279: End find_dt_del_modes;
280: --
281: -- ----------------------------------------------------------------------------
282: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

291: --
292: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
293: --
294: Begin
295: hr_utility.set_location('Entering:'||l_proc, 5);
296: --
297: -- Call the corresponding datetrack api
298: --
299: dt_api.find_dt_upd_modes

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

305: p_update => p_update,
306: p_update_override => p_update_override,
307: p_update_change_insert => p_update_change_insert);
308: --
309: hr_utility.set_location(' Leaving:'||l_proc, 10);
310: End find_dt_upd_modes;
311: --
312: -- ----------------------------------------------------------------------------
313: -- |------------------------< upd_effective_end_date >------------------------|

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

323: l_proc varchar2(72) := g_package||'upd_effective_end_date';
324: l_object_version_number number;
325: --
326: Begin
327: hr_utility.set_location('Entering:'||l_proc, 5);
328: --
329: -- Because we are updating a row we must get the next object
330: -- version number.
331: --

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

334: (p_base_table_name => 'ben_elig_per_opt_f',
335: p_base_key_column => 'elig_per_opt_id',
336: p_base_key_value => p_base_key_value);
337: --
338: hr_utility.set_location(l_proc, 10);
339: g_api_dml := true; -- Set the api dml status
340: --
341: -- Update the specified datetrack row setting the effective
342: -- end date to the specified new effective end date.

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

349: between t.effective_start_date and t.effective_end_date;
350: --
351: g_api_dml := false; -- Unset the api dml status
352: p_object_version_number := l_object_version_number;
353: hr_utility.set_location(' Leaving:'||l_proc, 15);
354: --
355: Exception
356: When Others Then
357: g_api_dml := false; -- Unset the api dml status

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

476: --
477: --
478: --
479: Begin
480: hr_utility.set_location('Entering:'||l_proc, 5);
481: --
482: -- Ensure that all the mandatory arguments are not null
483: --
484: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

517: If (p_object_version_number <> g_old_rec.object_version_number) Then
518: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
519: fnd_message.raise_error;
520: End If;
521: hr_utility.set_location(l_proc, 15);
522: --
523: --
524: -- Validate the datetrack mode mode getting the validation start
525: -- and end dates for the specified datetrack operation.

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

556: --
557: p_validation_start_date := l_validation_start_date;
558: p_validation_end_date := l_validation_end_date;
559: --
560: hr_utility.set_location(' Leaving:'||l_proc, 30);
561: --
562: -- We need to trap the ORA LOCK exception
563: --
564: Exception

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

679: l_proc varchar2(72) := g_package||'convert_args';
680: --
681: Begin
682: --
683: hr_utility.set_location('Entering:'||l_proc, 5);
684: --
685: -- Convert arguments into local l_rec structure.
686: --
687: l_rec.elig_per_opt_id := p_elig_per_opt_id;

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

774: l_rec.object_version_number := p_object_version_number;
775: --
776: -- Return the plsql record structure.
777: --
778: hr_utility.set_location(' Leaving:'||l_proc, 10);
779: Return(l_rec);
780: --
781: End convert_args;
782: --