DBA Data[Home] [Help]

APPS.BEN_EPZ_SHD SQL Statements

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

Line: 76

    select
	elig_pstl_cd_r_rng_prte_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	excld_flag,
	pstl_zip_rng_id,
	eligy_prfl_id,
	business_group_id,
	epz_attribute_category,
	epz_attribute1,
	epz_attribute2,
	epz_attribute3,
	epz_attribute4,
	epz_attribute5,
	epz_attribute6,
	epz_attribute7,
	epz_attribute8,
	epz_attribute9,
	epz_attribute10,
	epz_attribute11,
	epz_attribute12,
	epz_attribute13,
	epz_attribute14,
	epz_attribute15,
	epz_attribute16,
	epz_attribute17,
	epz_attribute18,
	epz_attribute19,
	epz_attribute20,
	epz_attribute21,
	epz_attribute22,
	epz_attribute23,
	epz_attribute24,
	epz_attribute25,
	epz_attribute26,
	epz_attribute27,
	epz_attribute28,
	epz_attribute29,
	epz_attribute30,
	object_version_number,
	criteria_score,
	criteria_weight
    from	ben_elig_pstl_cd_r_rng_prte_f
    where	elig_pstl_cd_r_rng_prte_id = p_elig_pstl_cd_r_rng_prte_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 182

	 p_delete	 out nocopy boolean,
	 p_future_change out nocopy boolean,
	 p_delete_next_change out nocopy boolean) is
--
  l_proc 		varchar2(72) 	:= g_package||'find_dt_del_modes';
Line: 192

    select  t.eligy_prfl_id,
	    t.pstl_zip_rng_id
    from    ben_elig_pstl_cd_r_rng_prte_f t
    where   t.elig_pstl_cd_r_rng_prte_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 227

	 p_delete		=> p_delete,
	 p_future_change	=> p_future_change,
	 p_delete_next_change	=> p_delete_next_change);
Line: 241

	 p_update	 out nocopy boolean,
	 p_update_override out nocopy boolean,
	 p_update_change_insert out nocopy boolean) is
--
  l_proc 	varchar2(72) := g_package||'find_dt_upd_modes';
Line: 258

	 p_update		=> p_update,
	 p_update_override	=> p_update_override,
	 p_update_change_insert	=> p_update_change_insert);
Line: 297

  update  ben_elig_pstl_cd_r_rng_prte_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.elig_pstl_cd_r_rng_prte_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 335

    select
	elig_pstl_cd_r_rng_prte_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	excld_flag,
	pstl_zip_rng_id,
	eligy_prfl_id,
	business_group_id,
	epz_attribute_category,
	epz_attribute1,
	epz_attribute2,
	epz_attribute3,
	epz_attribute4,
	epz_attribute5,
	epz_attribute6,
	epz_attribute7,
	epz_attribute8,
	epz_attribute9,
	epz_attribute10,
	epz_attribute11,
	epz_attribute12,
	epz_attribute13,
	epz_attribute14,
	epz_attribute15,
	epz_attribute16,
	epz_attribute17,
	epz_attribute18,
	epz_attribute19,
	epz_attribute20,
	epz_attribute21,
	epz_attribute22,
	epz_attribute23,
	epz_attribute24,
	epz_attribute25,
	epz_attribute26,
	epz_attribute27,
	epz_attribute28,
	epz_attribute29,
	epz_attribute30,
	object_version_number ,
	criteria_score,
	criteria_weight
    from    ben_elig_pstl_cd_r_rng_prte_f
    where   elig_pstl_cd_r_rng_prte_id         = p_elig_pstl_cd_r_rng_prte_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 409

  If (p_datetrack_mode <> 'INSERT') then
    --
    -- We must select and lock the current row.
    --
    Open  C_Sel1;