DBA Data[Home] [Help]

APPS.BEN_EOY_SHD SQL Statements

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

Line: 64

    select
	elig_othr_ptip_prte_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	ordr_num,
	only_pls_subj_cobra_flag,
	eligy_prfl_id,
	ptip_id,
	business_group_id,
	eoy_attribute_category,
	eoy_attribute1,
	eoy_attribute2,
	eoy_attribute3,
	eoy_attribute4,
	eoy_attribute5,
	eoy_attribute6,
	eoy_attribute7,
	eoy_attribute8,
	eoy_attribute9,
	eoy_attribute10,
	eoy_attribute11,
	eoy_attribute12,
	eoy_attribute13,
	eoy_attribute14,
	eoy_attribute15,
	eoy_attribute16,
	eoy_attribute17,
	eoy_attribute18,
	eoy_attribute19,
	eoy_attribute20,
	eoy_attribute21,
	eoy_attribute22,
	eoy_attribute23,
	eoy_attribute24,
	eoy_attribute25,
	eoy_attribute26,
	eoy_attribute27,
	eoy_attribute28,
	eoy_attribute29,
	eoy_attribute30,
	object_version_number
    from	ben_elig_othr_ptip_prte_f
    where	elig_othr_ptip_prte_id = p_elig_othr_ptip_prte_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 169

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

    select  t.eligy_prfl_id,
	    t.ptip_id
    from    ben_elig_othr_ptip_prte_f t
    where   t.elig_othr_ptip_prte_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 214

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

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

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

  update  ben_elig_othr_ptip_prte_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.elig_othr_ptip_prte_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 322

    select
	elig_othr_ptip_prte_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	ordr_num,
	only_pls_subj_cobra_flag,
	eligy_prfl_id,
	ptip_id,
	business_group_id,
	eoy_attribute_category,
	eoy_attribute1,
	eoy_attribute2,
	eoy_attribute3,
	eoy_attribute4,
	eoy_attribute5,
	eoy_attribute6,
	eoy_attribute7,
	eoy_attribute8,
	eoy_attribute9,
	eoy_attribute10,
	eoy_attribute11,
	eoy_attribute12,
	eoy_attribute13,
	eoy_attribute14,
	eoy_attribute15,
	eoy_attribute16,
	eoy_attribute17,
	eoy_attribute18,
	eoy_attribute19,
	eoy_attribute20,
	eoy_attribute21,
	eoy_attribute22,
	eoy_attribute23,
	eoy_attribute24,
	eoy_attribute25,
	eoy_attribute26,
	eoy_attribute27,
	eoy_attribute28,
	eoy_attribute29,
	eoy_attribute30,
	object_version_number
    from    ben_elig_othr_ptip_prte_f
    where   elig_othr_ptip_prte_id         = p_elig_othr_ptip_prte_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 395

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