DBA Data[Home] [Help]

APPS.BEN_BRG_SHD SQL Statements

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

Line: 64

    select
	benfts_grp_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	benfts_grp_id,
	excld_flag,
	ordr_num,
	brg_attribute_category,
	brg_attribute1,
	brg_attribute2,
	brg_attribute3,
	brg_attribute4,
	brg_attribute5,
	brg_attribute6,
	brg_attribute7,
	brg_attribute8,
	brg_attribute9,
	brg_attribute10,
	brg_attribute11,
	brg_attribute12,
	brg_attribute13,
	brg_attribute14,
	brg_attribute15,
	brg_attribute16,
	brg_attribute17,
	brg_attribute18,
	brg_attribute19,
	brg_attribute20,
	brg_attribute21,
	brg_attribute22,
	brg_attribute23,
	brg_attribute24,
	brg_attribute25,
	brg_attribute26,
	brg_attribute27,
	brg_attribute28,
	brg_attribute29,
	brg_attribute30,
	object_version_number
    from	ben_benfts_grp_rt_f
    where	benfts_grp_rt_id = p_benfts_grp_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_benfts_grp_rt_f t
    where   t.benfts_grp_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_benfts_grp_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.benfts_grp_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 316

    select
	benfts_grp_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	benfts_grp_id,
	excld_flag,
	ordr_num,
	brg_attribute_category,
	brg_attribute1,
	brg_attribute2,
	brg_attribute3,
	brg_attribute4,
	brg_attribute5,
	brg_attribute6,
	brg_attribute7,
	brg_attribute8,
	brg_attribute9,
	brg_attribute10,
	brg_attribute11,
	brg_attribute12,
	brg_attribute13,
	brg_attribute14,
	brg_attribute15,
	brg_attribute16,
	brg_attribute17,
	brg_attribute18,
	brg_attribute19,
	brg_attribute20,
	brg_attribute21,
	brg_attribute22,
	brg_attribute23,
	brg_attribute24,
	brg_attribute25,
	brg_attribute26,
	brg_attribute27,
	brg_attribute28,
	brg_attribute29,
	brg_attribute30,
	object_version_number
    from    ben_benfts_grp_rt_f
    where   benfts_grp_rt_id         = p_benfts_grp_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;