DBA Data[Home] [Help]

APPS.GHR_PDH_UPD dependencies on HR_UTILITY

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

50: --
51: l_proc varchar2(72) := g_package||'update_dml';
52: --
53: Begin
54: hr_utility.set_location('Entering:'||l_proc, 5);
55: --
56: -- Increment the object version
57: --
58: p_rec.object_version_number := p_rec.object_version_number + 1;

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

81: date_notification_sent = p_rec.date_notification_sent,
82: object_version_number = p_rec.object_version_number
83: where pd_routing_history_id = p_rec.pd_routing_history_id;
84: --
85: hr_utility.set_location(' Leaving:'||l_proc, 10);
86: --
87: Exception
88: When hr_api.check_integrity_violated Then
89: -- A check constraint has been violated

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

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

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

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

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

179: --
180: l_proc varchar2(72) := g_package||'post_update';
181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: -- This is a hook point and the user hook for post_update is called here.
186: --
187: begin

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

235: );
236: end;
237: -- End of API User Hook for post_update.
238: --
239: hr_utility.set_location(' Leaving:'||l_proc, 10);
240: End post_update;
241: --
242: -- ----------------------------------------------------------------------------
243: -- |-----------------------------< convert_defs >-----------------------------|

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

288: l_proc varchar2(72) := g_package||'convert_defs';
289: --
290: Begin
291: --
292: hr_utility.set_location('Entering:'||l_proc, 5);
293: --
294: -- We must now examine each argument value in the
295: -- p_rec plsql record structure
296: -- to see if a system default is being used. If a system default

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

388: p_rec.item_key :=
389: ghr_pdh_shd.g_old_rec.item_key;
390: End If;
391: --
392: hr_utility.set_location(' Leaving:'||l_proc, 10);
393: --
394: End convert_defs;
395: --
396: -- ----------------------------------------------------------------------------

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

404: --
405: l_proc varchar2(72) := g_package||'upd';
406: --
407: Begin
408: hr_utility.set_location('Entering:'||l_proc, 5);
409: --
410: -- Determine if the business process is to be validated.
411: --
412: If p_validate then

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

450: If p_validate then
451: Raise HR_Api.Validate_Enabled;
452: End If;
453: --
454: hr_utility.set_location(' Leaving:'||l_proc, 10);
455: Exception
456: When HR_Api.Validate_Enabled Then
457: --
458: -- As the Validate_Enabled exception has been raised

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

489: l_rec ghr_pdh_shd.g_rec_type;
490: l_proc varchar2(72) := g_package||'upd';
491: --
492: Begin
493: hr_utility.set_location('Entering:'||l_proc, 5);
494: --
495: -- Call conversion function to turn arguments into the
496: -- l_rec structure.
497: --

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

528: upd(l_rec,p_validate);
529:
530: p_object_version_number := l_rec.object_version_number;
531: --
532: hr_utility.set_location(' Leaving:'||l_proc, 10);
533: End upd;
534: --
535: end ghr_pdh_upd;