DBA Data[Home] [Help]

APPS.BEN_CPR_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_ORG_ROLE_F_FK1') 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_org_role_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_org_role_id = g_old_rec.popl_org_role_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 182: hr_utility.set_location('Entering:'||l_proc, 5);

178: --
179: --
180: --
181: Begin
182: hr_utility.set_location('Entering:'||l_proc, 5);
183: --
184: --
185: -- Call the corresponding datetrack api
186: --

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

193: p_delete => p_delete,
194: p_future_change => p_future_change,
195: p_delete_next_change => p_delete_next_change);
196: --
197: hr_utility.set_location(' Leaving:'||l_proc, 10);
198: End find_dt_del_modes;
199: --
200: -- ----------------------------------------------------------------------------
201: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

210: --
211: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
212: --
213: Begin
214: hr_utility.set_location('Entering:'||l_proc, 5);
215: --
216: -- Call the corresponding datetrack api
217: --
218: dt_api.find_dt_upd_modes

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

224: p_update => p_update,
225: p_update_override => p_update_override,
226: p_update_change_insert => p_update_change_insert);
227: --
228: hr_utility.set_location(' Leaving:'||l_proc, 10);
229: End find_dt_upd_modes;
230: --
231: -- ----------------------------------------------------------------------------
232: -- |------------------------< upd_effective_end_date >------------------------|

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

242: l_proc varchar2(72) := g_package||'upd_effective_end_date';
243: l_object_version_number number;
244: --
245: Begin
246: hr_utility.set_location('Entering:'||l_proc, 5);
247: --
248: -- Because we are updating a row we must get the next object
249: -- version number.
250: --

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

253: (p_base_table_name => 'ben_popl_org_role_f',
254: p_base_key_column => 'popl_org_role_id',
255: p_base_key_value => p_base_key_value);
256: --
257: hr_utility.set_location(l_proc, 10);
258: g_api_dml := true; -- Set the api dml status
259: --
260: -- Update the specified datetrack row setting the effective
261: -- end date to the specified new effective end date.

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

268: between t.effective_start_date and t.effective_end_date;
269: --
270: g_api_dml := false; -- Unset the api dml status
271: p_object_version_number := l_object_version_number;
272: hr_utility.set_location(' Leaving:'||l_proc, 15);
273: --
274: Exception
275: When Others Then
276: g_api_dml := false; -- Unset the api dml status

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

346: --
347: --
348: --
349: Begin
350: hr_utility.set_location('Entering:'||l_proc, 5);
351: --
352: -- Ensure that all the mandatory arguments are not null
353: --
354: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

387: If (p_object_version_number <> g_old_rec.object_version_number) Then
388: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
389: fnd_message.raise_error;
390: End If;
391: hr_utility.set_location(l_proc, 15);
392: --
393: --
394: -- Validate the datetrack mode mode getting the validation start
395: -- and end dates for the specified datetrack operation.

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

419: --
420: p_validation_start_date := l_validation_start_date;
421: p_validation_end_date := l_validation_end_date;
422: --
423: hr_utility.set_location(' Leaving:'||l_proc, 30);
424: --
425: -- We need to trap the ORA LOCK exception
426: --
427: Exception

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

493: l_proc varchar2(72) := g_package||'convert_args';
494: --
495: Begin
496: --
497: hr_utility.set_location('Entering:'||l_proc, 5);
498: --
499: -- Convert arguments into local l_rec structure.
500: --
501: l_rec.popl_org_role_id := p_popl_org_role_id;

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

539: l_rec.object_version_number := p_object_version_number;
540: --
541: -- Return the plsql record structure.
542: --
543: hr_utility.set_location(' Leaving:'||l_proc, 10);
544: Return(l_rec);
545: --
546: End convert_args;
547: --