DBA Data[Home] [Help]

APPS.PQH_BRE_BUS SQL Statements

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

Line: 30

    select pbg.security_group_id
      from per_business_groups pbg
         , pqh_budget_pools bpl
     where bpl.pool_id = p_pool_id
       and pbg.business_group_id = bpl.business_group_id;
Line: 37

    select pbg.security_group_id
      from per_business_groups pbg
         , pqh_bdgt_pool_realloctions  bre
         , pqh_budget_pools bpl
     where bre.reallocation_id = p_txn_detail_id
       and bre.pool_id = bpl.pool_id
       and pbg.business_group_id = bpl.business_group_id;
Line: 141

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_bdgt_pool_realloctions bre
         , pqh_budget_pools bpl
     where bre.reallocation_id = p_reallocation_id
       and ( (bre.transaction_type in ('D','R')
              and bre.pool_id = bpl.pool_id)
            OR (bre.transaction_type in ('DD','RD')
                and bpl.pool_id = (select txn_detail_id
                                   from pqh_bdgt_pool_realloctions
                                   where reallocation_id = p_reallocation_id)) )
       and pbg.business_group_id = bpl.business_group_id;
Line: 236

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

End chk_non_updateable_args;
Line: 366

    select null
    from   pqh_budget_pools a
    where  a.pool_id = p_pool_id;
Line: 371

    select null
    from   pqh_bdgt_pool_realloctions a
    where  a.reallocation_id = p_txn_detail_id;
Line: 496

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

End insert_validate;
Line: 544

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

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

End update_validate;
Line: 594

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

End delete_validate;