DBA Data[Home] [Help]

APPS.BEN_ECY_BUS SQL Statements

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

Line: 116

    select null
    from   per_competences cmp
    where  cmp.competence_id = p_competence_id
    and    nvl(cmp.business_group_id,p_business_group_id) = p_business_group_id
    and    p_effective_date between nvl(date_from, p_effective_date) and nvl(date_to, p_effective_date);
Line: 205

    select null
    from  per_competences cmp
    	, per_rating_levels rtl
    where nvl(cmp.business_group_id, p_business_group_id) = p_business_group_id
    and p_effective_date between nvl(cmp.date_from, p_effective_date) and nvl(cmp.date_to, p_effective_date)
    and nvl(rtl.business_group_id, p_business_group_id) = p_business_group_id
    and (  (rtl.competence_id is not null
    	    and cmp.competence_id = rtl.competence_id
    	    and rtl.competence_id = p_competence_id)
        or (rtl.competence_id is null
            and cmp.competence_id = p_competence_id
            and rtl.rating_scale_id is not null
            and cmp.rating_scale_id = rtl.rating_scale_id) )
    and rtl.rating_level_id = p_rating_level_id;
Line: 369

    select null
    from   ben_ELIG_COMPTNCY_PRTE_f
    where  ELIG_COMPTNCY_PRTE_id <> nvl(p_ELIG_COMPTNCY_PRTE_id,-1)
    and    eligy_prfl_id = p_eligy_prfl_id
    and    ordr_num = p_ordr_num
    and    business_group_id = p_business_group_id;
Line: 420

Procedure dt_update_validate
            (
             p_eligy_prfl_id            in number default hr_api.g_number,
	     p_datetrack_mode		in varchar2,
             p_validation_start_date	in date,
	     p_validation_end_date	in date) Is
--
  l_proc	    varchar2(72) := g_package||'dt_update_validate';
Line: 488

End dt_update_validate;
Line: 525

Procedure dt_delete_validate
            (p_ELIG_COMPTNCY_PRTE_id	in number,
             p_datetrack_mode		in varchar2,
	     p_validation_start_date	in date,
	     p_validation_end_date	in date) Is
--
  l_proc	varchar2(72) 	:= g_package||'dt_delete_validate';
Line: 548

  If (p_datetrack_mode = 'DELETE' or
      p_datetrack_mode = 'ZAP') then
    --
    --
    -- Ensure the arguments are not null
    --
    hr_api.mandatory_arg_error
      (p_api_name       => l_proc,
       p_argument       => 'validation_start_date',
       p_argument_value => p_validation_start_date);
Line: 590

End dt_delete_validate;
Line: 595

Procedure insert_validate
	(p_rec 			 in ben_ecy_shd.g_rec_type,
	 p_effective_date	 in date,
	 p_datetrack_mode	 in varchar2,
	 p_validation_start_date in date,
	 p_validation_end_date	 in date) is
--
  l_proc	varchar2(72) := g_package||'insert_validate';
Line: 644

End insert_validate;
Line: 649

Procedure update_validate
	(p_rec 			 in ben_ecy_shd.g_rec_type,
	 p_effective_date	 in date,
	 p_datetrack_mode	 in varchar2,
	 p_validation_start_date in date,
	 p_validation_end_date	 in date) is
--
  l_proc	varchar2(72) := g_package||'update_validate';
Line: 699

  dt_update_validate
    (
     p_eligy_prfl_id         => p_rec.eligy_prfl_id,
     p_datetrack_mode        => p_datetrack_mode,
     p_validation_start_date => p_validation_start_date,
     p_validation_end_date   => p_validation_end_date);
Line: 707

End update_validate;
Line: 712

Procedure delete_validate
	(p_rec 			 in ben_ecy_shd.g_rec_type,
	 p_effective_date	 in date,
	 p_datetrack_mode	 in varchar2,
	 p_validation_start_date in date,
	 p_validation_end_date	 in date) is
--
  l_proc	varchar2(72) := g_package||'delete_validate';
Line: 726

  dt_delete_validate
    (p_datetrack_mode		=> p_datetrack_mode,
     p_validation_start_date	=> p_validation_start_date,
     p_validation_end_date	=> p_validation_end_date,
     p_ELIG_COMPTNCY_PRTE_id	=> p_rec.ELIG_COMPTNCY_PRTE_id);
Line: 733

End delete_validate;
Line: 746

    select a.legislation_code
    from   per_business_groups a,
           ben_ELIG_COMPTNCY_PRTE_f b
    where b.ELIG_COMPTNCY_PRTE_id      = p_ELIG_COMPTNCY_PRTE_id
    and   a.business_group_id = b.business_group_id;