DBA Data[Home] [Help]

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

137: l_proc varchar2(72) := g_package||'api_updating';
138: l_fct_ret boolean;
139: --
140: Begin
141: hr_utility.set_location('Entering:'||l_proc, 5);
142: --
143: If (p_effective_date is null or
144: p_bnft_pool_rlovr_rqmt_id is null or
145: p_object_version_number is null) Then

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

150: l_fct_ret := false;
151: Else
152: If (p_bnft_pool_rlovr_rqmt_id = g_old_rec.bnft_pool_rlovr_rqmt_id and
153: p_object_version_number = g_old_rec.object_version_number) Then
154: hr_utility.set_location(l_proc, 10);
155: --
156: -- The g_old_rec is current therefore we must
157: -- set the returning function to true
158: --

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

175: If (p_object_version_number <> g_old_rec.object_version_number) Then
176: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
177: fnd_message.raise_error;
178: End If;
179: hr_utility.set_location(l_proc, 15);
180: l_fct_ret := true;
181: End If;
182: End If;
183: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

179: hr_utility.set_location(l_proc, 15);
180: l_fct_ret := true;
181: End If;
182: End If;
183: hr_utility.set_location(' Leaving:'||l_proc, 20);
184: Return (l_fct_ret);
185: --
186: End api_updating;
187: --

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

209: and p_effective_date
210: between t.effective_start_date and t.effective_end_date;
211: --
212: Begin
213: hr_utility.set_location('Entering:'||l_proc, 5);
214: Open C_Sel1;
215: Fetch C_Sel1 Into l_parent_key_value1,
216: l_parent_key_value2;
217: If C_Sel1%notfound then

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

240: p_delete => p_delete,
241: p_future_change => p_future_change,
242: p_delete_next_change => p_delete_next_change);
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 10);
245: End find_dt_del_modes;
246: --
247: -- ----------------------------------------------------------------------------
248: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

257: --
258: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
259: --
260: Begin
261: hr_utility.set_location('Entering:'||l_proc, 5);
262: --
263: -- Call the corresponding datetrack api
264: --
265: dt_api.find_dt_upd_modes

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

271: p_update => p_update,
272: p_update_override => p_update_override,
273: p_update_change_insert => p_update_change_insert);
274: --
275: hr_utility.set_location(' Leaving:'||l_proc, 10);
276: End find_dt_upd_modes;
277: --
278: -- ----------------------------------------------------------------------------
279: -- |------------------------< upd_effective_end_date >------------------------|

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

289: l_proc varchar2(72) := g_package||'upd_effective_end_date';
290: l_object_version_number number;
291: --
292: Begin
293: hr_utility.set_location('Entering:'||l_proc, 5);
294: --
295: -- Because we are updating a row we must get the next object
296: -- version number.
297: --

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

300: (p_base_table_name => 'ben_bnft_pool_rlovr_rqmt_f',
301: p_base_key_column => 'bnft_pool_rlovr_rqmt_id',
302: p_base_key_value => p_base_key_value);
303: --
304: hr_utility.set_location(l_proc, 10);
305: g_api_dml := true; -- Set the api dml status
306: --
307: -- Update the specified datetrack row setting the effective
308: -- end date to the specified new effective end date.

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

315: between t.effective_start_date and t.effective_end_date;
316: --
317: g_api_dml := false; -- Unset the api dml status
318: p_object_version_number := l_object_version_number;
319: hr_utility.set_location(' Leaving:'||l_proc, 15);
320: --
321: Exception
322: When Others Then
323: g_api_dml := false; -- Unset the api dml status

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

411: --
412: --
413: --
414: Begin
415: hr_utility.set_location('Entering:'||l_proc, 5);
416: --
417: -- Ensure that all the mandatory arguments are not null
418: --
419: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

452: If (p_object_version_number <> g_old_rec.object_version_number) Then
453: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
454: fnd_message.raise_error;
455: End If;
456: hr_utility.set_location(l_proc, 15);
457: --
458: --
459: -- Validate the datetrack mode mode getting the validation start
460: -- and end dates for the specified datetrack operation.

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

490: --
491: p_validation_start_date := l_validation_start_date;
492: p_validation_end_date := l_validation_end_date;
493: --
494: hr_utility.set_location(' Leaving:'||l_proc, 30);
495: --
496: -- We need to trap the ORA LOCK exception
497: --
498: Exception

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

582: l_proc varchar2(72) := g_package||'convert_args';
583: --
584: Begin
585: --
586: hr_utility.set_location('Entering:'||l_proc, 5);
587: --
588: -- Convert arguments into local l_rec structure.
589: --
590: l_rec.bnft_pool_rlovr_rqmt_id := p_bnft_pool_rlovr_rqmt_id;

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

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