DBA Data[Home] [Help]

APPS.BEN_ETD_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_DPNT_OTHR_PTIP_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 119: hr_utility.set_location('Entering:'||l_proc, 5);

115: l_proc varchar2(72) := g_package||'api_updating';
116: l_fct_ret boolean;
117: --
118: Begin
119: hr_utility.set_location('Entering:'||l_proc, 5);
120: --
121: If (p_effective_date is null or
122: p_elig_dpnt_othr_ptip_id is null or
123: p_object_version_number is null) Then

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

128: l_fct_ret := false;
129: Else
130: If (p_elig_dpnt_othr_ptip_id = g_old_rec.elig_dpnt_othr_ptip_id and
131: p_object_version_number = g_old_rec.object_version_number) Then
132: hr_utility.set_location(l_proc, 10);
133: --
134: -- The g_old_rec is current therefore we must
135: -- set the returning function to true
136: --

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

153: If (p_object_version_number <> g_old_rec.object_version_number) Then
154: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
155: fnd_message.raise_error;
156: End If;
157: hr_utility.set_location(l_proc, 15);
158: l_fct_ret := true;
159: End If;
160: End If;
161: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

157: hr_utility.set_location(l_proc, 15);
158: l_fct_ret := true;
159: End If;
160: End If;
161: hr_utility.set_location(' Leaving:'||l_proc, 20);
162: Return (l_fct_ret);
163: --
164: End api_updating;
165: --

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

497: l_proc varchar2(72) := g_package||'convert_args';
498: --
499: Begin
500: --
501: hr_utility.set_location('Entering:'||l_proc, 5);
502: --
503: -- Convert arguments into local l_rec structure.
504: --
505: l_rec.elig_dpnt_othr_ptip_id := p_elig_dpnt_othr_ptip_id;

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

544: l_rec.object_version_number := p_object_version_number;
545: --
546: -- Return the plsql record structure.
547: --
548: hr_utility.set_location(' Leaving:'||l_proc, 10);
549: Return(l_rec);
550: --
551: End convert_args;
552: --