DBA Data[Home] [Help]

APPS.BEN_EGN_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_GNDR_PRTE_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 121: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

505: l_proc varchar2(72) := g_package||'convert_args';
506: --
507: Begin
508: --
509: hr_utility.set_location('Entering:'||l_proc, 5);
510: --
511: -- Convert arguments into local l_rec structure.
512: --
513: l_rec.ELIG_GNDR_PRTE_id := p_ELIG_GNDR_PRTE_id;

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

555:
556: --
557: -- Return the plsql record structure.
558: --
559: hr_utility.set_location(' Leaving:'||l_proc, 10);
560: Return(l_rec);
561: --
562: End convert_args;
563: --