DBA Data[Home] [Help]

APPS.BEN_CPN_SHD SQL Statements

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

Line: 69

    select
	cntng_prtn_prfl_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	name,
	pymt_must_be_rcvd_uom,
	pymt_must_be_rcvd_num,
	pymt_must_be_rcvd_rl,
	cpn_attribute_category,
	cpn_attribute1,
	cpn_attribute2,
	cpn_attribute3,
	cpn_attribute4,
	cpn_attribute5,
	cpn_attribute6,
	cpn_attribute7,
	cpn_attribute8,
	cpn_attribute9,
	cpn_attribute10,
	cpn_attribute11,
	cpn_attribute12,
	cpn_attribute13,
	cpn_attribute14,
	cpn_attribute15,
	cpn_attribute16,
	cpn_attribute17,
	cpn_attribute18,
	cpn_attribute19,
	cpn_attribute20,
	cpn_attribute21,
	cpn_attribute22,
	cpn_attribute23,
	cpn_attribute24,
	cpn_attribute25,
	cpn_attribute26,
	cpn_attribute27,
	cpn_attribute28,
	cpn_attribute29,
	cpn_attribute30,
	object_version_number
    from	ben_cntng_prtn_prfl_rt_f
    where	cntng_prtn_prfl_rt_id = p_cntng_prtn_prfl_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 174

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

    select  t.vrbl_rt_prfl_id
    from    ben_cntng_prtn_prfl_rt_f t
    where   t.cntng_prtn_prfl_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 213

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

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

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

  update  ben_cntng_prtn_prfl_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.cntng_prtn_prfl_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 321

    select
	cntng_prtn_prfl_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	name,
	pymt_must_be_rcvd_uom,
	pymt_must_be_rcvd_num,
	pymt_must_be_rcvd_rl,
	cpn_attribute_category,
	cpn_attribute1,
	cpn_attribute2,
	cpn_attribute3,
	cpn_attribute4,
	cpn_attribute5,
	cpn_attribute6,
	cpn_attribute7,
	cpn_attribute8,
	cpn_attribute9,
	cpn_attribute10,
	cpn_attribute11,
	cpn_attribute12,
	cpn_attribute13,
	cpn_attribute14,
	cpn_attribute15,
	cpn_attribute16,
	cpn_attribute17,
	cpn_attribute18,
	cpn_attribute19,
	cpn_attribute20,
	cpn_attribute21,
	cpn_attribute22,
	cpn_attribute23,
	cpn_attribute24,
	cpn_attribute25,
	cpn_attribute26,
	cpn_attribute27,
	cpn_attribute28,
	cpn_attribute29,
	cpn_attribute30,
	object_version_number
    from    ben_cntng_prtn_prfl_rt_f
    where   cntng_prtn_prfl_rt_id         = p_cntng_prtn_prfl_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 394

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