DBA Data[Home] [Help]

APPS.BEN_BCD_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id
      from per_business_groups pbg
         , ben_cwb_matrix_dtl bcd
     where bcd.cwb_matrix_dtl_id = p_cwb_matrix_dtl_id
       and pbg.business_group_id = bcd.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , ben_cwb_matrix_dtl bcd
     where bcd.cwb_matrix_dtl_id = p_cwb_matrix_dtl_id
       and pbg.business_group_id = bcd.business_group_id;
Line: 180

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

End chk_non_updateable_args;
Line: 240

    select null
    from   ben_cwb_matrix a
    where  a.cwb_matrix_id = p_cwb_matrix_id;
Line: 285

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

End insert_validate;
Line: 320

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 354

End update_validate;
Line: 359

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

End delete_validate;