DBA Data[Home] [Help]

APPS.BEN_ECV_SHD SQL Statements

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

Line: 71

    select
    eligy_crit_values_id,
	eligy_prfl_id,
	eligy_criteria_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	number_value1,
	number_value2,
	char_value1,
	char_value2,
	date_value1,
	date_value2,
        excld_flag,
	business_group_id,
	legislation_code,
	ecv_attribute_category,
	ecv_attribute1,
	ecv_attribute2,
	ecv_attribute3,
	ecv_attribute4,
	ecv_attribute5,
	ecv_attribute6,
	ecv_attribute7,
	ecv_attribute8,
	ecv_attribute9,
	ecv_attribute10,
	ecv_attribute11,
	ecv_attribute12,
	ecv_attribute13,
	ecv_attribute14,
	ecv_attribute15,
	ecv_attribute16,
	ecv_attribute17,
	ecv_attribute18,
	ecv_attribute19,
	ecv_attribute20,
	ecv_attribute21,
	ecv_attribute22,
	ecv_attribute23,
	ecv_attribute24,
	ecv_attribute25,
	ecv_attribute26,
	ecv_attribute27,
	ecv_attribute28,
	ecv_attribute29,
	ecv_attribute30,
	object_version_number,
	criteria_score,
	criteria_weight,
        Char_value3,
	Char_value4,
	Number_value3,
	Number_value4,
	Date_value3,
	Date_value4
	from ben_eligy_crit_values_f
	where eligy_crit_values_id = p_eligy_crit_values_id
	and p_effective_date
	between effective_start_date
	    and effective_end_date;
Line: 191

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

    select  t.eligy_criteria_id, t.eligy_prfl_id
    from    ben_eligy_crit_values_f t
    where   t.eligy_crit_values_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 234

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

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

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

  update  ben_eligy_crit_values_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.eligy_crit_values_id  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 342

    select
    eligy_crit_values_id,
	eligy_prfl_id,
	eligy_criteria_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	number_value1,
	number_value2,
	char_value1,
	char_value2,
	date_value1,
	date_value2,
        excld_flag,
	business_group_id,
	legislation_code,
	ecv_attribute_category,
	ecv_attribute1,
	ecv_attribute2,
	ecv_attribute3,
	ecv_attribute4,
	ecv_attribute5,
	ecv_attribute6,
	ecv_attribute7,
	ecv_attribute8,
	ecv_attribute9,
	ecv_attribute10,
	ecv_attribute11,
	ecv_attribute12,
	ecv_attribute13,
	ecv_attribute14,
	ecv_attribute15,
	ecv_attribute16,
	ecv_attribute17,
	ecv_attribute18,
	ecv_attribute19,
	ecv_attribute20,
	ecv_attribute21,
	ecv_attribute22,
	ecv_attribute23,
	ecv_attribute24,
	ecv_attribute25,
	ecv_attribute26,
	ecv_attribute27,
	ecv_attribute28,
	ecv_attribute29,
	ecv_attribute30,
	object_version_number,
	criteria_score,
	criteria_weight,
        Char_value3,
	Char_value4,
	Number_value3,
	Number_value4,
	Date_value3,
	Date_value4
	from ben_eligy_crit_values_f
	where eligy_crit_values_id = p_eligy_crit_values_id
	and p_effective_date
    	between effective_start_date
	        and effective_end_date
	for update nowait;
Line: 430

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