DBA Data[Home] [Help]

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

125: l_proc varchar2(72) := g_package||'api_updating';
126: l_fct_ret boolean;
127: --
128: Begin
129: hr_utility.set_location('Entering:'||l_proc, 5);
130: --
131: If (p_effective_date is null or
132: p_pl_regn_id is null or
133: p_object_version_number is null) Then

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

138: l_fct_ret := false;
139: Else
140: If (p_pl_regn_id = g_old_rec.pl_regn_id and
141: p_object_version_number = g_old_rec.object_version_number) Then
142: hr_utility.set_location(l_proc, 10);
143: --
144: -- The g_old_rec is current therefore we must
145: -- set the returning function to true
146: --

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

163: If (p_object_version_number <> g_old_rec.object_version_number) Then
164: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
165: fnd_message.raise_error;
166: End If;
167: hr_utility.set_location(l_proc, 15);
168: l_fct_ret := true;
169: End If;
170: End If;
171: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

167: hr_utility.set_location(l_proc, 15);
168: l_fct_ret := true;
169: End If;
170: End If;
171: hr_utility.set_location(' Leaving:'||l_proc, 20);
172: Return (l_fct_ret);
173: --
174: End api_updating;
175: --

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

207: and p_effective_date
208: between t.effective_start_date and t.effective_end_date;
209: --
210: Begin
211: hr_utility.set_location('Entering:'||l_proc, 5);
212: Open C_Sel1;
213: Fetch C_Sel1 Into l_parent_key_value1,
214: l_parent_key_value2,
215: l_parent_key_value3,

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

258: p_delete => p_delete,
259: p_future_change => p_future_change,
260: p_delete_next_change => p_delete_next_change);
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 10);
263: End find_dt_del_modes;
264: --
265: -- ----------------------------------------------------------------------------
266: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

275: --
276: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
277: --
278: Begin
279: hr_utility.set_location('Entering:'||l_proc, 5);
280: --
281: -- Call the corresponding datetrack api
282: --
283: dt_api.find_dt_upd_modes

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

289: p_update => p_update,
290: p_update_override => p_update_override,
291: p_update_change_insert => p_update_change_insert);
292: --
293: hr_utility.set_location(' Leaving:'||l_proc, 10);
294: End find_dt_upd_modes;
295: --
296: -- ----------------------------------------------------------------------------
297: -- |------------------------< upd_effective_end_date >------------------------|

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

307: l_proc varchar2(72) := g_package||'upd_effective_end_date';
308: l_object_version_number number;
309: --
310: Begin
311: hr_utility.set_location('Entering:'||l_proc, 5);
312: --
313: -- Because we are updating a row we must get the next object
314: -- version number.
315: --

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

318: (p_base_table_name => 'ben_pl_regn_f',
319: p_base_key_column => 'pl_regn_id',
320: p_base_key_value => p_base_key_value);
321: --
322: hr_utility.set_location(l_proc, 10);
323: g_api_dml := true; -- Set the api dml status
324: --
325: -- Update the specified datetrack row setting the effective
326: -- end date to the specified new effective end date.

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

333: between t.effective_start_date and t.effective_end_date;
334: --
335: g_api_dml := false; -- Unset the api dml status
336: p_object_version_number := l_object_version_number;
337: hr_utility.set_location(' Leaving:'||l_proc, 15);
338: --
339: Exception
340: When Others Then
341: g_api_dml := false; -- Unset the api dml status

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

417: --
418: --
419: --
420: Begin
421: hr_utility.set_location('Entering:'||l_proc, 5);
422: --
423: -- Ensure that all the mandatory arguments are not null
424: --
425: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

458: If (p_object_version_number <> g_old_rec.object_version_number) Then
459: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
460: fnd_message.raise_error;
461: End If;
462: hr_utility.set_location(l_proc, 15);
463: --
464: --
465: -- Validate the datetrack mode mode getting the validation start
466: -- 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 595: hr_utility.set_location('Entering:'||l_proc, 5);

591: l_proc varchar2(72) := g_package||'convert_args';
592: --
593: Begin
594: --
595: hr_utility.set_location('Entering:'||l_proc, 5);
596: --
597: -- Convert arguments into local l_rec structure.
598: --
599: l_rec.pl_regn_id := p_pl_regn_id;

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

643: l_rec.object_version_number := p_object_version_number;
644: --
645: -- Return the plsql record structure.
646: --
647: hr_utility.set_location(' Leaving:'||l_proc, 10);
648: Return(l_rec);
649: --
650: End convert_args;
651: --