DBA Data[Home] [Help]

APPS.PQH_PRE_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_ins_end_reasons pre
     where pre.ins_end_reason_id = p_ins_end_reason_id
       and pbg.business_group_id = pre.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_de_ins_end_reasons pre
     where pre.ins_end_reason_id = p_ins_end_reason_id
       and pbg.business_group_id = pre.business_group_id;
Line: 180

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

End chk_non_updateable_args;
Line: 212

Select  END_REASON_NUMBER
  from  pqh_de_ins_end_reasons
 Where  PROVIDER_ORGANIZATION_ID = p_rec.PROVIDER_ORGANIZATION_ID
 and    END_REASON_NUMBER        = p_rec.END_REASON_NUMBER;
Line: 245

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

End insert_validate;
Line: 277

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 307

End update_validate;
Line: 312

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

End delete_validate;