DBA Data[Home] [Help]

APPS.BEN_CLF_BUS SQL Statements

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

Line: 112

    select null
    from   pay_defined_balances a
    where  a.defined_balance_id = p_defined_balance_id
    and    nvl(a.business_group_id,p_business_group_id) = p_business_group_id;
Line: 189

    select null
    from   ff_formulas_f ff
           ,per_business_groups pbg
    where  ff.formula_id = p_rndg_rl
    and    ff.formula_type_id = -169
    and    pbg.business_group_id = p_business_group_id
    and    nvl(ff.business_group_id, p_business_group_id) =
               p_business_group_id
    and    nvl(ff.legislation_code, pbg.legislation_code) =
               pbg.legislation_code
    and    p_effective_date
           between ff.effective_start_date
           and     ff.effective_end_date;
Line: 364

    select null
    from   ff_formulas_f ff
           ,per_business_groups pbg
    where  ff.formula_id = p_comp_lvl_det_rl
    and    ff.formula_type_id = -174
    and    pbg.business_group_id = p_business_group_id
    and    nvl(ff.business_group_id, p_business_group_id) =
               p_business_group_id
    and    nvl(ff.legislation_code, pbg.legislation_code) =
               pbg.legislation_code
    and    p_effective_date
           between ff.effective_start_date
           and     ff.effective_end_date;
Line: 670

  cursor c1 is select currency_code
                      from fnd_currencies
                      where currency_code = p_comp_lvl_uom
                          and enabled_flag = 'Y' and
                          p_effective_date
                            between nvl(start_date_active, p_effective_date)
                            and  nvl(end_date_active, p_effective_date);
Line: 973

    select null
    from   ff_formulas_f ff
           ,per_business_groups pbg
    where  ff.formula_id = p_comp_calc_rl
    and    ff.formula_type_id = -517
    and    pbg.business_group_id = p_business_group_id
    and    nvl(ff.business_group_id, p_business_group_id) =
               p_business_group_id
    and    nvl(ff.legislation_code, pbg.legislation_code) =
               pbg.legislation_code
    and    p_effective_date
           between ff.effective_start_date
           and     ff.effective_end_date;
Line: 1070

    select null
    from   ben_comp_lvl_fctr  clf
    where  clf.business_group_id = p_business_group_id and
                 clf.name = p_name;
Line: 1487

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

End insert_validate;
Line: 1622

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

End update_validate;
Line: 1759

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

End delete_validate;
Line: 1786

    select a.legislation_code
    from   per_business_groups a,
           ben_comp_lvl_fctr b
    where b.comp_lvl_fctr_id      = p_comp_lvl_fctr_id
    and   a.business_group_id = b.business_group_id;