DBA Data[Home] [Help]

APPS.BEN_EHC_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_HLTH_CVG_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 125: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

429: --
430: p_validation_start_date := l_validation_start_date;
431: p_validation_end_date := l_validation_end_date;
432: --
433: hr_utility.set_location(' Leaving:'||l_proc, 30);
434: --
435: -- We need to trap the ORA LOCK exception
436: --
437: 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_HLTH_CVG_PRTE_id := p_ELIG_HLTH_CVG_PRTE_id;

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

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