DBA Data[Home] [Help]

APPS.PER_MEDICAL_ASSESSMENT_API dependencies on HR_UTILITY

Line 97: hr_utility.set_location('Entering:'|| l_proc, 10);

93: l_effective_date DATE;
94: --
95: BEGIN
96: --
97: hr_utility.set_location('Entering:'|| l_proc, 10);
98: --
99: -- Issue a savepoint
100: --
101: SAVEPOINT create_medical_assessment;

Line 198: hr_utility.set_location(l_proc, 20);

194: ,p_hook_type => 'BP');
195: --
196: END;
197: --
198: hr_utility.set_location(l_proc, 20);
199: --
200: -- Process logic
201: --
202: per_mea_ins.ins

Line 279: hr_utility.set_location(l_proc, 30);

275: ,p_mea_information30 => p_mea_information30
276: ,p_medical_assessment_id => l_medical_assessment_id
277: ,p_object_version_number => l_object_version_number);
278: --
279: hr_utility.set_location(l_proc, 30);
280: --
281: -- Call After Process User Hook
282: --
283: BEGIN

Line 372: hr_utility.set_location(l_proc, 40);

368: ,p_hook_type => 'AP');
369: --
370: END;
371: --
372: hr_utility.set_location(l_proc, 40);
373: --
374: -- When in validation only mode raise the Validate_Enabled exception
375: --
376: IF p_validate THEN

Line 387: hr_utility.set_location(' Leaving:'||l_proc, 70);

383: --
384: p_medical_assessment_id := l_medical_assessment_id;
385: p_object_version_number := l_object_version_number;
386: --
387: hr_utility.set_location(' Leaving:'||l_proc, 70);
388: --
389: EXCEPTION
390: --
391: WHEN hr_api.validate_enabled THEN

Line 405: hr_utility.set_location(' Leaving:'||l_proc, 80);

401: --
402: p_medical_assessment_id := NULL;
403: p_object_version_number := NULL;
404: --
405: hr_utility.set_location(' Leaving:'||l_proc, 80);
406: --
407: WHEN OTHERS THEN
408: --
409: -- A validation or unexpected error has occured

Line 418: hr_utility.set_location(' Leaving:'||l_proc, 90);

414: --
415: p_medical_assessment_id := NULL;
416: p_object_version_number := NULL;
417: --
418: hr_utility.set_location(' Leaving:'||l_proc, 90);
419: --
420: RAISE;
421: --
422: END create_medical_assessment;

Line 518: hr_utility.set_location('Entering:'|| l_proc, 10);

514: l_effective_date DATE;
515: --
516: BEGIN
517: --
518: hr_utility.set_location('Entering:'|| l_proc, 10);
519: --
520: -- Issue a savepoint
521: --
522: SAVEPOINT update_medical_assessment;

Line 538: hr_utility.set_location(l_proc, 20);

534: -- Call Before Process User Hook
535: --
536: BEGIN
537: --
538: hr_utility.set_location(l_proc, 20);
539: --
540: per_medical_assessment_bk2.update_medical_assessment_b
541: (p_medical_assessment_id => p_medical_assessment_id
542: ,p_object_version_number => l_object_version_number

Line 626: hr_utility.set_location(l_proc, 30);

622: ,p_hook_type => 'BP');
623: --
624: END;
625: --
626: hr_utility.set_location(l_proc, 30);
627: --
628: -- Process Logic
629: --
630: per_mea_upd.upd

Line 711: hr_utility.set_location(l_proc, 40);

707: -- Call After Process User Hook
708: --
709: BEGIN
710: --
711: hr_utility.set_location(l_proc, 40);
712: --
713: per_medical_assessment_bk2.update_medical_assessment_a
714: (p_medical_assessment_id => p_medical_assessment_id
715: ,p_object_version_number => l_object_version_number

Line 799: hr_utility.set_location(l_proc, 50);

795: ,p_hook_type => 'AP');
796: --
797: END;
798: --
799: hr_utility.set_location(l_proc, 50);
800: --
801: -- When in validation only mode raise the Validate_Enabled exception
802: --
803: IF p_validate THEN

Line 813: hr_utility.set_location(' Leaving:'||l_proc, 70);

809: -- Set all output arguments
810: --
811: p_object_version_number := l_object_version_number;
812: --
813: hr_utility.set_location(' Leaving:'||l_proc, 70);
814: --
815: EXCEPTION
816: --
817: WHEN hr_api.validate_enabled THEN

Line 828: hr_utility.set_location(' Leaving:'||l_proc, 80);

824: -- Only set output warning arguments
825: -- (Any key or derived arguments must be set to null
826: -- when validation only mode is being used.)
827: --
828: hr_utility.set_location(' Leaving:'||l_proc, 80);
829: --
830: WHEN OTHERS THEN
831: --
832: -- A validation or unexpected error has occured

Line 840: hr_utility.set_location(' Leaving:'||l_proc, 90);

836: -- set in out parameters and set out parameters
837: --
838: p_object_version_number := l_ovn;
839: --
840: hr_utility.set_location(' Leaving:'||l_proc, 90);
841: --
842: RAISE;
843: --
844: END update_medical_assessment;

Line 862: hr_utility.set_location('Entering:'|| l_proc, 10);

858: l_proc VARCHAR2(72) := g_package||'delete_medical_assessment';
859: --
860: BEGIN
861: --
862: hr_utility.set_location('Entering:'|| l_proc, 10);
863: --
864: -- Issue a savepoint if operating in validation only mode.
865: --
866: SAVEPOINT delete_medical_assessment;

Line 887: hr_utility.set_location(l_proc,20);

883: --
884: END;
885: --
886: --
887: hr_utility.set_location(l_proc,20);
888: --
889: -- Process Logic
890: --
891: per_mea_del.del

Line 895: hr_utility.set_location(l_proc, 30);

891: per_mea_del.del
892: (p_medical_assessment_id => p_medical_assessment_id
893: ,p_object_version_number => p_object_version_number);
894: --
895: hr_utility.set_location(l_proc, 30);
896: --
897: -- Call After Process User Hook
898: --
899: BEGIN

Line 923: hr_utility.set_location(' Leaving:'||l_proc, 40);

919: RAISE hr_api.validate_enabled;
920: --
921: END IF;
922: --
923: hr_utility.set_location(' Leaving:'||l_proc, 40);
924: --
925: EXCEPTION
926: --
927: WHEN hr_api.validate_enabled THEN

Line 934: hr_utility.set_location(' Leaving:'||l_proc, 50);

930: -- we must rollback to the savepoint
931: --
932: ROLLBACK TO delete_medical_assessment;
933: --
934: hr_utility.set_location(' Leaving:'||l_proc, 50);
935: --
936: WHEN OTHERS THEN
937: --
938: ROLLBACK TO delete_medical_assessment;