DBA Data[Home] [Help]

APPS.BEN_ECY_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_COMPTNCY_PRTE_FK1') Then
37: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
38: fnd_message.set_token('PROCEDURE', l_proc);

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

54: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
55: fnd_message.raise_error;
56: End If;
57: --
58: hr_utility.set_location(' Leaving:'||l_proc, 10);
59: End constraint_error;
60: --
61: -- ----------------------------------------------------------------------------
62: -- |-----------------------------< api_updating >-----------------------------|

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

123: l_proc varchar2(72) := g_package||'api_updating';
124: l_fct_ret boolean;
125: --
126: Begin
127: hr_utility.set_location('Entering:'||l_proc, 5);
128: --
129: If (p_effective_date is null or
130: p_ELIG_COMPTNCY_PRTE_id is null or
131: p_object_version_number is null) Then

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

136: l_fct_ret := false;
137: Else
138: If (p_ELIG_COMPTNCY_PRTE_id = g_old_rec.ELIG_COMPTNCY_PRTE_id and
139: p_object_version_number = g_old_rec.object_version_number) Then
140: hr_utility.set_location(l_proc, 10);
141: --
142: -- The g_old_rec is current therefore we must
143: -- set the returning function to true
144: --

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

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

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

165: hr_utility.set_location(l_proc, 15);
166: l_fct_ret := true;
167: End If;
168: End If;
169: hr_utility.set_location(' Leaving:'||l_proc, 20);
170: Return (l_fct_ret);
171: --
172: End api_updating;
173: --

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

187: --
188: --
189: --
190: Begin
191: hr_utility.set_location('Entering:'||l_proc, 5);
192: --
193: --
194: -- Call the corresponding datetrack api
195: --

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

202: p_delete => p_delete,
203: p_future_change => p_future_change,
204: p_delete_next_change => p_delete_next_change);
205: --
206: hr_utility.set_location(' Leaving:'||l_proc, 10);
207: End find_dt_del_modes;
208: --
209: -- ----------------------------------------------------------------------------
210: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

219: --
220: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
221: --
222: Begin
223: hr_utility.set_location('Entering:'||l_proc, 5);
224: --
225: -- Call the corresponding datetrack api
226: --
227: dt_api.find_dt_upd_modes

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

233: p_update => p_update,
234: p_update_override => p_update_override,
235: p_update_change_insert => p_update_change_insert);
236: --
237: hr_utility.set_location(' Leaving:'||l_proc, 10);
238: End find_dt_upd_modes;
239: --
240: -- ----------------------------------------------------------------------------
241: -- |------------------------< upd_effective_end_date >------------------------|

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

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

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

262: (p_base_table_name => 'ben_ELIG_COMPTNCY_PRTE_f',
263: p_base_key_column => 'ELIG_COMPTNCY_PRTE_id',
264: p_base_key_value => p_base_key_value);
265: --
266: hr_utility.set_location(l_proc, 10);
267: g_api_dml := true; -- Set the api dml status
268: --
269: -- Update the specified datetrack row setting the effective
270: -- end date to the specified new effective end date.

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

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

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

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

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

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

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

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

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

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

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

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