DBA Data[Home] [Help]

APPS.BEN_XDF_BUS SQL Statements

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

Line: 22

    select pbg.security_group_id
      from per_business_groups_perf pbg
         , ben_ext_dfn dfn
     where dfn.ext_dfn_id = p_ext_dfn_id
       and pbg.business_group_id = dfn.business_group_id;
Line: 170

    select null
    from   ben_ext_file a
    where  a.ext_file_id = p_ext_file_id;
Line: 246

    select null
    from   ben_ext_crit_prfl a
    where  a.ext_crit_prfl_id = p_ext_crit_prfl_id;
Line: 1227

 select data_source_code
 from xdo_templates_b
 where template_id = p_xdo_template_id ;
Line: 1308

cursor c1 is select null
               from ben_ext_dfn
              Where ext_dfn_id <> nvl(p_ext_dfn_id,-1)
              and name = p_name
              and ((business_group_id is null and legislation_code is null) or
              (legislation_code is not null and
               business_group_id is null and
               legislation_code = p_legislation_code) or
              (business_group_id is not null and
               business_group_id = p_business_group_id));
Line: 1348

  (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: 1397

  select 'x'
  from   ben_ext_rslt
  where  ext_dfn_id  = p_ext_dfn_id ;
Line: 1428

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

End insert_validate;
Line: 1556

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

End update_validate;
Line: 1684

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

End delete_validate;
Line: 1713

    select b.business_group_id
    from  ben_ext_dfn b
    where b.ext_dfn_id      = p_ext_dfn_id
    ;