DBA Data[Home] [Help]

APPS.BEN_PCM_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_CM_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 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_per_cm_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_per_cm_id = g_old_rec.per_cm_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_per_cm_f',
288: p_base_key_column => 'per_cm_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 394: hr_utility.set_location('Entering:'||l_proc, 5);

390: --
391: --
392: --
393: Begin
394: hr_utility.set_location('Entering:'||l_proc, 5);
395: --
396: -- Ensure that all the mandatory arguments are not null
397: --
398: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

431: If (p_object_version_number <> g_old_rec.object_version_number) Then
432: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
433: fnd_message.raise_error;
434: End If;
435: hr_utility.set_location(l_proc, 15);
436: --
437: --
438: -- Validate the datetrack mode mode getting the validation start
439: -- and end dates for the specified datetrack operation.

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

475: --
476: p_validation_start_date := l_validation_start_date;
477: p_validation_end_date := l_validation_end_date;
478: --
479: hr_utility.set_location(' Leaving:'||l_proc, 30);
480: --
481: -- We need to trap the ORA LOCK exception
482: --
483: Exception

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

559: l_proc varchar2(72) := g_package||'convert_args';
560: --
561: Begin
562: --
563: hr_utility.set_location('Entering:'||l_proc, 5);
564: --
565: -- Convert arguments into local l_rec structure.
566: --
567: l_rec.per_cm_id := p_per_cm_id;

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

615: l_rec.object_version_number := p_object_version_number;
616: --
617: -- Return the plsql record structure.
618: --
619: hr_utility.set_location(' Leaving:'||l_proc, 10);
620: Return(l_rec);
621: --
622: End convert_args;
623: --