DBA Data[Home] [Help]

APPS.PER_PJI_BUS SQL Statements

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

Line: 48

		select 	previous_job_id
		from   	per_previous_jobs
		where 	previous_job_id = p_previous_job_id;
Line: 124

		select 	information_type
		from   	per_prev_job_info_types
		where 	information_type = p_information_type
		and     active_inactive_flag = 'Y';
Line: 178

    select pbg.security_group_id
      from per_business_groups     pbg
         , per_prev_job_extra_info pji
      	 , per_previous_jobs       pjo
      	 , per_previous_employers  pem
     where pji.previous_job_extra_info_id 	= p_previous_job_extra_info_id
     and   pji.previous_job_id 				      = pjo.previous_job_id
     and   pjo.previous_employer_id 	      = pem.previous_employer_id
     and   pbg.business_group_id 			      = pem.business_group_id;
Line: 241

     select pbg.legislation_code
     from  per_business_groups     pbg
         , per_prev_job_extra_info pji
         , per_previous_jobs       pjo
         , per_previous_employers  pem
     where pji.previous_job_extra_info_id 	= p_previous_job_extra_info_id
     and   pji.previous_job_id 				      = pjo.previous_job_id
     and   pjo.previous_employer_id 		    = pem.previous_employer_id(+)
     and   pem.business_group_id            = pbg.business_group_id(+);
Line: 689

Procedure chk_non_updateable_args
  (p_rec in per_pji_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 728

End chk_non_updateable_args;
Line: 733

Procedure insert_validate
  (p_rec                          in per_pji_shd.g_rec_type) is
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 776

End insert_validate;
Line: 781

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

    chk_non_updateable_args(p_rec              => p_rec);
Line: 822

End update_validate;
Line: 827

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

End delete_validate;