DBA Data[Home] [Help]

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

114: l_proc varchar2(72) := g_package||'api_updating';
115: l_fct_ret boolean;
116: --
117: Begin
118: hr_utility.set_location('Entering:'||l_proc, 5);
119: --
120: If (p_effective_date is null or
121: p_popl_enrt_typ_cycl_id is null or
122: p_object_version_number is null) Then

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

127: l_fct_ret := false;
128: Else
129: If (p_popl_enrt_typ_cycl_id = g_old_rec.popl_enrt_typ_cycl_id and
130: p_object_version_number = g_old_rec.object_version_number) Then
131: hr_utility.set_location(l_proc, 10);
132: --
133: -- The g_old_rec is current therefore we must
134: -- set the returning function to true
135: --

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

152: If (p_object_version_number <> g_old_rec.object_version_number) Then
153: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
154: fnd_message.raise_error;
155: End If;
156: hr_utility.set_location(l_proc, 15);
157: l_fct_ret := true;
158: End If;
159: End If;
160: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

156: hr_utility.set_location(l_proc, 15);
157: l_fct_ret := true;
158: End If;
159: End If;
160: hr_utility.set_location(' Leaving:'||l_proc, 20);
161: Return (l_fct_ret);
162: --
163: End api_updating;
164: --

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

187: and p_effective_date
188: between t.effective_start_date and t.effective_end_date;
189: --
190: Begin
191: hr_utility.set_location('Entering:'||l_proc, 5);
192: Open C_Sel1;
193: Fetch C_Sel1 Into l_parent_key_value1,
194: l_parent_key_value2;
195: If C_Sel1%notfound then

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

218: p_delete => p_delete,
219: p_future_change => p_future_change,
220: p_delete_next_change => p_delete_next_change);
221: --
222: hr_utility.set_location(' Leaving:'||l_proc, 10);
223: End find_dt_del_modes;
224: --
225: -- ----------------------------------------------------------------------------
226: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

235: --
236: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
237: --
238: Begin
239: hr_utility.set_location('Entering:'||l_proc, 5);
240: --
241: -- Call the corresponding datetrack api
242: --
243: dt_api.find_dt_upd_modes

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

249: p_update => p_update,
250: p_update_override => p_update_override,
251: p_update_change_insert => p_update_change_insert);
252: --
253: hr_utility.set_location(' Leaving:'||l_proc, 10);
254: End find_dt_upd_modes;
255: --
256: -- ----------------------------------------------------------------------------
257: -- |------------------------< upd_effective_end_date >------------------------|

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

267: l_proc varchar2(72) := g_package||'upd_effective_end_date';
268: l_object_version_number number;
269: --
270: Begin
271: hr_utility.set_location('Entering:'||l_proc, 5);
272: --
273: -- Because we are updating a row we must get the next object
274: -- version number.
275: --

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

278: (p_base_table_name => 'ben_popl_enrt_typ_cycl_f',
279: p_base_key_column => 'popl_enrt_typ_cycl_id',
280: p_base_key_value => p_base_key_value);
281: --
282: hr_utility.set_location(l_proc, 10);
283: g_api_dml := true; -- Set the api dml status
284: --
285: -- Update the specified datetrack row setting the effective
286: -- end date to the specified new effective end date.

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

293: between t.effective_start_date and t.effective_end_date;
294: --
295: g_api_dml := false; -- Unset the api dml status
296: p_object_version_number := l_object_version_number;
297: hr_utility.set_location(' Leaving:'||l_proc, 15);
298: --
299: Exception
300: When Others Then
301: g_api_dml := false; -- Unset the api dml status

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

371: --
372: --
373: --
374: Begin
375: hr_utility.set_location('Entering:'||l_proc, 5);
376: --
377: -- Ensure that all the mandatory arguments are not null
378: --
379: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

412: If (p_object_version_number <> g_old_rec.object_version_number) Then
413: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
414: fnd_message.raise_error;
415: End If;
416: hr_utility.set_location(l_proc, 15);
417: --
418: --
419: -- Validate the datetrack mode mode getting the validation start
420: -- and end dates for the specified datetrack operation.

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

452: --
453: p_validation_start_date := l_validation_start_date;
454: p_validation_end_date := l_validation_end_date;
455: --
456: hr_utility.set_location(' Leaving:'||l_proc, 30);
457: --
458: -- We need to trap the ORA LOCK exception
459: --
460: Exception

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

526: l_proc varchar2(72) := g_package||'convert_args';
527: --
528: Begin
529: --
530: hr_utility.set_location('Entering:'||l_proc, 5);
531: --
532: -- Convert arguments into local l_rec structure.
533: --
534: l_rec.popl_enrt_typ_cycl_id := p_popl_enrt_typ_cycl_id;

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

572: l_rec.object_version_number := p_object_version_number;
573: --
574: -- Return the plsql record structure.
575: --
576: hr_utility.set_location(' Leaving:'||l_proc, 10);
577: Return(l_rec);
578: --
579: End convert_args;
580: --