DBA Data[Home] [Help]

APPS.BEN_ESR_SHD SQL Statements

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

Line: 64

    select
	ee_stat_rt_id,
	effective_start_date,
	effective_end_date,
	vrbl_rt_prfl_id,
        assignment_status_type_id,
	excld_flag,
	ordr_num,
	business_group_id,
	esr_attribute_category,
	esr_attribute1,
	esr_attribute2,
	esr_attribute3,
	esr_attribute4,
	esr_attribute5,
	esr_attribute6,
	esr_attribute7,
	esr_attribute8,
	esr_attribute9,
	esr_attribute10,
	esr_attribute11,
	esr_attribute12,
	esr_attribute13,
	esr_attribute14,
	esr_attribute15,
	esr_attribute16,
	esr_attribute17,
	esr_attribute18,
	esr_attribute19,
	esr_attribute20,
	esr_attribute21,
	esr_attribute22,
	esr_attribute23,
	esr_attribute24,
	esr_attribute25,
	esr_attribute26,
	esr_attribute27,
	esr_attribute28,
	esr_attribute29,
	esr_attribute30,
	object_version_number
    from	ben_ee_stat_rt_f
    where	ee_stat_rt_id = p_ee_stat_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: 178

    select  t.vrbl_rt_prfl_id
          -- ,t.assignment_status_type_id
    from    ben_ee_stat_rt_f t
    where   t.ee_stat_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_ee_stat_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ee_stat_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 321

    select
	ee_stat_rt_id,
	effective_start_date,
	effective_end_date,
	vrbl_rt_prfl_id,
        assignment_status_type_id,
	excld_flag,
	ordr_num,
	business_group_id,
	esr_attribute_category,
	esr_attribute1,
	esr_attribute2,
	esr_attribute3,
	esr_attribute4,
	esr_attribute5,
	esr_attribute6,
	esr_attribute7,
	esr_attribute8,
	esr_attribute9,
	esr_attribute10,
	esr_attribute11,
	esr_attribute12,
	esr_attribute13,
	esr_attribute14,
	esr_attribute15,
	esr_attribute16,
	esr_attribute17,
	esr_attribute18,
	esr_attribute19,
	esr_attribute20,
	esr_attribute21,
	esr_attribute22,
	esr_attribute23,
	esr_attribute24,
	esr_attribute25,
	esr_attribute26,
	esr_attribute27,
	esr_attribute28,
	esr_attribute29,
	esr_attribute30,
	object_version_number
    from    ben_ee_stat_rt_f
    where   ee_stat_rt_id         = p_ee_stat_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 393

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