DBA Data[Home] [Help]

APPS.BEN_WPN_SHD SQL Statements

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

Line: 64

    select
	wv_prtn_rsn_pl_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	pl_id,
	dflt_flag,
	wv_prtn_rsn_cd,
	wpn_attribute_category,
	wpn_attribute1,
	wpn_attribute2,
	wpn_attribute3,
	wpn_attribute4,
	wpn_attribute5,
	wpn_attribute6,
	wpn_attribute7,
	wpn_attribute8,
	wpn_attribute9,
	wpn_attribute10,
	wpn_attribute11,
	wpn_attribute12,
	wpn_attribute13,
	wpn_attribute14,
	wpn_attribute15,
	wpn_attribute16,
	wpn_attribute17,
	wpn_attribute18,
	wpn_attribute19,
	wpn_attribute20,
	wpn_attribute21,
	wpn_attribute22,
	wpn_attribute23,
	wpn_attribute24,
	wpn_attribute25,
	wpn_attribute26,
	wpn_attribute27,
	wpn_attribute28,
	wpn_attribute29,
	wpn_attribute30,
	object_version_number
    from	ben_wv_prtn_rsn_pl_f
    where	wv_prtn_rsn_pl_id = p_wv_prtn_rsn_pl_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 167

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

    select  t.pl_id
    from    ben_wv_prtn_rsn_pl_f t
    where   t.wv_prtn_rsn_pl_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 206

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

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

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

  update  ben_wv_prtn_rsn_pl_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.wv_prtn_rsn_pl_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 314

    select
	wv_prtn_rsn_pl_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	pl_id,
	dflt_flag,
	wv_prtn_rsn_cd,
	wpn_attribute_category,
	wpn_attribute1,
	wpn_attribute2,
	wpn_attribute3,
	wpn_attribute4,
	wpn_attribute5,
	wpn_attribute6,
	wpn_attribute7,
	wpn_attribute8,
	wpn_attribute9,
	wpn_attribute10,
	wpn_attribute11,
	wpn_attribute12,
	wpn_attribute13,
	wpn_attribute14,
	wpn_attribute15,
	wpn_attribute16,
	wpn_attribute17,
	wpn_attribute18,
	wpn_attribute19,
	wpn_attribute20,
	wpn_attribute21,
	wpn_attribute22,
	wpn_attribute23,
	wpn_attribute24,
	wpn_attribute25,
	wpn_attribute26,
	wpn_attribute27,
	wpn_attribute28,
	wpn_attribute29,
	wpn_attribute30,
	object_version_number
    from    ben_wv_prtn_rsn_pl_f
    where   wv_prtn_rsn_pl_id         = p_wv_prtn_rsn_pl_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 385

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