DBA Data[Home] [Help]

APPS.BEN_PCP_BUS SQL Statements

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

Line: 115

select pcp.pl_pcp_id
from   ben_pl_pcp pcp
Where  pcp.pl_id = p_pl_id
and    pcp.pl_pcp_id <> nvl(p_pl_pcp_id,-1)
;
Line: 670

  select svgs_pl_flag, imptd_incm_calc_cd, invk_flx_cr_pl_flag, invk_dcln_prtn_pl_flag
       from   ben_pl_f
       Where  pl_id = p_pl_id
         and  p_effective_date between effective_start_date and
              effective_end_date;
Line: 777

cursor c1 is select 'x'
       from   ben_popl_org_f
       Where  pl_id = p_pl_id;
Line: 808

    select pbg.security_group_id
      from per_business_groups pbg
         , ben_pl_pcp pcp
     where pcp.pl_pcp_id = p_pl_pcp_id
       and pbg.business_group_id = pcp.business_group_id;
Line: 868

    select pbg.legislation_code
      from per_business_groups pbg
         , ben_pl_pcp pcp
     where pcp.pl_pcp_id = p_pl_pcp_id
       and pbg.business_group_id = pcp.business_group_id;
Line: 1133

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

End chk_non_updateable_args;
Line: 1171

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

End insert_validate;
Line: 1250

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

   chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 1322

End update_validate;
Line: 1327

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

End delete_validate;