DBA Data[Home] [Help]

APPS.BEN_REG_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_REGN_FK2') 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 123: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

284: between t.effective_start_date and t.effective_end_date;
285: --
286: g_api_dml := false; -- Unset the api dml status
287: p_object_version_number := l_object_version_number;
288: hr_utility.set_location(' Leaving:'||l_proc, 15);
289: --
290: Exception
291: When Others Then
292: g_api_dml := false; -- Unset the api dml status

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

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

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

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

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

439: --
440: p_validation_start_date := l_validation_start_date;
441: p_validation_end_date := l_validation_end_date;
442: --
443: hr_utility.set_location(' Leaving:'||l_proc, 30);
444: --
445: -- We need to trap the ORA LOCK exception
446: --
447: Exception

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

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

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

559: l_rec.object_version_number := p_object_version_number;
560: --
561: -- Return the plsql record structure.
562: --
563: hr_utility.set_location(' Leaving:'||l_proc, 10);
564: Return(l_rec);
565: --
566: End convert_args;
567: --