DBA Data[Home] [Help]

APPS.BEN_XWC_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_where_clause xwc
     where xwc.ext_where_clause_id = p_ext_where_clause_id
       and pbg.business_group_id = xwc.business_group_id;
Line: 219

    select null
    from   ben_ext_data_elmt_in_rcd a
    where  a.ext_data_elmt_in_rcd_id = p_cond_ext_data_elmt_in_rcd_id;
Line: 295

    select null
    from   ben_ext_rcd_in_file a
    where  a.ext_rcd_in_file_id = p_ext_rcd_in_file_id;
Line: 371

    select null
    from   ben_ext_data_elmt_in_rcd a
    where  a.ext_data_elmt_in_rcd_id = p_ext_data_elmt_in_rcd_id;
Line: 447

    select null
    from   ben_ext_data_elmt a
    where  a.ext_data_elmt_id = p_cond_ext_data_elmt_id;
Line: 523

    select null
    from   ben_ext_data_elmt a
    where  a.ext_data_elmt_id = p_ext_data_elmt_id;
Line: 899

  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 903

  SELECT null
  FROM ben_ext_where_clause xwc
  WHERE ( business_group_id is null
      or business_group_id = p_business_group_id )
  and (legislation_code is null
      or legislation_code = p_legislation_code )
  and (ext_rcd_in_file_id = p_ext_rcd_in_file_id
      or p_ext_rcd_in_file_id is null )
  and (ext_data_elmt_in_rcd_id  = p_ext_data_elmt_in_rcd_id
      or p_ext_data_elmt_in_rcd_id is null)
  and (ext_data_elmt_id = p_ext_data_elmt_id
      or p_ext_data_elmt_id is null)
  and seq_num = p_seq_num
  and (ext_where_clause_id <> p_ext_where_clause_id
      or p_ext_where_clause_id is null);
Line: 949

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

End insert_validate;
Line: 1033

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

End update_validate;
Line: 1117

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

End delete_validate;
Line: 1145

    select a.legislation_code
    from   per_business_groups a,
           ben_ext_where_clause b
    where b.ext_where_clause_id      = p_ext_where_clause_id
    and   a.business_group_id(+) = b.business_group_id;