DBA Data[Home] [Help]

APPS.BEN_PSL_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_PER_INFO_CHG_CS_LER_F_FK1') Then
37: fnd_message.set_name('BEN', 'BEN_91000_INVALID_BUS_GROUP');
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 123: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

132: l_fct_ret := false;
133: Else
134: If (p_per_info_chg_cs_ler_id = g_old_rec.per_info_chg_cs_ler_id and
135: p_object_version_number = g_old_rec.object_version_number) Then
136: hr_utility.set_location(l_proc, 10);
137: --
138: -- The g_old_rec is current therefore we must
139: -- set the returning function to true
140: --

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

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

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

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

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

183: --
184: --
185: --
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188: --
189: --
190: -- Call the corresponding datetrack api
191: --

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

198: p_delete => p_delete,
199: p_future_change => p_future_change,
200: p_delete_next_change => p_delete_next_change);
201: --
202: hr_utility.set_location(' Leaving:'||l_proc, 10);
203: End find_dt_del_modes;
204: --
205: -- ----------------------------------------------------------------------------
206: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

215: --
216: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
217: --
218: Begin
219: hr_utility.set_location('Entering:'||l_proc, 5);
220: --
221: -- Call the corresponding datetrack api
222: --
223: dt_api.find_dt_upd_modes

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

229: p_update => p_update,
230: p_update_override => p_update_override,
231: p_update_change_insert => p_update_change_insert);
232: --
233: hr_utility.set_location(' Leaving:'||l_proc, 10);
234: End find_dt_upd_modes;
235: --
236: -- ----------------------------------------------------------------------------
237: -- |------------------------< upd_effective_end_date >------------------------|

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

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

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

258: (p_base_table_name => 'ben_per_info_chg_cs_ler_f',
259: p_base_key_column => 'per_info_chg_cs_ler_id',
260: p_base_key_value => p_base_key_value);
261: --
262: hr_utility.set_location(l_proc, 10);
263: g_api_dml := true; -- Set the api dml status
264: --
265: -- Update the specified datetrack row setting the effective
266: -- end date to the specified new effective end date.

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

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

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

356: --
357: --
358: --
359: Begin
360: hr_utility.set_location('Entering:'||l_proc, 5);
361: --
362: -- Ensure that all the mandatory arguments are not null
363: --
364: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

397: If (p_object_version_number <> g_old_rec.object_version_number) Then
398: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
399: fnd_message.raise_error;
400: End If;
401: hr_utility.set_location(l_proc, 15);
402: --
403: --
404: -- Validate the datetrack mode mode getting the validation start
405: -- and end dates for the specified datetrack operation.

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

431: --
432: p_validation_start_date := l_validation_start_date;
433: p_validation_end_date := l_validation_end_date;
434: --
435: hr_utility.set_location(' Leaving:'||l_proc, 30);
436: --
437: -- We need to trap the ORA LOCK exception
438: --
439: Exception

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

510: l_proc varchar2(72) := g_package||'convert_args';
511: --
512: Begin
513: --
514: hr_utility.set_location('Entering:'||l_proc, 5);
515: --
516: -- Convert arguments into local l_rec structure.
517: --
518: l_rec.per_info_chg_cs_ler_id := p_per_info_chg_cs_ler_id;

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

561: l_rec.object_version_number := p_object_version_number;
562: --
563: -- Return the plsql record structure.
564: --
565: hr_utility.set_location(' Leaving:'||l_proc, 10);
566: Return(l_rec);
567: --
568: End convert_args;
569: --