DBA Data[Home] [Help]

APPS.IRC_RAV_BUS SQL Statements

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

Line: 47

    select 1
      from per_gen_hierarchy_versions
     where hierarchy_version_id = p_hierarchy_version_id;
Line: 118

    select 1
      from irc_vac_rec_area_values
     where vacancy_id            = p_vacancy_id
       and hierarchy_version_id  = p_hierarchy_version_id;
Line: 178

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in irc_rav_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 203

End chk_non_updateable_args;
Line: 208

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

End insert_validate;
Line: 247

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

  chk_non_updateable_args
    (p_effective_date     => p_effective_date
    ,p_rec                => p_rec
    );
Line: 276

End update_validate;
Line: 281

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

End delete_validate;