DBA Data[Home] [Help]

APPS.PQH_BPL_BUS SQL Statements

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

Line: 28

    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: 92

    select pbg.legislation_code
      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: 180

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

End chk_non_updateable_args;
Line: 306

    select a.budgeted_entity_cd
    from   pqh_budgets a
    where  a.budget_id = (Select budget_id
                         From pqh_budget_versions bvr
                         where bvr.budget_version_id = p_budget_version_id);
Line: 417

   Select null
     from per_shared_types pst
    where pst.shared_type_id = p_budget_unit_id
      AND  lookup_type = 'BUDGET_MEASUREMENT_TYPE';
Line: 425

     Select null
      from pqh_budgets bgt
      Where bgt.budget_id = (Select budget_id
                               From pqh_budget_versions bvr
                              Where bvr.budget_version_id = p_budget_version_id)
     and (bgt.budget_unit1_id = p_budget_unit_id or
          bgt.budget_unit2_id = p_budget_unit_id or
          bgt.budget_unit3_id = p_budget_unit_id );
Line: 499

  select null
  from   pqh_budget_pools
  where  parent_pool_id = p_pool_id;
Line: 503

  Select null
  from   pqh_bdgt_pool_realloctions a
  Where  a.pool_id = p_pool_id;
Line: 556

  Select null
  from   pqh_budget_pools a
  Where  a.name = p_name
   AND   a.parent_pool_id IS NULL
    AND  (p_pool_id IS NULL or a.pool_id <> p_pool_id)
AND a.approval_status<>'T';
Line: 563

  Select null
  from   pqh_budget_pools a
  Where  a.name = p_name
   AND   a.parent_pool_id IS NOT NULL
   AND   a.parent_pool_id =p_parent_pool_id
   AND  (p_pool_id IS NULL or a.pool_id <> p_pool_id);
Line: 633

  Select null
  from   pqh_budget_pools a
  Where  budget_version_id = p_budget_version_id
    AND  budget_unit_id = p_budget_unit_id
    AND  (p_pool_id IS NULL or a.pool_id <> p_pool_id);
Line: 679

  SELECT 'x'
  FROM   pqh_transaction_categories
  WHERE  transaction_category_id = p_transaction_category_id;
Line: 699

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

End insert_validate;
Line: 759

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

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

End update_validate;
Line: 830

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

End delete_validate;