DBA Data[Home] [Help]

APPS.BEN_HWF_BUS SQL Statements

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

Line: 318

    select null
    from   ff_formulas_f ff
           ,per_business_groups pbg
    where  ff.formula_id = p_hrs_wkd_det_rl
    and    ff.formula_type_id = -155
    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: 492

    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: 872

    select null
    from   ff_formulas_f ff
           ,per_business_groups pbg
    where  ff.formula_id = p_hrs_wkd_calc_rl
    and    ff.formula_type_id = -516
    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: 969

    select null
    from   ben_hrs_wkd_in_perd_fctr  hwf
    where  hwf.business_group_id = p_business_group_id and
                 hwf.name = p_name;
Line: 1235

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

End insert_validate;
Line: 1350

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

End update_validate;
Line: 1465

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

End delete_validate;
Line: 1490

    select a.legislation_code
    from   per_business_groups a,
           ben_hrs_wkd_in_perd_fctr b
    where b.hrs_wkd_in_perd_fctr_id      = p_hrs_wkd_in_perd_fctr_id
    and   a.business_group_id = b.business_group_id;