DBA Data[Home] [Help]

APPS.IRC_ITA_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , irc_template_associations ita
      --   , EDIT_HERE table_name(s) 333
     where ita.template_association_id = p_template_association_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_template_associations ita
      --   , EDIT_HERE table_name(s) 333
     where ita.template_association_id = p_template_association_id;
Line: 199

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

End chk_non_updateable_args;
Line: 275

     select null
        from  xdo_templates_b
        where template_id = p_template_id;
Line: 364

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

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

    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: 710

     select null
       from irc_template_associations ita
       where ita.organization_id = p_organization_id
       and ita.template_id = p_template_id;
Line: 716

     select null
       from irc_template_associations ita
       where ita.position_id = p_position_id
       and ita.template_id = p_template_id;
Line: 722

     select null
       from irc_template_associations ita
       where ita.job_id = p_job_id
       and ita.template_id = p_template_id;
Line: 982

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

End insert_validate;
Line: 1070

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 1154

End update_validate;
Line: 1159

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

End delete_validate;