DBA Data[Home] [Help]

APPS.BEN_EMP_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_MRTL_STS_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 120: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

500: l_proc varchar2(72) := g_package||'convert_args';
501: --
502: Begin
503: --
504: hr_utility.set_location('Entering:'||l_proc, 5);
505: --
506: -- Convert arguments into local l_rec structure.
507: --
508: l_rec.ELIG_MRTL_STS_PRTE_id := p_ELIG_MRTL_STS_PRTE_id;

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

548: l_rec.criteria_weight := p_criteria_weight;
549: --
550: -- Return the plsql record structure.
551: --
552: hr_utility.set_location(' Leaving:'||l_proc, 10);
553: Return(l_rec);
554: --
555: End convert_args;
556: --