DBA Data[Home] [Help]

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

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

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

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

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

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

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

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

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

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

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

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

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

254: hr_pat_shd.g_old_rec.pattern_start_time;
255: End If;
256:
257: --
258: hr_utility.set_location(' Leaving:'||l_proc, 10);
259: --
260: End convert_defs;
261: --
262: -- ----------------------------------------------------------------------------

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

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

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

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

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

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

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_pat_upd;