DBA Data[Home] [Help]

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

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

64: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
65: fnd_message.raise_error;
66: End If;
67: --
68: hr_utility.set_location(' Leaving:'||l_proc, 10);
69: End constraint_error;
70: --
71: -- ----------------------------------------------------------------------------
72: -- |-----------------------------< 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_ext_rcd_in_file_id is null and
117: p_object_version_number is null

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

125: If (
126: p_ext_rcd_in_file_id = g_old_rec.ext_rcd_in_file_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 203: hr_utility.set_location('Entering:'||l_proc, 5);

199: --
200: l_proc varchar2(72) := g_package||'lck';
201: --
202: Begin
203: hr_utility.set_location('Entering:'||l_proc, 5);
204: --
205: -- Add any mandatory argument checking here:
206: -- Example:
207: -- hr_api.mandatory_arg_error

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

224: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
225: fnd_message.raise_error;
226: End If;
227: --
228: hr_utility.set_location(' Leaving:'||l_proc, 10);
229: --
230: -- We need to trap the ORA LOCK exception
231: --
232: Exception

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

273: l_proc varchar2(72) := g_package||'convert_args';
274: --
275: Begin
276: --
277: hr_utility.set_location('Entering:'||l_proc, 5);
278: --
279: -- Convert arguments into local l_rec structure.
280: --
281: l_rec.ext_rcd_in_file_id := p_ext_rcd_in_file_id;

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

301: l_rec.chg_rcd_upd_flag := p_chg_rcd_upd_flag;
302: --
303: -- Return the plsql record structure.
304: --
305: hr_utility.set_location(' Leaving:'||l_proc, 10);
306: Return(l_rec);
307: --
308: End convert_args;
309: --