DBA Data[Home] [Help]

APPS.BEN_LER_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_LER_FK1') Then
37: fnd_message.set_name('BEN', 'BEN_91000_INVALID_BUS_GROUP');
38: fnd_message.raise_error;

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

51: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
52: fnd_message.raise_error;
53: End If;
54: --
55: hr_utility.set_location(' Leaving:'||l_proc, 10);
56: End constraint_error;
57: --
58: -- ----------------------------------------------------------------------------
59: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

147: l_fct_ret := false;
148: Else
149: If (p_ler_id = g_old_rec.ler_id and
150: p_object_version_number = g_old_rec.object_version_number) Then
151: hr_utility.set_location(l_proc, 10);
152: --
153: -- The g_old_rec is current therefore we must
154: -- set the returning function to true
155: --

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

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

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

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

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

204: and p_effective_date
205: between t.effective_start_date and t.effective_end_date;
206: --
207: Begin
208: hr_utility.set_location('Entering:'||l_proc, 5);
209: Open C_Sel1;
210: Fetch C_Sel1 Into l_parent_key_value1;
211: If C_Sel1%notfound then
212: Close C_Sel1;

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

231: p_delete => p_delete,
232: p_future_change => p_future_change,
233: p_delete_next_change => p_delete_next_change);
234: --
235: hr_utility.set_location(' Leaving:'||l_proc, 10);
236: End find_dt_del_modes;
237: --
238: -- ----------------------------------------------------------------------------
239: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

248: --
249: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
250: --
251: Begin
252: hr_utility.set_location('Entering:'||l_proc, 5);
253: --
254: -- Call the corresponding datetrack api
255: --
256: dt_api.find_dt_upd_modes

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

262: p_update => p_update,
263: p_update_override => p_update_override,
264: p_update_change_insert => p_update_change_insert);
265: --
266: hr_utility.set_location(' Leaving:'||l_proc, 10);
267: End find_dt_upd_modes;
268: --
269: -- ----------------------------------------------------------------------------
270: -- |------------------------< upd_effective_end_date >------------------------|

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

280: l_proc varchar2(72) := g_package||'upd_effective_end_date';
281: l_object_version_number number;
282: --
283: Begin
284: hr_utility.set_location('Entering:'||l_proc, 5);
285: --
286: -- Because we are updating a row we must get the next object
287: -- version number.
288: --

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

291: (p_base_table_name => 'ben_ler_f',
292: p_base_key_column => 'ler_id',
293: p_base_key_value => p_base_key_value);
294: --
295: hr_utility.set_location(l_proc, 10);
296: g_api_dml := true; -- Set the api dml status
297: --
298: -- Update the specified datetrack row setting the effective
299: -- 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 441: hr_utility.set_location('Entering:'||l_proc, 5);

437: l_lck_date date; -- locked date
438: --
439: --
440: Begin
441: hr_utility.set_location('Entering:'||l_proc, 5);
442: --
443: -- Ensure that all the mandatory arguments are not null
444: --
445: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

478: If (p_object_version_number <> g_old_rec.object_version_number) Then
479: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
480: fnd_message.raise_error;
481: End If;
482: hr_utility.set_location(l_proc, 15);
483: --
484: --
485: -- Validate the datetrack mode mode getting the validation start
486: -- and end dates for the specified datetrack operation.

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

603: --
604: p_validation_start_date := l_validation_start_date;
605: p_validation_end_date := l_validation_end_date;
606: --
607: hr_utility.set_location(' Leaving:'||l_proc, 30);
608: --
609: -- We need to trap the ORA LOCK exception
610: --
611: Exception

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

695: l_proc varchar2(72) := g_package||'convert_args';
696: --
697: Begin
698: --
699: hr_utility.set_location('Entering:'||l_proc, 5);
700: --
701: -- Convert arguments into local l_rec structure.
702: --
703: l_rec.ler_id := p_ler_id;

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

759: l_rec.object_version_number := p_object_version_number;
760: --
761: -- Return the plsql record structure.
762: --
763: hr_utility.set_location(' Leaving:'||l_proc, 10);
764: Return(l_rec);
765: --
766: End convert_args;
767: --