DBA Data[Home] [Help]

APPS.BEN_EQG_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_QUA_IN_GR_PRTE_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 116: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

269: (p_base_table_name => 'ben_ELIG_QUA_IN_GR_PRTE_f',
270: p_base_key_column => 'ELIG_QUA_IN_GR_PRTE_id',
271: p_base_key_value => p_base_key_value);
272: --
273: hr_utility.set_location(l_proc, 10);
274: g_api_dml := true; -- Set the api dml status
275: --
276: -- Update the specified datetrack row setting the effective
277: -- 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 369: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

518: l_proc varchar2(72) := g_package||'convert_args';
519: --
520: Begin
521: --
522: hr_utility.set_location('Entering:'||l_proc, 5);
523: --
524: -- Convert arguments into local l_rec structure.
525: --
526: l_rec.ELIG_QUA_IN_GR_PRTE_id := p_ELIG_QUA_IN_GR_PRTE_id;

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

567: l_rec.criteria_weight := p_criteria_weight;
568: --
569: -- Return the plsql record structure.
570: --
571: hr_utility.set_location(' Leaving:'||l_proc, 10);
572: Return(l_rec);
573: --
574: End convert_args;
575: --