DBA Data[Home] [Help]

APPS.IRC_IDP_BUS SQL Statements

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

Line: 221

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

End chk_non_updateable_args;
Line: 352

     select null
       from hr_all_organization_units haou
      where haou.organization_id = p_organization_id;
Line: 410

     select null
       from per_jobs pj
      where pj.job_id = p_job_id;
Line: 469

    select null
      from hr_all_positions_f hapf
    where hapf.position_id = p_position_id
      and trunc(sysdate) between hapf.effective_start_date
      and hapf.effective_end_date;
Line: 500

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

End insert_validate;
Line: 554

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 610

End update_validate;
Line: 615

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

End delete_validate;