DBA Data[Home] [Help]

APPS.PQH_TJR_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
         , pqh_txn_job_requirements tjr
     where tjr.txn_job_requirement_id = p_txn_job_requirement_id
       and pbg.business_group_id = tjr.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_txn_job_requirements tjr
     where tjr.txn_job_requirement_id = p_txn_job_requirement_id
       and pbg.business_group_id = tjr.business_group_id;
Line: 312

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

End chk_non_updateable_args;
Line: 350

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

End insert_validate;
Line: 372

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 393

End update_validate;
Line: 398

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

End delete_validate;