DBA Data[Home] [Help]

APPS.BEN_PSQ_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_PYMT_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 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 109: hr_utility.set_location('Entering:'||l_proc, 5);

105: l_proc varchar2(72) := g_package||'api_updating';
106: l_fct_ret boolean;
107: --
108: Begin
109: hr_utility.set_location('Entering:'||l_proc, 5);
110: --
111: If (
112: p_pymt_sched_py_freq_id is null and
113: p_object_version_number is null

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

121: If (
122: p_pymt_sched_py_freq_id = g_old_rec.pymt_sched_py_freq_id and
123: p_object_version_number = g_old_rec.object_version_number
124: ) Then
125: hr_utility.set_location(l_proc, 10);
126: --
127: -- The g_old_rec is current therefore we must
128: -- set the returning function to true
129: --

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

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

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

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

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

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

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

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

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

301: l_proc varchar2(72) := g_package||'convert_args';
302: --
303: Begin
304: --
305: hr_utility.set_location('Entering:'||l_proc, 5);
306: --
307: -- Convert arguments into local l_rec structure.
308: --
309: l_rec.pymt_sched_py_freq_id := p_pymt_sched_py_freq_id;

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

345: l_rec.object_version_number := p_object_version_number;
346: --
347: -- Return the plsql record structure.
348: --
349: hr_utility.set_location(' Leaving:'||l_proc, 10);
350: Return(l_rec);
351: --
352: End convert_args;
353: --