DBA Data[Home] [Help]

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

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

56: fnd_message.set_token('CONSTRAINT_NAME', p_constraint_name);
57: fnd_message.raise_error;
58: End If;
59: --
60: hr_utility.set_location(' Leaving:'||l_proc, 10);
61: End constraint_error;
62: --
63: -- ----------------------------------------------------------------------------
64: -- |-----------------------------< api_updating >-----------------------------|

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

93: l_proc varchar2(72) := g_package||'api_updating';
94: l_fct_ret boolean;
95: --
96: Begin
97: hr_utility.set_location('Entering:'||l_proc, 5);
98: --
99: If (
100: p_ext_crit_val_id is null and
101: p_object_version_number is null

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

109: If (
110: p_ext_crit_val_id = g_old_rec.ext_crit_val_id and
111: p_object_version_number = g_old_rec.object_version_number
112: ) Then
113: hr_utility.set_location(l_proc, 10);
114: --
115: -- The g_old_rec is current therefore we must
116: -- set the returning function to true
117: --

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

134: If (p_object_version_number <> g_old_rec.object_version_number) Then
135: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
136: fnd_message.raise_error;
137: End If;
138: hr_utility.set_location(l_proc, 15);
139: l_fct_ret := true;
140: End If;
141: End If;
142: hr_utility.set_location(' Leaving:'||l_proc, 20);

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

138: hr_utility.set_location(l_proc, 15);
139: l_fct_ret := true;
140: End If;
141: End If;
142: hr_utility.set_location(' Leaving:'||l_proc, 20);
143: Return (l_fct_ret);
144: --
145: End api_updating;
146: --

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

175: --
176: l_proc varchar2(72) := g_package||'lck';
177: --
178: Begin
179: hr_utility.set_location('Entering:'||l_proc, 5);
180: --
181: -- Add any mandatory argument checking here:
182: -- Example:
183: -- hr_api.mandatory_arg_error

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

200: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
201: fnd_message.raise_error;
202: End If;
203: --
204: hr_utility.set_location(' Leaving:'||l_proc, 10);
205: --
206: -- We need to trap the ORA LOCK exception
207: --
208: Exception

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

241: l_proc varchar2(72) := g_package||'convert_args';
242: --
243: Begin
244: --
245: hr_utility.set_location('Entering:'||l_proc, 5);
246: --
247: -- Convert arguments into local l_rec structure.
248: --
249: l_rec.ext_crit_val_id := p_ext_crit_val_id;

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

261: l_rec.object_version_number := p_object_version_number;
262: --
263: -- Return the plsql record structure.
264: --
265: hr_utility.set_location(' Leaving:'||l_proc, 10);
266: Return(l_rec);
267: --
268: End convert_args;
269: --