DBA Data[Home] [Help]

APPS.BEN_DPNT_EDC_SHD SQL Statements

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

Line: 71

    select
        dpnt_eligy_crit_values_id,
	dpnt_cvg_eligy_prfl_id,
	eligy_criteria_dpnt_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,
	edc_attribute_category,
	edc_attribute1,
	edc_attribute2,
	edc_attribute3,
	edc_attribute4,
	edc_attribute5,
	edc_attribute6,
	edc_attribute7,
	edc_attribute8,
	edc_attribute9,
	edc_attribute10,
	edc_attribute11,
	edc_attribute12,
	edc_attribute13,
	edc_attribute14,
	edc_attribute15,
	edc_attribute16,
	edc_attribute17,
	edc_attribute18,
	edc_attribute19,
	edc_attribute20,
	edc_attribute21,
	edc_attribute22,
	edc_attribute23,
	edc_attribute24,
	edc_attribute25,
	edc_attribute26,
	edc_attribute27,
	edc_attribute28,
	edc_attribute29,
	edc_attribute30,
	object_version_number,
        Char_value3,
	Char_value4,
	Number_value3,
	Number_value4,
	Date_value3,
	Date_value4
	from ben_dpnt_eligy_crit_values_f
	where dpnt_eligy_crit_values_id = p_dpnt_eligy_crit_values_id
	and p_effective_date
	between effective_start_date
	    and effective_end_date;
Line: 188

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

    select  t.eligy_criteria_dpnt_id, t.dpnt_cvg_eligy_prfl_id
    from    ben_dpnt_eligy_crit_values_f t
    where   t.dpnt_eligy_crit_values_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 231

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

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

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

  update  ben_dpnt_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.dpnt_eligy_crit_values_id  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 339

    select
    dpnt_eligy_crit_values_id,
	dpnt_cvg_eligy_prfl_id,
	eligy_criteria_dpnt_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,
	edc_attribute_category,
	edc_attribute1,
	edc_attribute2,
	edc_attribute3,
	edc_attribute4,
	edc_attribute5,
	edc_attribute6,
	edc_attribute7,
	edc_attribute8,
	edc_attribute9,
	edc_attribute10,
	edc_attribute11,
	edc_attribute12,
	edc_attribute13,
	edc_attribute14,
	edc_attribute15,
	edc_attribute16,
	edc_attribute17,
	edc_attribute18,
	edc_attribute19,
	edc_attribute20,
	edc_attribute21,
	edc_attribute22,
	edc_attribute23,
	edc_attribute24,
	edc_attribute25,
	edc_attribute26,
	edc_attribute27,
	edc_attribute28,
	edc_attribute29,
	edc_attribute30,
	object_version_number,
        Char_value3,
	Char_value4,
	Number_value3,
	Number_value4,
	Date_value3,
	Date_value4
	from ben_dpnt_eligy_crit_values_f
	where dpnt_eligy_crit_values_id = p_dpnt_eligy_crit_values_id
	and p_effective_date
    	between effective_start_date
	        and effective_end_date
	for update nowait;
Line: 424

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