DBA Data[Home] [Help]

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

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

56: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
57: fnd_message.raise_error;
58: End If;
59: --
60: hr_utility.set_location(' Leaving:'||l_proc, 10);
61: End constraint_error;
62: --
63: -- ----------------------------------------------------------------------------
64: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

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

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

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

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

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

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

196: and p_effective_date
197: between t.effective_start_date and t.effective_end_date;
198: --
199: Begin
200: hr_utility.set_location('Entering:'||l_proc, 5);
201: Open C_Sel1;
202: Fetch C_Sel1 Into l_parent_key_value1,
203: l_parent_key_value2;
204: If C_Sel1%notfound then

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

227: p_delete => p_delete,
228: p_future_change => p_future_change,
229: p_delete_next_change => p_delete_next_change);
230: --
231: hr_utility.set_location(' Leaving:'||l_proc, 10);
232: End find_dt_del_modes;
233: --
234: -- ----------------------------------------------------------------------------
235: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

244: --
245: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
246: --
247: Begin
248: hr_utility.set_location('Entering:'||l_proc, 5);
249: --
250: -- Call the corresponding datetrack api
251: --
252: dt_api.find_dt_upd_modes

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

258: p_update => p_update,
259: p_update_override => p_update_override,
260: p_update_change_insert => p_update_change_insert);
261: --
262: hr_utility.set_location(' Leaving:'||l_proc, 10);
263: End find_dt_upd_modes;
264: --
265: -- ----------------------------------------------------------------------------
266: -- |------------------------< upd_effective_end_date >------------------------|

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

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

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

287: (p_base_table_name => 'ben_elig_pstl_cd_r_rng_prte_f',
288: p_base_key_column => 'elig_pstl_cd_r_rng_prte_id',
289: p_base_key_value => p_base_key_value);
290: --
291: hr_utility.set_location(l_proc, 10);
292: g_api_dml := true; -- Set the api dml status
293: --
294: -- Update the specified datetrack row setting the effective
295: -- end date to the specified new effective end date.

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

302: between t.effective_start_date and t.effective_end_date;
303: --
304: g_api_dml := false; -- Unset the api dml status
305: p_object_version_number := l_object_version_number;
306: hr_utility.set_location(' Leaving:'||l_proc, 15);
307: --
308: Exception
309: When Others Then
310: g_api_dml := false; -- Unset the api dml status

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

383: --
384: --
385: --
386: Begin
387: hr_utility.set_location('Entering:'||l_proc, 5);
388: --
389: -- Ensure that all the mandatory arguments are not null
390: --
391: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

424: If (p_object_version_number <> g_old_rec.object_version_number) Then
425: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
426: fnd_message.raise_error;
427: End If;
428: hr_utility.set_location(l_proc, 15);
429: --
430: --
431: -- Validate the datetrack mode mode getting the validation start
432: -- and end dates for the specified datetrack operation.

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

462: --
463: p_validation_start_date := l_validation_start_date;
464: p_validation_end_date := l_validation_end_date;
465: --
466: hr_utility.set_location(' Leaving:'||l_proc, 30);
467: --
468: -- We need to trap the ORA LOCK exception
469: --
470: Exception

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

539: l_proc varchar2(72) := g_package||'convert_args';
540: --
541: Begin
542: --
543: hr_utility.set_location('Entering:'||l_proc, 5);
544: --
545: -- Convert arguments into local l_rec structure.
546: --
547: l_rec.elig_pstl_cd_r_rng_prte_id := p_elig_pstl_cd_r_rng_prte_id;

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

588: l_rec.criteria_weight := p_criteria_weight;
589: --
590: -- Return the plsql record structure.
591: --
592: hr_utility.set_location(' Leaving:'||l_proc, 10);
593: Return(l_rec);
594: --
595: End convert_args;
596: --