DBA Data[Home] [Help]

APPS.BEN_EJP_SHD SQL Statements

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

Line: 74

    select
	elig_job_prte_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	excld_flag,
	job_id,
	eligy_prfl_id,
	business_group_id,
	ejp_attribute_category,
	ejp_attribute1,
	ejp_attribute2,
	ejp_attribute3,
	ejp_attribute4,
	ejp_attribute5,
	ejp_attribute6,
	ejp_attribute7,
	ejp_attribute8,
	ejp_attribute9,
	ejp_attribute10,
	ejp_attribute11,
	ejp_attribute12,
	ejp_attribute13,
	ejp_attribute14,
	ejp_attribute15,
	ejp_attribute16,
	ejp_attribute17,
	ejp_attribute18,
	ejp_attribute19,
	ejp_attribute20,
	ejp_attribute21,
	ejp_attribute22,
	ejp_attribute23,
	ejp_attribute24,
	ejp_attribute25,
	ejp_attribute26,
	ejp_attribute27,
	ejp_attribute28,
	ejp_attribute29,
	ejp_attribute30,
	object_version_number,
	criteria_score,
	criteria_weight
    from	ben_elig_job_prte_f
    where	elig_job_prte_id = p_elig_job_prte_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 180

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

    select  t.eligy_prfl_id
    from    ben_elig_job_prte_f t
    where   t.elig_job_prte_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 219

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

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

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

  update  ben_elig_job_prte_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.elig_job_prte_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 327

    select
	elig_job_prte_id,
	effective_start_date,
	effective_end_date,
	ordr_num,
	excld_flag,
	job_id,
	eligy_prfl_id,
	business_group_id,
	ejp_attribute_category,
	ejp_attribute1,
	ejp_attribute2,
	ejp_attribute3,
	ejp_attribute4,
	ejp_attribute5,
	ejp_attribute6,
	ejp_attribute7,
	ejp_attribute8,
	ejp_attribute9,
	ejp_attribute10,
	ejp_attribute11,
	ejp_attribute12,
	ejp_attribute13,
	ejp_attribute14,
	ejp_attribute15,
	ejp_attribute16,
	ejp_attribute17,
	ejp_attribute18,
	ejp_attribute19,
	ejp_attribute20,
	ejp_attribute21,
	ejp_attribute22,
	ejp_attribute23,
	ejp_attribute24,
	ejp_attribute25,
	ejp_attribute26,
	ejp_attribute27,
	ejp_attribute28,
	ejp_attribute29,
	ejp_attribute30,
	object_version_number ,
	criteria_score,
	criteria_weight

    from    ben_elig_job_prte_f
    where   elig_job_prte_id         = p_elig_job_prte_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 402

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