DBA Data[Home] [Help]

APPS.BEN_LNC_SHD SQL Statements

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

Line: 74

    select
	ler_enrt_ctfn_id,
	effective_start_date,
	effective_end_date,
	rqd_flag,
	enrt_ctfn_typ_cd,
	ctfn_rqd_when_rl,
	ler_rqrs_enrt_ctfn_id,
	business_group_id,
	lnc_attribute_category,
	lnc_attribute1,
	lnc_attribute2,
	lnc_attribute3,
	lnc_attribute4,
	lnc_attribute5,
	lnc_attribute6,
	lnc_attribute7,
	lnc_attribute8,
	lnc_attribute9,
	lnc_attribute10,
	lnc_attribute11,
	lnc_attribute12,
	lnc_attribute13,
	lnc_attribute14,
	lnc_attribute15,
	lnc_attribute16,
	lnc_attribute17,
	lnc_attribute18,
	lnc_attribute19,
	lnc_attribute20,
	lnc_attribute21,
	lnc_attribute22,
	lnc_attribute23,
	lnc_attribute24,
	lnc_attribute25,
	lnc_attribute26,
	lnc_attribute27,
	lnc_attribute28,
	lnc_attribute29,
	lnc_attribute30,
	object_version_number
    from	ben_ler_enrt_ctfn_f
    where	ler_enrt_ctfn_id = p_ler_enrt_ctfn_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 178

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

    select  t.ler_rqrs_enrt_ctfn_id
    from    ben_ler_enrt_ctfn_f t
    where   t.ler_enrt_ctfn_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 217

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

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

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

  update  ben_ler_enrt_ctfn_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ler_enrt_ctfn_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 325

    select
	ler_enrt_ctfn_id,
	effective_start_date,
	effective_end_date,
	rqd_flag,
	enrt_ctfn_typ_cd,
	ctfn_rqd_when_rl,
	ler_rqrs_enrt_ctfn_id,
	business_group_id,
	lnc_attribute_category,
	lnc_attribute1,
	lnc_attribute2,
	lnc_attribute3,
	lnc_attribute4,
	lnc_attribute5,
	lnc_attribute6,
	lnc_attribute7,
	lnc_attribute8,
	lnc_attribute9,
	lnc_attribute10,
	lnc_attribute11,
	lnc_attribute12,
	lnc_attribute13,
	lnc_attribute14,
	lnc_attribute15,
	lnc_attribute16,
	lnc_attribute17,
	lnc_attribute18,
	lnc_attribute19,
	lnc_attribute20,
	lnc_attribute21,
	lnc_attribute22,
	lnc_attribute23,
	lnc_attribute24,
	lnc_attribute25,
	lnc_attribute26,
	lnc_attribute27,
	lnc_attribute28,
	lnc_attribute29,
	lnc_attribute30,
	object_version_number
    from    ben_ler_enrt_ctfn_f
    where   ler_enrt_ctfn_id         = p_ler_enrt_ctfn_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 397

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