DBA Data[Home] [Help]

APPS.BEN_EPY_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_ELIG_PYRL_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 126: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

135: l_fct_ret := false;
136: Else
137: If (p_elig_pyrl_prte_id = g_old_rec.elig_pyrl_prte_id and
138: p_object_version_number = g_old_rec.object_version_number) Then
139: hr_utility.set_location(l_proc, 10);
140: --
141: -- The g_old_rec is current therefore we must
142: -- set the returning function to true
143: --

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

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

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

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

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

192: and p_effective_date
193: between t.effective_start_date and t.effective_end_date;
194: --
195: Begin
196: hr_utility.set_location('Entering:'||l_proc, 5);
197: Open C_Sel1;
198: Fetch C_Sel1 Into l_parent_key_value1;
199: If C_Sel1%notfound then
200: Close C_Sel1;

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

219: p_delete => p_delete,
220: p_future_change => p_future_change,
221: p_delete_next_change => p_delete_next_change);
222: --
223: hr_utility.set_location(' Leaving:'||l_proc, 10);
224: End find_dt_del_modes;
225: --
226: -- ----------------------------------------------------------------------------
227: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

236: --
237: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
238: --
239: Begin
240: hr_utility.set_location('Entering:'||l_proc, 5);
241: --
242: -- Call the corresponding datetrack api
243: --
244: dt_api.find_dt_upd_modes

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

250: p_update => p_update,
251: p_update_override => p_update_override,
252: p_update_change_insert => p_update_change_insert);
253: --
254: hr_utility.set_location(' Leaving:'||l_proc, 10);
255: End find_dt_upd_modes;
256: --
257: -- ----------------------------------------------------------------------------
258: -- |------------------------< upd_effective_end_date >------------------------|

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

268: l_proc varchar2(72) := g_package||'upd_effective_end_date';
269: l_object_version_number number;
270: --
271: Begin
272: hr_utility.set_location('Entering:'||l_proc, 5);
273: --
274: -- Because we are updating a row we must get the next object
275: -- version number.
276: --

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

279: (p_base_table_name => 'ben_elig_pyrl_prte_f',
280: p_base_key_column => 'elig_pyrl_prte_id',
281: p_base_key_value => p_base_key_value);
282: --
283: hr_utility.set_location(l_proc, 10);
284: g_api_dml := true; -- Set the api dml status
285: --
286: -- Update the specified datetrack row setting the effective
287: -- end date to the specified new effective end date.

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

294: between t.effective_start_date and t.effective_end_date;
295: --
296: g_api_dml := false; -- Unset the api dml status
297: p_object_version_number := l_object_version_number;
298: hr_utility.set_location(' Leaving:'||l_proc, 15);
299: --
300: Exception
301: When Others Then
302: g_api_dml := false; -- Unset the api dml status

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

375: --
376: --
377: --
378: Begin
379: hr_utility.set_location('Entering:'||l_proc, 5);
380: --
381: -- Ensure that all the mandatory arguments are not null
382: --
383: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

416: If (p_object_version_number <> g_old_rec.object_version_number) Then
417: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
418: fnd_message.raise_error;
419: End If;
420: hr_utility.set_location(l_proc, 15);
421: --
422: --
423: -- Validate the datetrack mode mode getting the validation start
424: -- and end dates for the specified datetrack operation.

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

451: --
452: p_validation_start_date := l_validation_start_date;
453: p_validation_end_date := l_validation_end_date;
454: --
455: hr_utility.set_location(' Leaving:'||l_proc, 30);
456: --
457: -- We need to trap the ORA LOCK exception
458: --
459: Exception

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

528: l_proc varchar2(72) := g_package||'convert_args';
529: --
530: Begin
531: --
532: hr_utility.set_location('Entering:'||l_proc, 5);
533: --
534: -- Convert arguments into local l_rec structure.
535: --
536: l_rec.elig_pyrl_prte_id := p_elig_pyrl_prte_id;

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

577: l_rec.criteria_weight := p_criteria_weight;
578: --
579: -- Return the plsql record structure.
580: --
581: hr_utility.set_location(' Leaving:'||l_proc, 10);
582: Return(l_rec);
583: --
584: End convert_args;
585: --