DBA Data[Home] [Help]

APPS.PER_APR_UPD dependencies on HR_UTILITY

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

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

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

127: retention_potential = p_rec.retention_potential,
128: show_participant_comments = p_rec.show_participant_comments -- 8651478 bug fix
129: where appraisal_id = p_rec.appraisal_id;
130:
131: hr_utility.set_location(' Leaving:'||l_proc, 10);
132:
133: Exception
134: When hr_api.check_integrity_violated Then
135: -- A check constraint has been violated

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

183:
184: l_proc varchar2(72) := g_package||'pre_update';
185:
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188:
189: hr_utility.set_location(' Leaving:'||l_proc, 10);
190: End pre_update;
191:

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

185:
186: Begin
187: hr_utility.set_location('Entering:'||l_proc, 5);
188:
189: hr_utility.set_location(' Leaving:'||l_proc, 10);
190: End pre_update;
191:
192: -- ---------------------------------------------------------------------------+
193: -- |-----------------------------< post_update >------------------------------|

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

225:
226: l_proc varchar2(72) := g_package||'post_update';
227:
228: Begin
229: hr_utility.set_location('Entering:'||l_proc, 5);
230:
231: -- This is a hook point and the user hook for post_update is called here.
232:
233: begin

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

367: );
368: end;
369: -- End of API User Hook for post_update
370:
371: hr_utility.set_location(' Leaving:'||l_proc, 10);
372: End post_update;
373:
374: -- ---------------------------------------------------------------------------+
375: -- |-----------------------------< convert_defs >-----------------------------|

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

420: l_proc varchar2(72) := g_package||'convert_defs';
421:
422: Begin
423:
424: hr_utility.set_location('Entering:'||l_proc, 5);
425:
426: -- We must now examine each argument value in the
427: -- p_rec plsql record structure
428: -- to see if a system default is being used. If a system default

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

712: p_rec.show_participant_comments :=
713: per_apr_shd.g_old_rec.show_participant_comments;
714: End If;
715:
716: hr_utility.set_location(' Leaving:'||l_proc, 10);
717:
718: End convert_defs;
719:
720: -- ---------------------------------------------------------------------------+

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

729:
730: l_proc varchar2(72) := g_package||'upd';
731:
732: Begin
733: hr_utility.set_location('Entering:'||l_proc, 5);
734:
735: -- Determine if the business process is to be validated.
736:
737: If p_validate then

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

778: If p_validate then
779: Raise HR_Api.Validate_Enabled;
780: End If;
781:
782: hr_utility.set_location(' Leaving:'||l_proc, 10);
783: Exception
784: When HR_Api.Validate_Enabled Then
785:
786: -- As the Validate_Enabled exception has been raised

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

866: l_rec per_apr_shd.g_rec_type;
867: l_proc varchar2(72) := g_package||'upd';
868:
869: Begin
870: hr_utility.set_location('Entering:'||l_proc, 5);
871:
872: -- Call conversion function to turn arguments into the
873: -- l_rec structure.
874:

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

953:
954: upd(l_rec, p_effective_date,p_validate);
955: p_object_version_number := l_rec.object_version_number;
956:
957: hr_utility.set_location(' Leaving:'||l_proc, 10);
958: End upd;
959:
960: end per_apr_upd;