DBA Data[Home] [Help]

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

95: attribute20 = p_rec.attribute20,
96: appr_line_score = p_rec.appr_line_score
97: where performance_rating_id = p_rec.performance_rating_id;
98:
99: hr_utility.set_location(' Leaving:'||l_proc, 10);
100:
101: Exception
102: When hr_api.check_integrity_violated Then
103: -- A check constraint has been violated

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

151:
152: l_proc varchar2(72) := g_package||'pre_update';
153:
154: Begin
155: hr_utility.set_location('Entering:'||l_proc, 5);
156:
157: hr_utility.set_location(' Leaving:'||l_proc, 10);
158: End pre_update;
159:

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

153:
154: Begin
155: hr_utility.set_location('Entering:'||l_proc, 5);
156:
157: hr_utility.set_location(' Leaving:'||l_proc, 10);
158: End pre_update;
159:
160: -- ---------------------------------------------------------------------------+
161: -- |-----------------------------< post_update >------------------------------|

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

193:
194: l_proc varchar2(72) := g_package||'post_update';
195:
196: Begin
197: hr_utility.set_location('Entering:'||l_proc, 5);
198:
199: -- This is a hook point and the user hook for post_update is called here.
200:
201: begin

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

264: );
265: end;
266: -- End of API User Hook for post_update
267:
268: hr_utility.set_location(' Leaving:'||l_proc, 10);
269: End post_update;
270:
271: -- ---------------------------------------------------------------------------+
272: -- |-----------------------------< convert_defs >-----------------------------|

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

316: l_proc varchar2(72) := g_package||'convert_defs';
317:
318: Begin
319:
320: hr_utility.set_location('Entering:'||l_proc, 5);
321:
322: -- We must now examine each argument value in the
323: -- p_rec plsql record structure
324: -- to see if a system default is being used. If a system default

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

432: p_rec.appr_line_score :=
433: per_prt_shd.g_old_rec.appr_line_score;
434: End If;
435:
436: hr_utility.set_location(' Leaving:'||l_proc, 10);
437:
438: End convert_defs;
439:
440: -- ---------------------------------------------------------------------------+

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

449:
450: l_proc varchar2(72) := g_package||'upd';
451:
452: Begin
453: hr_utility.set_location('Entering:'||l_proc, 5);
454:
455: -- Determine if the business process is to be validated.
456:
457: If p_validate then

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

507: If p_validate then
508: Raise HR_Api.Validate_Enabled;
509: End If;
510:
511: hr_utility.set_location(' Leaving:'||l_proc, 10);
512: Exception
513: When HR_Api.Validate_Enabled Then
514:
515: -- As the Validate_Enabled exception has been raised

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

557: l_rec per_prt_shd.g_rec_type;
558: l_proc varchar2(72) := g_package||'upd';
559:
560: Begin
561: hr_utility.set_location('Entering:'||l_proc, 5);
562:
563: -- Call conversion function to turn arguments into the
564: -- l_rec structure.
565:

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

603:
604: upd(l_rec, p_validate, p_effective_date);
605: p_object_version_number := l_rec.object_version_number;
606:
607: hr_utility.set_location(' Leaving:'||l_proc, 10);
608: End upd;
609:
610: end per_prt_upd;