DBA Data[Home] [Help]

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

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

44: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
45: fnd_message.raise_error;
46: End If;
47: --
48: hr_utility.set_location(' Leaving:'||l_proc, 10);
49: End constraint_error;
50: --
51: -- ----------------------------------------------------------------------------
52: -- |-----------------------------< api_updating >-----------------------------|

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

110: l_proc varchar2(72) := g_package||'api_updating';
111: l_fct_ret boolean;
112: --
113: Begin
114: hr_utility.set_location('Entering:'||l_proc, 5);
115: --
116: If (p_effective_date is null or
117: p_dsbld_rt_id is null or
118: p_object_version_number is null) Then

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

123: l_fct_ret := false;
124: Else
125: If (p_dsbld_rt_id = g_old_rec.dsbld_rt_id and
126: p_object_version_number = g_old_rec.object_version_number) Then
127: hr_utility.set_location(l_proc, 10);
128: --
129: -- The g_old_rec is current therefore we must
130: -- set the returning function to true
131: --

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

148: If (p_object_version_number <> g_old_rec.object_version_number) Then
149: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
150: fnd_message.raise_error;
151: End If;
152: hr_utility.set_location(l_proc, 15);
153: l_fct_ret := true;
154: End If;
155: End If;
156: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

152: hr_utility.set_location(l_proc, 15);
153: l_fct_ret := true;
154: End If;
155: End If;
156: hr_utility.set_location(' Leaving:'||l_proc, 20);
157: Return (l_fct_ret);
158: --
159: End api_updating;
160: --

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

180: and p_effective_date
181: between t.effective_start_date and t.effective_end_date;
182: --
183: Begin
184: hr_utility.set_location('Entering:'||l_proc, 5);
185: Open C_Sel1;
186: Fetch C_Sel1 Into l_parent_key_value1;
187: If C_Sel1%notfound then
188: Close C_Sel1;

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

207: p_delete => p_delete,
208: p_future_change => p_future_change,
209: p_delete_next_change => p_delete_next_change);
210: --
211: hr_utility.set_location(' Leaving:'||l_proc, 10);
212: End find_dt_del_modes;
213: --
214: -- ----------------------------------------------------------------------------
215: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

224: --
225: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
226: --
227: Begin
228: hr_utility.set_location('Entering:'||l_proc, 5);
229: --
230: -- Call the corresponding datetrack api
231: --
232: dt_api.find_dt_upd_modes

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

238: p_update => p_update,
239: p_update_override => p_update_override,
240: p_update_change_insert => p_update_change_insert);
241: --
242: hr_utility.set_location(' Leaving:'||l_proc, 10);
243: End find_dt_upd_modes;
244: --
245: -- ----------------------------------------------------------------------------
246: -- |------------------------< upd_effective_end_date >------------------------|

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

256: l_proc varchar2(72) := g_package||'upd_effective_end_date';
257: l_object_version_number number;
258: --
259: Begin
260: hr_utility.set_location('Entering:'||l_proc, 5);
261: --
262: -- Because we are updating a row we must get the next object
263: -- version number.
264: --

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

267: (p_base_table_name => 'ben_dsbld_rt_f',
268: p_base_key_column => 'dsbld_rt_id',
269: p_base_key_value => p_base_key_value);
270: --
271: hr_utility.set_location(l_proc, 10);
272: g_api_dml := true; -- Set the api dml status
273: --
274: -- Update the specified datetrack row setting the effective
275: -- end date to the specified new effective end date.

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

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

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

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

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

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

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

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

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

512: l_proc varchar2(72) := g_package||'convert_args';
513: --
514: Begin
515: --
516: hr_utility.set_location('Entering:'||l_proc, 5);
517: --
518: -- Convert arguments into local l_rec structure.
519: --
520: l_rec.dsbld_rt_id := p_dsbld_rt_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: --