DBA Data[Home] [Help]

APPS.BEN_EGN_SHD SQL Statements

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

Line: 69

    select
	elig_gndr_prte_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	sex,
	eligy_prfl_id,
	business_group_id,
	egn_attribute_category,
	egn_attribute1,
	egn_attribute2,
	egn_attribute3,
	egn_attribute4,
	egn_attribute5,
	egn_attribute6,
	egn_attribute7,
	egn_attribute8,
	egn_attribute9,
	egn_attribute10,
	egn_attribute11,
	egn_attribute12,
	egn_attribute13,
	egn_attribute14,
	egn_attribute15,
	egn_attribute16,
	egn_attribute17,
	egn_attribute18,
	egn_attribute19,
	egn_attribute20,
	egn_attribute21,
	egn_attribute22,
	egn_attribute23,
	egn_attribute24,
	egn_attribute25,
	egn_attribute26,
	egn_attribute27,
	egn_attribute28,
	egn_attribute29,
	egn_attribute30,
	ordr_num,
	object_version_number,
	criteria_score,
	criteria_weight
    from	ben_elig_gndr_prte_f
    where	elig_gndr_prte_id = p_elig_gndr_prte_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: 196

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

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

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

  update  ben_ELIG_GNDR_PRTE_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ELIG_GNDR_PRTE_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 304

    select
	ELIG_GNDR_PRTE_id,
	effective_start_date,
	effective_end_date,
	excld_flag,
	sex,
	eligy_prfl_id,
	business_group_id,
	egn_attribute_category,
	egn_attribute1,
	egn_attribute2,
	egn_attribute3,
	egn_attribute4,
	egn_attribute5,
	egn_attribute6,
	egn_attribute7,
	egn_attribute8,
	egn_attribute9,
	egn_attribute10,
	egn_attribute11,
	egn_attribute12,
	egn_attribute13,
	egn_attribute14,
	egn_attribute15,
	egn_attribute16,
	egn_attribute17,
	egn_attribute18,
	egn_attribute19,
	egn_attribute20,
	egn_attribute21,
	egn_attribute22,
	egn_attribute23,
	egn_attribute24,
	egn_attribute25,
	egn_attribute26,
	egn_attribute27,
	egn_attribute28,
	egn_attribute29,
	egn_attribute30,
	ordr_num,
	object_version_number,
	criteria_score,
	criteria_weight

    from    ben_ELIG_GNDR_PRTE_f
    where   ELIG_GNDR_PRTE_id         = p_ELIG_GNDR_PRTE_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 379

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