DBA Data[Home] [Help]

APPS.BEN_XCC_BUS SQL Statements

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

Line: 21

  (p_insert               IN boolean
  ,p_business_group_id    IN number
  ,p_legislation_code     IN varchar2
  ,p_legislation_subgroup IN varchar2 DEFAULT NULL) IS
--
BEGIN
  --
  -- Call the supporting procedure to check startup mode
  --
  IF (p_insert) THEN
    --
    -- Call procedure to check startup_action for inserts.
    --
    hr_startup_data_api_support.chk_startup_action
      (p_generic_allowed   => TRUE
      ,p_startup_allowed   => TRUE
      ,p_user_allowed      => TRUE
      ,p_business_group_id => p_business_group_id
      ,p_legislation_code  => p_legislation_code
      ,p_legislation_subgroup => p_legislation_subgroup
      );
Line: 70

    select pbg.security_group_id
      from per_business_groups pbg
         , ben_ext_crit_cmbn xcc
     where xcc.ext_crit_cmbn_id = p_ext_crit_cmbn_id
       and pbg.business_group_id = xcc.business_group_id;
Line: 219

    select null
    from   ben_ext_crit_val a
    where  a.ext_crit_val_id = p_ext_crit_val_id;
Line: 556

  select 'x' from
  hr_lookups where
  lookup_type = 'BEN_EXT_CHG_EVT'
  and lookup_code =  p_val_1
  ;
Line: 564

  select 'x' from
  pay_event_groups  where
  event_group_id  =  p_val_1
  ;
Line: 783

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

End insert_validate;
Line: 860

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

End update_validate;
Line: 938

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

End delete_validate;
Line: 965

    select a.legislation_code
    from   per_business_groups a,
           ben_ext_crit_cmbn b
    where b.ext_crit_cmbn_id      = p_ext_crit_cmbn_id
    and   a.business_group_id(+) = b.business_group_id;