DBA Data[Home] [Help]

APPS.IRC_CMC_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_communications cmc
      --   , EDIT_HERE table_name(s) 333
     where cmc.communication_id = p_communication_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_communications cmc
      --   , EDIT_HERE table_name(s) 333
     where cmc.communication_id = p_communication_id;
Line: 199

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

End chk_non_updateable_args;
Line: 364

    select null
    from per_all_assignments_f paaf
    where paaf.assignment_id = p_object_id
    and assignment_type = 'A';
Line: 370

    select null
    from irc_communications ic
    where ic.object_id = p_object_id
     and  ic.object_type = p_object_type;
Line: 553

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

End insert_update_validate;
Line: 582

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

      irc_cmc_bus.insert_update_validate(p_effective_date, p_rec);
Line: 609

End insert_validate;
Line: 614

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

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

  irc_cmc_bus.insert_update_validate(p_effective_date, p_rec);
Line: 644

End update_validate;
Line: 649

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

End delete_validate;