DBA Data[Home] [Help]

APPS.PQP_VAI_BUS SQL Statements

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

Line: 35

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqp_veh_alloc_extra_info vai
      --   , EDIT_HERE table_name(s) 333
     where vai.veh_alloc_extra_info_id = p_veh_alloc_extra_info_id;
Line: 107

    select pbg.legislation_code
      from per_business_groups_perf     pbg
          ,pqp_vehicle_allocations_f    pva
     where pva.vehicle_allocation_id = p_vehicle_allocation_id
       and pbg.business_group_id     = pva.business_group_id;
Line: 181

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pqp_vehicle_allocations_f val
     where val.vehicle_allocation_id = p_vehicle_allocation_id
      AND   pbg.business_group_id=val.business_group_id ;
Line: 589

Procedure chk_non_updateable_args
  (p_rec in pqp_vai_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 613

End chk_non_updateable_args;
Line: 618

Procedure insert_validate
  (p_rec                          in pqp_vai_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 645

End insert_validate;
Line: 650

Procedure update_validate
  (p_rec                          in pqp_vai_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 671

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 681

End update_validate;
Line: 686

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

End delete_validate;