DBA Data[Home] [Help]

APPS.BEN_FTR_SHD SQL Statements

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

Line: 64

    select
	fl_tm_pt_tm_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	excld_flag,
	ordr_num,
	fl_tm_pt_tm_cd,
	vrbl_rt_prfl_id,
	ftr_attribute_category,
	ftr_attribute1,
	ftr_attribute2,
	ftr_attribute3,
	ftr_attribute4,
	ftr_attribute5,
	ftr_attribute6,
	ftr_attribute7,
	ftr_attribute8,
	ftr_attribute9,
	ftr_attribute10,
	ftr_attribute11,
	ftr_attribute12,
	ftr_attribute13,
	ftr_attribute14,
	ftr_attribute15,
	ftr_attribute16,
	ftr_attribute17,
	ftr_attribute18,
	ftr_attribute19,
	ftr_attribute20,
	ftr_attribute21,
	ftr_attribute22,
	ftr_attribute23,
	ftr_attribute24,
	ftr_attribute25,
	ftr_attribute26,
	ftr_attribute27,
	ftr_attribute28,
	ftr_attribute29,
	ftr_attribute30,
	object_version_number
    from	ben_fl_tm_pt_tm_rt_f
    where	fl_tm_pt_tm_rt_id = p_fl_tm_pt_tm_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_fl_tm_pt_tm_rt_f t
    where   t.fl_tm_pt_tm_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_fl_tm_pt_tm_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.fl_tm_pt_tm_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 316

    select
	fl_tm_pt_tm_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	excld_flag,
	ordr_num,
	fl_tm_pt_tm_cd,
	vrbl_rt_prfl_id,
	ftr_attribute_category,
	ftr_attribute1,
	ftr_attribute2,
	ftr_attribute3,
	ftr_attribute4,
	ftr_attribute5,
	ftr_attribute6,
	ftr_attribute7,
	ftr_attribute8,
	ftr_attribute9,
	ftr_attribute10,
	ftr_attribute11,
	ftr_attribute12,
	ftr_attribute13,
	ftr_attribute14,
	ftr_attribute15,
	ftr_attribute16,
	ftr_attribute17,
	ftr_attribute18,
	ftr_attribute19,
	ftr_attribute20,
	ftr_attribute21,
	ftr_attribute22,
	ftr_attribute23,
	ftr_attribute24,
	ftr_attribute25,
	ftr_attribute26,
	ftr_attribute27,
	ftr_attribute28,
	ftr_attribute29,
	ftr_attribute30,
	object_version_number
    from    ben_fl_tm_pt_tm_rt_f
    where   fl_tm_pt_tm_rt_id         = p_fl_tm_pt_tm_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 388

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