DBA Data[Home] [Help]

APPS.IRC_APS_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , irc_apl_profile_snapshots aps
         , per_all_assignments_f  paf
     where aps.profile_snapshot_id = p_profile_snapshot_id
     and   paf.person_id           = aps.person_id
     and   pbg.business_group_id   = paf.business_group_id;
Line: 101

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , irc_apl_profile_snapshots	aps
         , per_all_assignments_f	paf
     where aps.profile_snapshot_id = p_profile_snapshot_id
     and  paf.person_id		   = aps.person_id
     and  pbg.business_group_id    = paf.business_group_id;
Line: 191

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

End chk_non_updateable_args;
Line: 256

    select null
    from per_all_people_f
    where person_id = p_person_id;
Line: 308

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

End insert_validate;
Line: 337

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

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

End update_validate;
Line: 373

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

End delete_validate;