DBA Data[Home] [Help]

APPS.PQP_SHP_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_service_history_periods shp
     where shp.service_history_period_id = p_service_history_period_id
       and pbg.business_group_id = shp.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pqp_service_history_periods shp
     where shp.service_history_period_id = p_service_history_period_id
       and pbg.business_group_id = shp.business_group_id;
Line: 449

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

End chk_non_updateable_args;
Line: 829

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

End insert_validate;
Line: 884

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

  chk_non_updateable_args
    (
    p_rec              => p_rec
    );
Line: 949

End update_validate;
Line: 954

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

End delete_validate;