DBA Data[Home] [Help]

APPS.PQP_VEHICLE_REPOSITORY_API dependencies on HR_UTILITY

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

110:
111: --used to get the currency code
112: l_currency_code :=hr_general.DEFAULT_CURRENCY_CODE(p_business_group_id);
113:
114: hr_utility.set_location('Entering:'|| l_proc, 10);
115:
116: --Truncate the incomming date parameter
117: l_effective_date:=TRUNC(p_effective_date);
118: --

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

118: --
119: -- Issue a savepoint
120: --
121: savepoint create_vehicle;
122: hr_utility.set_location(l_proc, 20);
123: --
124: -- Call Before Process User Hook
125: --
126: begin

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

419: p_object_version_number := p_object_version_number ;
420: p_effective_start_date := p_effective_start_date ;
421: p_effective_end_date := p_effective_end_date ;
422:
423: hr_utility.set_location(' Leaving:'||l_proc, 70);
424:
425: exception
426: when hr_api.validate_enabled then
427: --

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

437: p_vehicle_repository_id := null;
438: p_object_version_number := null;
439: p_effective_start_date := null;
440: p_effective_end_date := null;
441: hr_utility.set_location(' Leaving:'||l_proc, 80);
442: when others then
443: --
444: -- A validation or unexpected error has occured
445: --

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

447: p_vehicle_repository_id := null;
448: p_object_version_number := null;
449: p_effective_start_date := null;
450: p_effective_end_date := null;
451: hr_utility.set_location(' Leaving:'||l_proc, 90);
452: raise;
453: end create_vehicle ;
454:
455:

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

562: --truncate date parameter
563: l_effective_date :=TRUNC(p_effective_date) ;
564: savepoint update_vehicle;
565:
566: hr_utility.set_location(l_proc, 20);
567:
568: --
569: -- Call Before Process User Hook
570: --

Line 851: hr_utility.set_location(l_proc, 60);

847: ,p_hook_type => 'AP'
848: );
849: end;
850:
851: hr_utility.set_location(l_proc, 60);
852: --
853: -- When in validation only mode raise the Validate_Enabled exception
854: --
855: if p_validate then

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

860: --
861: p_effective_start_date := p_effective_start_date;
862: p_effective_end_date := p_effective_end_date ;
863: --
864: hr_utility.set_location(' Leaving:'||l_proc, 70);
865:
866: exception
867: when hr_api.validate_enabled then
868: --

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

876: -- when validation only mode is being used.)
877: --
878: p_effective_start_date := null;
879: p_effective_end_date := null;
880: hr_utility.set_location(' Leaving:'||l_proc, 80);
881: when others then
882: --
883: -- A validation or unexpected error has occured
884: --

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

884: --
885: rollback to update_vehicle;
886: p_effective_start_date := null;
887: p_effective_end_date := null;
888: hr_utility.set_location(' Leaving:'||l_proc, 90);
889: raise;
890:
891: END update_vehicle;
892:

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

917: -- Call Before Process User Hook
918: --
919: begin
920:
921: hr_utility.set_location('Entering:'|| l_proc, 10);
922: --
923: -- Issue a savepoint
924: --
925: savepoint delete_vehicle;

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

923: -- Issue a savepoint
924: --
925: savepoint delete_vehicle;
926: --
927: hr_utility.set_location(l_proc, 20);
928:
929: PQP_VEHICLE_REPOSITORY_BK3.delete_vehicle_b
930: (p_validate =>p_validate
931: ,p_effective_date =>l_effective_date

Line 976: hr_utility.set_location(l_proc, 60);

972: ,p_hook_type => 'AP'
973: );
974: end;
975:
976: hr_utility.set_location(l_proc, 60);
977: --
978: -- When in validation only mode raise the Validate_Enabled exception
979: --
980: if p_validate then

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

986: --
987: p_object_version_number := p_object_version_number ;
988: p_effective_start_date := p_effective_start_date ;
989: p_effective_end_date := p_effective_end_date ;
990: hr_utility.set_location(' Leaving:'||l_proc, 70);
991: exception
992: when hr_api.validate_enabled then
993: --
994: -- As the Validate_Enabled exception has been raised

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

1002: --
1003: p_effective_start_date := null;
1004: p_effective_end_date := null;
1005: p_object_version_number := null;
1006: hr_utility.set_location(' Leaving:'||l_proc, 80);
1007: when others then
1008: --
1009: -- A validation or unexpected error has occured
1010: --

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

1011: rollback to delete_vehicle;
1012: p_effective_start_date := null;
1013: p_effective_end_date := null;
1014: p_object_version_number := null;
1015: hr_utility.set_location(' Leaving:'||l_proc, 90);
1016: raise;
1017: END delete_vehicle;
1018:
1019: