DBA Data[Home] [Help]

APPS.PQP_PVD_BUS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pqp_vehicle_details pvd
     where pvd.vehicle_details_id = p_vehicle_details_id
       and pbg.business_group_id = pvd.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pqp_vehicle_details pvd
     where pvd.vehicle_details_id = p_vehicle_details_id
       and pbg.business_group_id (+) = pvd.business_group_id;
Line: 449

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in pqp_pvd_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 483

End chk_non_updateable_args;
Line: 546

 SELECT 'x'
   FROM PQP_ASSIGNMENT_ATTRIBUTES_F
  WHERE primary_company_car   = p_vehicle_details_id
     OR secondary_company_car = p_vehicle_details_id
     OR private_car           = p_vehicle_details_id;
Line: 648

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in pqp_pvd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 706

End insert_validate;
Line: 711

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in pqp_pvd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 763

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 774

End update_validate;
Line: 779

Procedure delete_validate
  (p_rec                          in pqp_pvd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 793

End delete_validate;