DBA Data[Home] [Help]

APPS.BEN_PRR_SHD SQL Statements

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

Line: 64

    select
	perf_rtng_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	ordr_num,
	excld_flag,
	event_type,
	perf_rtng_cd,
	prr_attribute_category,
	prr_attribute1,
	prr_attribute2,
	prr_attribute3,
	prr_attribute4,
	prr_attribute5,
	prr_attribute6,
	prr_attribute7,
	prr_attribute8,
	prr_attribute9,
	prr_attribute10,
	prr_attribute11,
	prr_attribute12,
	prr_attribute13,
	prr_attribute14,
	prr_attribute15,
	prr_attribute16,
	prr_attribute17,
	prr_attribute18,
	prr_attribute19,
	prr_attribute20,
	prr_attribute21,
	prr_attribute22,
	prr_attribute23,
	prr_attribute24,
	prr_attribute25,
	prr_attribute26,
	prr_attribute27,
	prr_attribute28,
	prr_attribute29,
	prr_attribute30,
	object_version_number
    from	ben_perf_rtng_rt_f
    where	perf_rtng_rt_id = p_perf_rtng_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 169

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

    select  t.vrbl_rt_prfl_id
    from    ben_perf_rtng_rt_f t
    where   t.perf_rtng_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 208

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

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

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

  update  ben_perf_rtng_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.perf_rtng_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 316

    select
	perf_rtng_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	ordr_num,
	excld_flag,
	event_type,
	perf_rtng_cd,
	prr_attribute_category,
	prr_attribute1,
	prr_attribute2,
	prr_attribute3,
	prr_attribute4,
	prr_attribute5,
	prr_attribute6,
	prr_attribute7,
	prr_attribute8,
	prr_attribute9,
	prr_attribute10,
	prr_attribute11,
	prr_attribute12,
	prr_attribute13,
	prr_attribute14,
	prr_attribute15,
	prr_attribute16,
	prr_attribute17,
	prr_attribute18,
	prr_attribute19,
	prr_attribute20,
	prr_attribute21,
	prr_attribute22,
	prr_attribute23,
	prr_attribute24,
	prr_attribute25,
	prr_attribute26,
	prr_attribute27,
	prr_attribute28,
	prr_attribute29,
	prr_attribute30,
	object_version_number
    from    ben_perf_rtng_rt_f
    where   perf_rtng_rt_id = p_perf_rtng_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 389

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