DBA Data[Home] [Help]

APPS.HR_CAL_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 77: hr_utility.set_location(' Leaving:'||l_proc, 10);

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

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

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

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

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

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

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

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

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

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

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

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

255: hr_cal_shd.g_old_rec.pattern_id;
256: End If;
257:
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_cal_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_cal_upd;