DBA Data[Home] [Help]

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

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

49: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
50: fnd_message.raise_error;
51: End If;
52: --
53: hr_utility.set_location(' Leaving:'||l_proc, 10);
54: End constraint_error;
55: --
56: -- ----------------------------------------------------------------------------
57: -- |-----------------------------< api_updating >-----------------------------|

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

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

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

137: l_fct_ret := false;
138: Else
139: If (p_elig_schedd_hrs_prte_id = g_old_rec.elig_schedd_hrs_prte_id and
140: p_object_version_number = g_old_rec.object_version_number) Then
141: hr_utility.set_location(l_proc, 10);
142: --
143: -- The g_old_rec is current therefore we must
144: -- set the returning function to true
145: --

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

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

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

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

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

194: and p_effective_date
195: between t.effective_start_date and t.effective_end_date;
196: --
197: Begin
198: hr_utility.set_location('Entering:'||l_proc, 5);
199: Open C_Sel1;
200: Fetch C_Sel1 Into l_parent_key_value1;
201: If C_Sel1%notfound then
202: Close C_Sel1;

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

221: p_delete => p_delete,
222: p_future_change => p_future_change,
223: p_delete_next_change => p_delete_next_change);
224: --
225: hr_utility.set_location(' Leaving:'||l_proc, 10);
226: End find_dt_del_modes;
227: --
228: -- ----------------------------------------------------------------------------
229: -- |--------------------------< find_dt_upd_modes >---------------------------|

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

238: --
239: l_proc varchar2(72) := g_package||'find_dt_upd_modes';
240: --
241: Begin
242: hr_utility.set_location('Entering:'||l_proc, 5);
243: --
244: -- Call the corresponding datetrack api
245: --
246: dt_api.find_dt_upd_modes

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

252: p_update => p_update,
253: p_update_override => p_update_override,
254: p_update_change_insert => p_update_change_insert);
255: --
256: hr_utility.set_location(' Leaving:'||l_proc, 10);
257: End find_dt_upd_modes;
258: --
259: -- ----------------------------------------------------------------------------
260: -- |------------------------< upd_effective_end_date >------------------------|

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

270: l_proc varchar2(72) := g_package||'upd_effective_end_date';
271: l_object_version_number number;
272: --
273: Begin
274: hr_utility.set_location('Entering:'||l_proc, 5);
275: --
276: -- Because we are updating a row we must get the next object
277: -- version number.
278: --

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

281: (p_base_table_name => 'ben_elig_schedd_hrs_prte_f',
282: p_base_key_column => 'elig_schedd_hrs_prte_id',
283: p_base_key_value => p_base_key_value);
284: --
285: hr_utility.set_location(l_proc, 10);
286: g_api_dml := true; -- Set the api dml status
287: --
288: -- Update the specified datetrack row setting the effective
289: -- end date to the specified new effective end date.

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

296: between t.effective_start_date and t.effective_end_date;
297: --
298: g_api_dml := false; -- Unset the api dml status
299: p_object_version_number := l_object_version_number;
300: hr_utility.set_location(' Leaving:'||l_proc, 15);
301: --
302: Exception
303: When Others Then
304: g_api_dml := false; -- Unset the api dml status

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

384: --
385: --
386: --
387: Begin
388: hr_utility.set_location('Entering:'||l_proc, 5);
389: --
390: -- Ensure that all the mandatory arguments are not null
391: --
392: hr_api.mandatory_arg_error(p_api_name => l_proc,

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

425: If (p_object_version_number <> g_old_rec.object_version_number) Then
426: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
427: fnd_message.raise_error;
428: End If;
429: hr_utility.set_location(l_proc, 15);
430: --
431: --
432: -- Validate the datetrack mode mode getting the validation start
433: -- and end dates for the specified datetrack operation.

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

460: --
461: p_validation_start_date := l_validation_start_date;
462: p_validation_end_date := l_validation_end_date;
463: --
464: hr_utility.set_location(' Leaving:'||l_proc, 30);
465: --
466: -- We need to trap the ORA LOCK exception
467: --
468: Exception

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

544: l_proc varchar2(72) := g_package||'convert_args';
545: --
546: Begin
547: --
548: hr_utility.set_location('Entering:'||l_proc, 5);
549: --
550: -- Convert arguments into local l_rec structure.
551: --
552: l_rec.elig_schedd_hrs_prte_id := p_elig_schedd_hrs_prte_id;

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

600: l_rec.criteria_weight := p_criteria_weight;
601: --
602: -- Return the plsql record structure.
603: --
604: hr_utility.set_location(' Leaving:'||l_proc, 10);
605: Return(l_rec);
606: --
607: End convert_args;
608: --