DBA Data[Home] [Help]

APPS.PQP_ERT_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
         , pqp_exception_reports_tl ert
         , pqp_exception_reports exr
     where ert.exception_report_id = p_exception_report_id
     and pbg.business_group_id = exr.business_group_id
     and exr.exception_report_id = ert.exception_report_id;
Line: 94

    select pbg.legislation_code
      from per_business_groups   pbg
          ,pqp_exception_reports exr
     where exr.exception_report_id = p_exception_report_id
       and pbg.business_group_id   = exr.business_group_id;
Line: 187

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

End chk_non_updateable_args;
Line: 223

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

End insert_validate;
Line: 243

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

  chk_non_updateable_args (
      p_rec              => p_rec
    );
Line: 263

End update_validate;
Line: 268

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

End delete_validate;