DBA Data[Home] [Help]

APPS.BEN_XRF_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_rcd_in_file xrf
     where xrf.ext_rcd_in_file_id = p_ext_rcd_in_file_id
       and pbg.business_group_id = xrf.business_group_id;
Line: 219

    select null
    from   ben_ext_rcd a
    where  a.ext_rcd_id = p_ext_rcd_id;
Line: 294

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

cursor c1 is select null
               from ben_ext_rcd_in_file
              Where ext_file_id = p_ext_file_id
                and ext_rcd_in_file_id  <> nvl(p_ext_rcd_in_file_id,-1)
                and seq_num = p_seq_num
	        and ((business_group_id is null and legislation_code is null)
                      or (legislation_code is not null
		   	    and legislation_code = p_legislation_code)
		      or (business_group_id is not null
			    and business_group_id = p_business_group_id)
		    );
Line: 1003

  select ext_where_clause_id
  from   ben_ext_where_clause
  where  ext_rcd_in_file_id = p_ext_rcd_in_file_id;
Line: 1008

  select ext_incl_chg_id
  from 	 ben_ext_incl_chg
  where  ext_rcd_in_file_id = p_ext_rcd_in_file_id;
Line: 1018

  select 'x'
  from  ben_ext_rcd_in_file a ,
        ben_ext_file  b
  where a.ext_rcd_in_file_id  =  p_ext_rcd_in_file_id
    and a.ext_file_id = b.ext_file_id
    and a.ext_rcd_in_file_id = b.ext_rcd_in_file_id ;
Line: 1074

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

End insert_validate;
Line: 1171

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

End update_validate;
Line: 1267

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

End delete_validate;
Line: 1298

    select a.legislation_code
    from   per_business_groups a,
           ben_ext_rcd_in_file b
    where b.ext_rcd_in_file_id      = p_ext_rcd_in_file_id
    and   a.business_group_id(+) = b.business_group_id;