DBA Data[Home] [Help]

APPS.BEN_EQT_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_QUAL_TITL_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 117: hr_utility.set_location('Entering:'||l_proc, 5);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

521: l_proc varchar2(72) := g_package||'convert_args';
522: --
523: Begin
524: --
525: hr_utility.set_location('Entering:'||l_proc, 5);
526: --
527: -- Convert arguments into local l_rec structure.
528: --
529: l_rec.elig_qual_titl_prte_id := p_elig_qual_titl_prte_id;

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

571: l_rec.criteria_weight := p_criteria_weight;
572: --
573: -- Return the plsql record structure.
574: --
575: hr_utility.set_location(' Leaving:'||l_proc, 10);
576: Return(l_rec);
577: --
578: End convert_args;
579: --