DBA Data[Home] [Help]

APPS.PQP_VRE_DEL dependencies on PQP_VEHICLE_REPOSITORY_F

Line 72: FROM pqp_vehicle_repository_f

68: -- Delete the where the effective start date is equal
69: -- to the validation end date.
70: --
71: DELETE
72: FROM pqp_vehicle_repository_f
73: WHERE vehicle_repository_id = p_rec.vehicle_repository_id
74: AND effective_start_date = p_validation_start_date;
75: --
76: --

Line 83: delete from pqp_vehicle_repository_f

79: --
80: -- Delete the row(s) where the effective start date is greater than
81: -- or equal to the validation start date.
82: --
83: delete from pqp_vehicle_repository_f
84: where vehicle_repository_id = p_rec.vehicle_repository_id
85: and effective_start_date >= p_validation_start_date;
86: --
87: --

Line 503: (p_module_name => 'PQP_VEHICLE_REPOSITORY_F'

499: --
500: when hr_api.cannot_find_prog_unit then
501: --
502: hr_api.cannot_find_prog_unit_error
503: (p_module_name => 'PQP_VEHICLE_REPOSITORY_F'
504: ,p_hook_type => 'AD');
505: --
506: end;
507: hr_utility.set_location(' Leaving:'||l_proc, 10);