DBA Data[Home] [Help]

APPS.BEN_LRN_SHD SQL Statements

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

Line: 64

    select
	lvg_rsn_rt_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	ordr_num,
	lvg_rsn_cd,
	vrbl_rt_prfl_id,
	business_group_id,
	lrn_attribute_category,
	lrn_attribute1,
	lrn_attribute2,
	lrn_attribute3,
	lrn_attribute4,
	lrn_attribute5,
	lrn_attribute6,
	lrn_attribute7,
	lrn_attribute8,
	lrn_attribute9,
	lrn_attribute10,
	lrn_attribute11,
	lrn_attribute12,
	lrn_attribute13,
	lrn_attribute14,
	lrn_attribute15,
	lrn_attribute16,
	lrn_attribute17,
	lrn_attribute18,
	lrn_attribute19,
	lrn_attribute20,
	lrn_attribute21,
	lrn_attribute22,
	lrn_attribute23,
	lrn_attribute24,
	lrn_attribute25,
	lrn_attribute26,
	lrn_attribute27,
	lrn_attribute28,
	lrn_attribute29,
	lrn_attribute30,
	object_version_number
    from	ben_lvg_rsn_rt_f
    where	lvg_rsn_rt_id = p_lvg_rsn_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 168

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

    select  t.vrbl_rt_prfl_id
    from    ben_lvg_rsn_rt_f t
    where   t.lvg_rsn_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 207

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

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

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

  update  ben_lvg_rsn_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.lvg_rsn_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 315

    select
	lvg_rsn_rt_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	ordr_num,
	lvg_rsn_cd,
	vrbl_rt_prfl_id,
	business_group_id,
	lrn_attribute_category,
	lrn_attribute1,
	lrn_attribute2,
	lrn_attribute3,
	lrn_attribute4,
	lrn_attribute5,
	lrn_attribute6,
	lrn_attribute7,
	lrn_attribute8,
	lrn_attribute9,
	lrn_attribute10,
	lrn_attribute11,
	lrn_attribute12,
	lrn_attribute13,
	lrn_attribute14,
	lrn_attribute15,
	lrn_attribute16,
	lrn_attribute17,
	lrn_attribute18,
	lrn_attribute19,
	lrn_attribute20,
	lrn_attribute21,
	lrn_attribute22,
	lrn_attribute23,
	lrn_attribute24,
	lrn_attribute25,
	lrn_attribute26,
	lrn_attribute27,
	lrn_attribute28,
	lrn_attribute29,
	lrn_attribute30,
	object_version_number
    from    ben_lvg_rsn_rt_f
    where   lvg_rsn_rt_id         = p_lvg_rsn_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 387

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