DBA Data[Home] [Help]

APPS.PQH_OPG_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_de_operation_groups opg
     where opg.operation_group_id = p_operation_group_id
       and pbg.business_group_id = opg.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_de_operation_groups opg
     where opg.operation_group_id = p_operation_group_id
       and pbg.business_group_id (+) = opg.business_group_id;
Line: 180

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

End chk_non_updateable_args;
Line: 222

Select  Description
  from  PQH_DE_OPERATION_groups
 Where  Description = p_rec.Description;
Line: 257

Select  '1'
  from  PQH_DE_OPERATION_groupS
 Where  operation_Group_CODE = p_rec.operation_Group_CODE;
Line: 288

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

End insert_validate;
Line: 345

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

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

End update_validate;
Line: 403

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

End delete_validate;