DBA Data[Home] [Help]

APPS.BEN_LCT_SHD SQL Statements

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

Line: 64

    select
	ler_chg_ptip_enrt_id,
	effective_start_date,
	effective_end_date,
	crnt_enrt_prclds_chg_flag,
	stl_elig_cant_chg_flag,
	dflt_flag,
	dflt_enrt_cd,
	dflt_enrt_rl,
	enrt_cd,
	enrt_mthd_cd,
	enrt_rl,
	tco_chg_enrt_cd,
	ptip_id,
	ler_id,
	business_group_id,
	lct_attribute_category,
	lct_attribute1,
	lct_attribute2,
	lct_attribute3,
	lct_attribute4,
	lct_attribute5,
	lct_attribute6,
	lct_attribute7,
	lct_attribute8,
	lct_attribute9,
	lct_attribute10,
	lct_attribute11,
	lct_attribute12,
	lct_attribute13,
	lct_attribute14,
	lct_attribute15,
	lct_attribute16,
	lct_attribute17,
	lct_attribute18,
	lct_attribute19,
	lct_attribute20,
	lct_attribute21,
	lct_attribute22,
	lct_attribute23,
	lct_attribute24,
	lct_attribute25,
	lct_attribute26,
	lct_attribute27,
	lct_attribute28,
	lct_attribute29,
	lct_attribute30,
	object_version_number
    from	ben_ler_chg_ptip_enrt_f
    where	ler_chg_ptip_enrt_id = p_ler_chg_ptip_enrt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 175

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

    select  t.ptip_id,
	    t.ler_id
    from    ben_ler_chg_ptip_enrt_f t
    where   t.ler_chg_ptip_enrt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 220

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

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

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

  update  ben_ler_chg_ptip_enrt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ler_chg_ptip_enrt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 328

    select
	ler_chg_ptip_enrt_id,
	effective_start_date,
	effective_end_date,
	crnt_enrt_prclds_chg_flag,
	stl_elig_cant_chg_flag,
	dflt_flag,
	dflt_enrt_cd,
	dflt_enrt_rl,
	enrt_cd,
	enrt_mthd_cd,
	enrt_rl,
	tco_chg_enrt_cd,
	ptip_id,
	ler_id,
	business_group_id,
	lct_attribute_category,
	lct_attribute1,
	lct_attribute2,
	lct_attribute3,
	lct_attribute4,
	lct_attribute5,
	lct_attribute6,
	lct_attribute7,
	lct_attribute8,
	lct_attribute9,
	lct_attribute10,
	lct_attribute11,
	lct_attribute12,
	lct_attribute13,
	lct_attribute14,
	lct_attribute15,
	lct_attribute16,
	lct_attribute17,
	lct_attribute18,
	lct_attribute19,
	lct_attribute20,
	lct_attribute21,
	lct_attribute22,
	lct_attribute23,
	lct_attribute24,
	lct_attribute25,
	lct_attribute26,
	lct_attribute27,
	lct_attribute28,
	lct_attribute29,
	lct_attribute30,
	object_version_number
    from    ben_ler_chg_ptip_enrt_f
    where   ler_chg_ptip_enrt_id         = p_ler_chg_ptip_enrt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 407

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