DBA Data[Home] [Help]

APPS.IRC_CMP_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_comm_properties cmp
      --   , EDIT_HERE table_name(s) 333
     where cmp.communication_property_id = p_communication_property_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_comm_properties cmp
      --   , EDIT_HERE table_name(s) 333
     where cmp.communication_property_id = p_communication_property_id;
Line: 393

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

End chk_non_updateable_args;
Line: 795

    select null
    from per_all_vacancies pav
    where pav.vacancy_id = p_object_id ;
Line: 800

    select null
    from irc_comm_properties icp
    where icp.object_id = p_object_id
     and  icp.object_type = p_object_type;
Line: 908

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

End insert_update_validate;
Line: 961

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

      irc_cmp_bus.insert_update_validate(p_effective_date, p_rec);
Line: 993

End insert_validate;
Line: 998

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

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

  irc_cmp_bus.insert_update_validate(p_effective_date, p_rec);
Line: 1033

End update_validate;
Line: 1038

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

End delete_validate;