DBA Data[Home] [Help]

APPS.BEN_AGF_BUS SQL Statements

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

Line: 111

    select null
    from   hr_all_organization_units a
    where  a.organization_id = p_organization_id;
Line: 1007

    select null
    from   ben_age_fctr  agf
    where  agf.business_group_id = p_business_group_id and
                 agf.name = p_name;
Line: 1082

   cursor chk_cmbn_age_los_fctr is select null
                                   from   ben_cmbn_age_los_fctr cla
                                   where  cla.age_fctr_id = p_age_fctr_id;
Line: 1165

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

End insert_validate;
Line: 1273

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

End update_validate;
Line: 1381

Procedure delete_validate(p_rec in ben_agf_shd.g_rec_type
                         ,p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 1393

End delete_validate;
Line: 1406

    select a.legislation_code
    from   per_business_groups a,
           ben_age_fctr b
    where b.age_fctr_id      = p_age_fctr_id
    and   a.business_group_id = b.business_group_id;