DBA Data[Home] [Help]

APPS.HR_EXU_UPD dependencies on HR_UTILITY

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

55: --
56: l_proc varchar2(72) := g_package||'update_dml';
57: --
58: Begin
59: hr_utility.set_location('Entering:'||l_proc, 5);
60: --
61: -- Increment the object version
62: --
63: p_rec.object_version_number := p_rec.object_version_number + 1;

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

74: where exception_usage_id = p_rec.exception_usage_id;
75: --
76: hr_exu_shd.g_api_dml := false; -- Unset the api dml status
77: --
78: hr_utility.set_location(' Leaving:'||l_proc, 10);
79: --
80: Exception
81: When hr_api.check_integrity_violated Then
82: -- A check constraint has been violated

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

134: --
135: l_proc varchar2(72) := g_package||'pre_update';
136: --
137: Begin
138: hr_utility.set_location('Entering:'||l_proc, 5);
139: --
140: hr_utility.set_location(' Leaving:'||l_proc, 10);
141: End pre_update;
142: --

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

136: --
137: Begin
138: hr_utility.set_location('Entering:'||l_proc, 5);
139: --
140: hr_utility.set_location(' Leaving:'||l_proc, 10);
141: End pre_update;
142: --
143: -- ----------------------------------------------------------------------------
144: -- |-----------------------------< post_update >------------------------------|

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

176: --
177: l_proc varchar2(72) := g_package||'post_update';
178: --
179: Begin
180: hr_utility.set_location('Entering:'||l_proc, 5);
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: End post_update;
184: --

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

178: --
179: Begin
180: hr_utility.set_location('Entering:'||l_proc, 5);
181: --
182: hr_utility.set_location(' Leaving:'||l_proc, 10);
183: End post_update;
184: --
185: -- ----------------------------------------------------------------------------
186: -- |-----------------------------< convert_defs >-----------------------------|

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

231: l_proc varchar2(72) := g_package||'convert_defs';
232: --
233: Begin
234: --
235: hr_utility.set_location('Entering:'||l_proc, 5);
236: --
237: -- We must now examine each argument value in the
238: -- p_rec plsql record structure
239: -- to see if a system default is being used. If a system default

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

255: p_rec.exception_id :=
256: hr_exu_shd.g_old_rec.exception_id;
257: End If;
258: --
259: hr_utility.set_location(' Leaving:'||l_proc, 10);
260: --
261: End convert_defs;
262: --
263: -- ----------------------------------------------------------------------------

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

271: --
272: l_proc varchar2(72) := g_package||'upd';
273: --
274: Begin
275: hr_utility.set_location('Entering:'||l_proc, 5);
276: --
277: -- Determine if the business process is to be validated.
278: --
279: If p_validate then

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

317: If p_validate then
318: Raise HR_Api.Validate_Enabled;
319: End If;
320: --
321: hr_utility.set_location(' Leaving:'||l_proc, 10);
322: Exception
323: When HR_Api.Validate_Enabled Then
324: --
325: -- As the Validate_Enabled exception has been raised

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

342: l_rec hr_exu_shd.g_rec_type;
343: l_proc varchar2(72) := g_package||'upd';
344: --
345: Begin
346: hr_utility.set_location('Entering:'||l_proc, 5);
347: --
348: -- Call conversion function to turn arguments into the
349: -- l_rec structure.
350: --

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

365: --
366: upd(l_rec, p_validate);
367: p_object_version_number := l_rec.object_version_number;
368: --
369: hr_utility.set_location(' Leaving:'||l_proc, 10);
370: End upd;
371: --
372: end hr_exu_upd;