DBA Data[Home] [Help]

APPS.BEN_PTY_BUS SQL Statements

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

Line: 116

    select null
    from   ben_pl_pcp a
    where  a.pl_pcp_id = p_pl_pcp_id;
Line: 342

cursor c1 is select pcp_rpstry_flag
       from   ben_pl_pcp
       Where  pl_pcp_id = p_pl_pcp_id;
Line: 373

    select pbg.security_group_id
      from per_business_groups pbg
         , ben_pl_pcp_typ pty
     where pty.pl_pcp_typ_id = p_pl_pcp_typ_id
       and pbg.business_group_id = pty.business_group_id;
Line: 433

    select pbg.legislation_code
      from per_business_groups pbg
         , ben_pl_pcp_typ pty
     where pty.pl_pcp_typ_id = p_pl_pcp_typ_id
       and pbg.business_group_id = pty.business_group_id;
Line: 698

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

End chk_non_updateable_args;
Line: 736

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

End insert_validate;
Line: 781

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 824

End update_validate;
Line: 829

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

End delete_validate;