DBA Data[Home] [Help]

APPS.BEN_BNG_BUS SQL Statements

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

Line: 108

cursor c1 is select null
             from   ben_benfts_grp
             Where  benfts_grp_id <> nvl(p_benfts_grp_id,-1)
             and    name = p_name
             and    business_group_id = p_business_group_id;
Line: 158

   cursor chk_benefits_group is select null
                                from   per_all_people_f per
                                where  per.benefit_group_id = p_benfts_grp_id
                                  and  per.business_Group_id= p_business_group_id; /* Perf Bug 4882374 */
Line: 193

Procedure insert_validate(p_rec in ben_bng_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 215

End insert_validate;
Line: 220

Procedure update_validate(p_rec in ben_bng_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 242

End update_validate;
Line: 247

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

End delete_validate;
Line: 274

    select a.legislation_code
    from   per_business_groups a,
           ben_benfts_grp b
    where b.benfts_grp_id      = p_benfts_grp_id
    and   a.business_group_id = b.business_group_id;