DBA Data[Home] [Help]

APPS.PE_POI_BUS SQL Statements

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

Line: 35

    select pbg.security_group_id
      from per_business_groups pbg
         , per_position_extra_info poi
         , hr_all_positions_f pos
     where poi.position_extra_info_id = p_position_extra_info_id
      and pbg.business_group_id = pos.business_group_id
      and pos.position_id = poi.position_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups     pbg
         , per_position_extra_info poi
         , per_positions pos
     where poi.position_extra_info_id = p_position_extra_info_id
       and pos.position_id = poi.position_id
       and pbg.business_group_id = pos.business_group_id;
Line: 209

      select poit.active_inactive_flag
        from per_position_info_types poit
       where poit.information_type = code;
Line: 290

      select 'x'
        from hr_all_positions_f
       where position_id = id;
Line: 365

     select multiple_occurences_flag
       from per_position_info_types
      where information_type = code;
Line: 370

     select 'x'
       from per_position_extra_info
      where information_type = code
        and position_id = id;
Line: 442

Procedure chk_non_updateable_args (p_rec in pe_poi_shd.g_rec_type) is
--
  l_proc		varchar2(72) := g_package||'chk_non_updateable_args';
Line: 489

end chk_non_updateable_args;
Line: 814

select poei_information3
from per_position_extra_info
where position_id = p_rec.position_id
and position_extra_info_id <> p_rec.position_extra_info_id
and information_type = 'PER_FAMILY'
and poei_information3 in ('ACADEMIC','FACULTY');
Line: 844

select poei_information3
from per_position_extra_info
where position_id = p_position_id
and information_type = 'PER_FAMILY'
and poei_information3 in ('ACADEMIC','FACULTY');
Line: 883

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

  select effective_date
  from fnd_sessions
  where session_id = userenv('sessionid');
Line: 896

  select *
  from hr_all_positions_f
  where position_id = p_position_id
  and p_effective_date between effective_start_date and effective_end_date;
Line: 1033

End insert_validate;
Line: 1038

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

  select effective_date
  from fnd_sessions
  where session_id = userenv('sessionid');
Line: 1051

  select *
  from hr_all_positions_f
  where position_id = p_position_id
  and p_effective_date between effective_start_date and effective_end_date;
Line: 1080

  chk_non_updateable_args (p_rec => p_rec);
Line: 1162

End update_validate;
Line: 1167

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

  select effective_date
  from fnd_sessions
  where session_id = userenv('sessionid');
Line: 1179

  select *
  from hr_all_positions_f
  where position_id = p_position_id
  and p_effective_date between effective_start_date and effective_end_date;
Line: 1202

    	    -- Cannot delete Position Family of Position Extra Info
  	    -- if extended pay is permitted
    	    hr_utility.set_message(800, 'HR_INV_POI_FAMILY_DEL');
Line: 1210

End delete_validate;