DBA Data[Home] [Help]

APPS.BEN_EOM_SHD SQL Statements

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

Line: 64

    select
	elig_optd_mdcr_prte_id,
	effective_start_date,
	effective_end_date,
	optd_mdcr_flag,
	exlcd_flag,
	eligy_prfl_id,
	business_group_id,
	eom_attribute_category,
	eom_attribute1,
	eom_attribute2,
	eom_attribute3,
	eom_attribute4,
	eom_attribute5,
	eom_attribute6,
	eom_attribute7,
	eom_attribute8,
	eom_attribute9,
	eom_attribute10,
	eom_attribute11,
	eom_attribute12,
	eom_attribute13,
	eom_attribute14,
	eom_attribute15,
	eom_attribute16,
	eom_attribute17,
	eom_attribute18,
	eom_attribute19,
	eom_attribute20,
	eom_attribute21,
	eom_attribute22,
	eom_attribute23,
	eom_attribute24,
	eom_attribute25,
	eom_attribute26,
	eom_attribute27,
	eom_attribute28,
	eom_attribute29,
	eom_attribute30,
	object_version_number
    from	ben_elig_optd_mdcr_prte_f
    where	elig_optd_mdcr_prte_id = p_elig_optd_mdcr_prte_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 167

	 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: 176

    select  t.eligy_prfl_id
    from    ben_elig_optd_mdcr_prte_f t
    where   t.elig_optd_mdcr_prte_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 206

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

	 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: 237

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

  update  ben_elig_optd_mdcr_prte_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.elig_optd_mdcr_prte_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 314

    select
	elig_optd_mdcr_prte_id,
	effective_start_date,
	effective_end_date,
	optd_mdcr_flag,
	exlcd_flag,
	eligy_prfl_id,
	business_group_id,
	eom_attribute_category,
	eom_attribute1,
	eom_attribute2,
	eom_attribute3,
	eom_attribute4,
	eom_attribute5,
	eom_attribute6,
	eom_attribute7,
	eom_attribute8,
	eom_attribute9,
	eom_attribute10,
	eom_attribute11,
	eom_attribute12,
	eom_attribute13,
	eom_attribute14,
	eom_attribute15,
	eom_attribute16,
	eom_attribute17,
	eom_attribute18,
	eom_attribute19,
	eom_attribute20,
	eom_attribute21,
	eom_attribute22,
	eom_attribute23,
	eom_attribute24,
	eom_attribute25,
	eom_attribute26,
	eom_attribute27,
	eom_attribute28,
	eom_attribute29,
	eom_attribute30,
	object_version_number
    from    ben_elig_optd_mdcr_prte_f
    where   elig_optd_mdcr_prte_id         = p_elig_optd_mdcr_prte_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 385

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