DBA Data[Home] [Help]

APPS.PER_SIP_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , per_sp_successor_in_plan sip
     where sip.successor_in_plan_id = p_successor_in_plan_id
       and pbg.business_group_id = sip.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , per_sp_successor_in_plan sip
     where sip.successor_in_plan_id = p_successor_in_plan_id
       and pbg.business_group_id = sip.business_group_id;
Line: 324

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in per_sip_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 349

End chk_non_updateable_args;
Line: 365

    select full_name
    from per_all_people_f
    where person_id=p_successor_id
    and trunc(sysdate) between effective_start_date and effective_end_date;
Line: 380

   select count(*) into l_plan_count
     from per_sp_successor_in_plan scsr,
          per_sp_plan pl
    where scsr.successor_id=p_successor_id
      and scsr.status='A'
      and scsr.plan_id=pl.plan_id
      and pl.status='A';
Line: 417

    select status
    from per_sp_plan
    where plan_id=p_plan_id;
Line: 460

  	select full_name
	from per_all_people_f
	where person_id=p_successor_id
	and trunc(sysdate) between effective_start_date and effective_end_date;
Line: 466

  		select pl.successee_id, pl.plan_type
  		  from per_sp_plan pl
  		  where pl.plan_id=p_plan_id;
Line: 471

  		select dtls.allow_npws, dtls.allow_applicants
  		  from per_sp_successee_details dtls
  		 where dtls.successee_id=p_successee_id
  		   and dtls.successee_type=p_type;
Line: 477

                SELECT
		  ppt.system_person_type
		FROM
		  per_all_people_f papf,
		  per_person_type_usages_f ptu,
		  per_person_types ppt
		where papf.person_id=p_successor_id
		and papf.person_id=ptu.person_id
		and ptu.person_type_id=ppt.person_type_id
		and trunc(sysdate) between ptu.effective_start_date and ptu.effective_end_date
                and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date;
Line: 585

    		select pl.successee_id, pl.plan_type
    		  from per_sp_plan pl
    		  where pl.plan_id=p_plan_id;
Line: 590

    		select dtls.max_successors
    		  from per_sp_successee_details dtls
    		 where dtls.successee_id=p_successee_id
  		   and dtls.successee_type=p_type;
Line: 620

    	  SELECT count (*) into l_scsr_count
	   FROM  per_sp_successor_in_plan
  	 WHERE plan_id = p_plan_id
           AND status='A';
Line: 628

             fnd_msg_pub.Delete_Msg;
Line: 655

    	select full_name
  	from per_all_people_f
  	where person_id=p_successor_id
	and trunc(sysdate) between effective_start_date and effective_end_date;
Line: 661

    		select pl.start_date, pl.end_date
    		  from per_sp_plan pl
    		  where pl.plan_id=p_plan_id;
Line: 704

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

End insert_validate;
Line: 750

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

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 789

End update_validate;
Line: 794

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

End delete_validate;