DBA Data[Home] [Help]

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

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

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

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

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

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

125: If (
126: p_ded_sched_py_freq_id = g_old_rec.ded_sched_py_freq_id and
127: p_object_version_number = g_old_rec.object_version_number
128: ) 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 219: hr_utility.set_location('Entering:'||l_proc, 5);

215: --
216: l_proc varchar2(72) := g_package||'lck';
217: --
218: Begin
219: hr_utility.set_location('Entering:'||l_proc, 5);
220: --
221: -- Add any mandatory argument checking here:
222: -- Example:
223: -- hr_api.mandatory_arg_error

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

240: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
241: fnd_message.raise_error;
242: End If;
243: --
244: hr_utility.set_location(' Leaving:'||l_proc, 10);
245: --
246: -- We need to trap the ORA LOCK exception
247: --
248: Exception

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

305: l_proc varchar2(72) := g_package||'convert_args';
306: --
307: Begin
308: --
309: hr_utility.set_location('Entering:'||l_proc, 5);
310: --
311: -- Convert arguments into local l_rec structure.
312: --
313: l_rec.ded_sched_py_freq_id := p_ded_sched_py_freq_id;

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

349: l_rec.object_version_number := p_object_version_number;
350: --
351: -- Return the plsql record structure.
352: --
353: hr_utility.set_location(' Leaving:'||l_proc, 10);
354: Return(l_rec);
355: --
356: End convert_args;
357: --