DBA Data[Home] [Help]

APPS.BEN_CPL_SHD SQL Statements

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

Line: 64

    select
	cmbn_plip_id,
	effective_start_date,
	effective_end_date,
	name,
	business_group_id,
	cpl_attribute_category,
	cpl_attribute1,
	cpl_attribute2,
	cpl_attribute3,
	cpl_attribute4,
	cpl_attribute5,
	cpl_attribute6,
	cpl_attribute7,
	cpl_attribute8,
	cpl_attribute9,
	cpl_attribute10,
	cpl_attribute11,
	cpl_attribute12,
	cpl_attribute13,
	cpl_attribute14,
	cpl_attribute15,
	cpl_attribute16,
	cpl_attribute17,
	cpl_attribute18,
	cpl_attribute19,
	cpl_attribute20,
	cpl_attribute21,
	cpl_attribute22,
	cpl_attribute23,
	cpl_attribute24,
	cpl_attribute25,
	cpl_attribute26,
	cpl_attribute27,
	cpl_attribute28,
	cpl_attribute29,
	cpl_attribute30,
	object_version_number,
	pgm_id
    from	ben_cmbn_plip_f
    where	cmbn_plip_id = p_cmbn_plip_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 166

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

    select  t.pgm_id
    from    ben_cmbn_plip_f t
    where   t.cmbn_plip_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 205

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

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

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

  update  ben_cmbn_plip_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.cmbn_plip_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 313

    select
	cmbn_plip_id,
	effective_start_date,
	effective_end_date,
	name,
	business_group_id,
	cpl_attribute_category,
	cpl_attribute1,
	cpl_attribute2,
	cpl_attribute3,
	cpl_attribute4,
	cpl_attribute5,
	cpl_attribute6,
	cpl_attribute7,
	cpl_attribute8,
	cpl_attribute9,
	cpl_attribute10,
	cpl_attribute11,
	cpl_attribute12,
	cpl_attribute13,
	cpl_attribute14,
	cpl_attribute15,
	cpl_attribute16,
	cpl_attribute17,
	cpl_attribute18,
	cpl_attribute19,
	cpl_attribute20,
	cpl_attribute21,
	cpl_attribute22,
	cpl_attribute23,
	cpl_attribute24,
	cpl_attribute25,
	cpl_attribute26,
	cpl_attribute27,
	cpl_attribute28,
	cpl_attribute29,
	cpl_attribute30,
	object_version_number,
	pgm_id
    from    ben_cmbn_plip_f
    where   cmbn_plip_id         = p_cmbn_plip_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 383

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