DBA Data[Home] [Help]

APPS.BEN_ERL_SHD SQL Statements

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

Line: 69

    select
	eligy_prfl_rl_id,
	effective_start_date,
	effective_end_date,
	ordr_to_aply_num,
	formula_id,
	eligy_prfl_id,
	drvbl_fctr_apls_flag,
	business_group_id,
	erl_attribute_category,
	erl_attribute1,
	erl_attribute2,
	erl_attribute3,
	erl_attribute4,
	erl_attribute5,
	erl_attribute6,
	erl_attribute7,
	erl_attribute8,
	erl_attribute9,
	erl_attribute10,
	erl_attribute11,
	erl_attribute12,
	erl_attribute13,
	erl_attribute14,
	erl_attribute15,
	erl_attribute17,
	erl_attribute16,
	erl_attribute18,
	erl_attribute19,
	erl_attribute20,
	erl_attribute21,
	erl_attribute22,
	erl_attribute23,
	erl_attribute24,
	erl_attribute25,
	erl_attribute26,
	erl_attribute27,
	erl_attribute28,
	erl_attribute29,
	erl_attribute30,
        criteria_score ,
        criteria_weight ,
	object_version_number
    from	ben_eligy_prfl_rl_f
    where	eligy_prfl_rl_id = p_eligy_prfl_rl_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 175

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

    select  t.eligy_prfl_id
    from    ben_eligy_prfl_rl_f t
    where   t.eligy_prfl_rl_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 214

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

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

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

  update  ben_eligy_prfl_rl_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.eligy_prfl_rl_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 322

    select
	eligy_prfl_rl_id,
	effective_start_date,
	effective_end_date,
	ordr_to_aply_num,
	formula_id,
	eligy_prfl_id,
	drvbl_fctr_apls_flag,
	business_group_id,
	erl_attribute_category,
	erl_attribute1,
	erl_attribute2,
	erl_attribute3,
	erl_attribute4,
	erl_attribute5,
	erl_attribute6,
	erl_attribute7,
	erl_attribute8,
	erl_attribute9,
	erl_attribute10,
	erl_attribute11,
	erl_attribute12,
	erl_attribute13,
	erl_attribute14,
	erl_attribute15,
	erl_attribute17,
	erl_attribute16,
	erl_attribute18,
	erl_attribute19,
	erl_attribute20,
	erl_attribute21,
	erl_attribute22,
	erl_attribute23,
	erl_attribute24,
	erl_attribute25,
	erl_attribute26,
	erl_attribute27,
	erl_attribute28,
	erl_attribute29,
	erl_attribute30,
        criteria_score ,
        criteria_weight ,
	object_version_number
    from    ben_eligy_prfl_rl_f
    where   eligy_prfl_rl_id         = p_eligy_prfl_rl_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 396

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