DBA Data[Home] [Help]

APPS.BEN_LDC_SHD SQL Statements

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

Line: 69

    select
	ler_chg_dpnt_cvg_id,
	effective_start_date,
	effective_end_date,
	pl_id,
	pgm_id,
	business_group_id,
	ler_id,
	ptip_id,
	add_rmv_cvg_cd,
	cvg_eff_end_cd,
	cvg_eff_strt_cd,
	ler_chg_dpnt_cvg_rl,
	ler_chg_dpnt_cvg_cd,
	cvg_eff_strt_rl,
	cvg_eff_end_rl,
	ldc_attribute_category,
	ldc_attribute1,
	ldc_attribute2,
	ldc_attribute3,
	ldc_attribute4,
	ldc_attribute5,
	ldc_attribute6,
	ldc_attribute7,
	ldc_attribute8,
	ldc_attribute9,
	ldc_attribute10,
	ldc_attribute11,
	ldc_attribute12,
	ldc_attribute13,
	ldc_attribute14,
	ldc_attribute15,
	ldc_attribute16,
	ldc_attribute17,
	ldc_attribute18,
	ldc_attribute19,
	ldc_attribute20,
	ldc_attribute21,
	ldc_attribute22,
	ldc_attribute23,
	ldc_attribute24,
	ldc_attribute25,
	ldc_attribute26,
	ldc_attribute27,
	ldc_attribute28,
	ldc_attribute29,
	ldc_attribute30,
        susp_if_ctfn_not_prvd_flag,
        ctfn_determine_cd,
	object_version_number
    from	ben_ler_chg_dpnt_cvg_f
    where	ler_chg_dpnt_cvg_id = p_ler_chg_dpnt_cvg_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: 197

    select  t.ler_chg_dpnt_cvg_rl,
	    t.cvg_eff_strt_rl,
	    t.cvg_eff_end_rl,
	    t.ptip_id,
	    t.ler_id,
	    t.pl_id,
	    t.pgm_id
    from    ben_ler_chg_dpnt_cvg_f t
    where   t.ler_chg_dpnt_cvg_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 257

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

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

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

  update  ben_ler_chg_dpnt_cvg_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ler_chg_dpnt_cvg_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 365

    select
	ler_chg_dpnt_cvg_id,
	effective_start_date,
	effective_end_date,
	pl_id,
	pgm_id,
	business_group_id,
	ler_id,
	ptip_id,
	add_rmv_cvg_cd,
	cvg_eff_end_cd,
	cvg_eff_strt_cd,
	ler_chg_dpnt_cvg_rl,
	ler_chg_dpnt_cvg_cd,
	cvg_eff_strt_rl,
	cvg_eff_end_rl,
	ldc_attribute_category,
	ldc_attribute1,
	ldc_attribute2,
	ldc_attribute3,
	ldc_attribute4,
	ldc_attribute5,
	ldc_attribute6,
	ldc_attribute7,
	ldc_attribute8,
	ldc_attribute9,
	ldc_attribute10,
	ldc_attribute11,
	ldc_attribute12,
	ldc_attribute13,
	ldc_attribute14,
	ldc_attribute15,
	ldc_attribute16,
	ldc_attribute17,
	ldc_attribute18,
	ldc_attribute19,
	ldc_attribute20,
	ldc_attribute21,
	ldc_attribute22,
	ldc_attribute23,
	ldc_attribute24,
	ldc_attribute25,
	ldc_attribute26,
	ldc_attribute27,
	ldc_attribute28,
	ldc_attribute29,
	ldc_attribute30,
        susp_if_ctfn_not_prvd_flag,
        ctfn_determine_cd,
	object_version_number
    from    ben_ler_chg_dpnt_cvg_f
    where   ler_chg_dpnt_cvg_id         = p_ler_chg_dpnt_cvg_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 446

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