DBA Data[Home] [Help]

APPS.BEN_SVA_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_SVC_AREA_F_PK') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

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

44: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
45: fnd_message.raise_error;
46: End If;
47: --
48: hr_utility.set_location(' Leaving:'||l_proc, 10);
49: End constraint_error;
50: --
51: -- ----------------------------------------------------------------------------
52: -- |-----------------------------< api_updating >-----------------------------|

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

108: l_proc varchar2(72) := g_package||'api_updating';
109: l_fct_ret boolean;
110: --
111: Begin
112: hr_utility.set_location('Entering:'||l_proc, 5);
113: --
114: If (p_effective_date is null or
115: p_svc_area_id is null or
116: p_object_version_number is null) Then

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

121: l_fct_ret := false;
122: Else
123: If (p_svc_area_id = g_old_rec.svc_area_id and
124: p_object_version_number = g_old_rec.object_version_number) Then
125: hr_utility.set_location(l_proc, 10);
126: --
127: -- The g_old_rec is current therefore we must
128: -- set the returning function to true
129: --

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

146: If (p_object_version_number <> g_old_rec.object_version_number) Then
147: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
148: fnd_message.raise_error;
149: End If;
150: hr_utility.set_location(l_proc, 15);
151: l_fct_ret := true;
152: End If;
153: End If;
154: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

150: hr_utility.set_location(l_proc, 15);
151: l_fct_ret := true;
152: End If;
153: End If;
154: hr_utility.set_location(' Leaving:'||l_proc, 20);
155: Return (l_fct_ret);
156: --
157: End api_updating;
158: --

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

169: --
170: l_proc varchar2(72) := g_package||'find_dt_del_modes';
171: --
172: Begin
173: hr_utility.set_location('Entering:'||l_proc, 5);
174: --
175: -- Call the corresponding datetrack api
176: --
177: dt_api.find_dt_del_modes

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

183: p_delete => p_delete,
184: p_future_change => p_future_change,
185: p_delete_next_change => p_delete_next_change);
186: --
187: hr_utility.set_location(' Leaving:'||l_proc, 10);
188: End find_dt_del_modes;
189: --
190: -- ----------------------------------------------------------------------------
191: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

200: --
201: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
202: --
203: Begin
204: hr_utility.set_location('Entering:'||l_proc, 5);
205: --
206: -- Call the corresponding datetrack api
207: --
208: dt_api.find_dt_upd_modes

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

214: p_update => p_update,
215: p_update_override => p_update_override,
216: p_update_change_insert => p_update_change_insert);
217: --
218: hr_utility.set_location(' Leaving:'||l_proc, 10);
219: End find_dt_upd_modes;
220: --
221: -- ----------------------------------------------------------------------------
222: -- |------------------------< upd_effective_end_date >------------------------|

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

232: l_proc varchar2(72) := g_package||'upd_effective_end_date';
233: l_object_version_number number;
234: --
235: Begin
236: hr_utility.set_location('Entering:'||l_proc, 5);
237: --
238: -- Because we are updating a row we must get the next object
239: -- version number.
240: --

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

243: (p_base_table_name => 'ben_svc_area_f',
244: p_base_key_column => 'svc_area_id',
245: p_base_key_value => p_base_key_value);
246: --
247: hr_utility.set_location(l_proc, 10);
248: g_api_dml := true; -- Set the api dml status
249: --
250: -- Update the specified datetrack row setting the effective
251: -- end date to the specified new effective end date.

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

258: between t.effective_start_date and t.effective_end_date;
259: --
260: g_api_dml := false; -- Unset the api dml status
261: p_object_version_number := l_object_version_number;
262: hr_utility.set_location(' Leaving:'||l_proc, 15);
263: --
264: Exception
265: When Others Then
266: g_api_dml := false; -- Unset the api dml status

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

335: --
336: --
337: --
338: Begin
339: hr_utility.set_location('Entering:'||l_proc, 5);
340: --
341: -- Ensure that all the mandatory arguments are not null
342: --
343: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

376: If (p_object_version_number <> g_old_rec.object_version_number) Then
377: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
378: fnd_message.raise_error;
379: End If;
380: hr_utility.set_location(l_proc, 15);
381: --
382: --
383: -- Validate the datetrack mode mode getting the validation start
384: -- and end dates for the specified datetrack operation.

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

414: --
415: p_validation_start_date := l_validation_start_date;
416: p_validation_end_date := l_validation_end_date;
417: --
418: hr_utility.set_location(' Leaving:'||l_proc, 30);
419: --
420: -- We need to trap the ORA LOCK exception
421: --
422: Exception

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

487: l_proc varchar2(72) := g_package||'convert_args';
488: --
489: Begin
490: --
491: hr_utility.set_location('Entering:'||l_proc, 5);
492: --
493: -- Convert arguments into local l_rec structure.
494: --
495: l_rec.svc_area_id := p_svc_area_id;

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

532: l_rec.object_version_number := p_object_version_number;
533: --
534: -- Return the plsql record structure.
535: --
536: hr_utility.set_location(' Leaving:'||l_proc, 10);
537: Return(l_rec);
538: --
539: End convert_args;
540: --