DBA Data[Home] [Help]

APPS.BEN_ASR_SHD SQL Statements

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

Line: 69

    select
	asnt_set_rt_id,
	effective_start_date,
	effective_end_date,
	vrbl_rt_prfl_id,
	assignment_set_id,
	ordr_num,
	excld_flag,
	business_group_id,
	asr_attribute_category,
	asr_attribute1,
	asr_attribute2,
	asr_attribute3,
	asr_attribute4,
	asr_attribute5,
	asr_attribute6,
	asr_attribute7,
	asr_attribute8,
	asr_attribute9,
	asr_attribute10,
	asr_attribute11,
	asr_attribute12,
	asr_attribute13,
	asr_attribute14,
	asr_attribute15,
	asr_attribute16,
	asr_attribute17,
	asr_attribute18,
	asr_attribute19,
	asr_attribute20,
	asr_attribute21,
	asr_attribute22,
	asr_attribute23,
	asr_attribute24,
	asr_attribute25,
	asr_attribute26,
	asr_attribute27,
	asr_attribute28,
	asr_attribute29,
	asr_attribute30,
	object_version_number
    from	ben_asnt_set_rt_f
    where	asnt_set_rt_id = p_asnt_set_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 173

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

    select  t.vrbl_rt_prfl_id
    from    ben_asnt_set_rt_f t
    where   t.asnt_set_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 212

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

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

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

  update  ben_asnt_set_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.asnt_set_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 320

    select
	asnt_set_rt_id,
	effective_start_date,
	effective_end_date,
	vrbl_rt_prfl_id,
	assignment_set_id,
	ordr_num,
	excld_flag,
	business_group_id,
	asr_attribute_category,
	asr_attribute1,
	asr_attribute2,
	asr_attribute3,
	asr_attribute4,
	asr_attribute5,
	asr_attribute6,
	asr_attribute7,
	asr_attribute8,
	asr_attribute9,
	asr_attribute10,
	asr_attribute11,
	asr_attribute12,
	asr_attribute13,
	asr_attribute14,
	asr_attribute15,
	asr_attribute16,
	asr_attribute17,
	asr_attribute18,
	asr_attribute19,
	asr_attribute20,
	asr_attribute21,
	asr_attribute22,
	asr_attribute23,
	asr_attribute24,
	asr_attribute25,
	asr_attribute26,
	asr_attribute27,
	asr_attribute28,
	asr_attribute29,
	asr_attribute30,
	object_version_number
    from    ben_asnt_set_rt_f
    where   asnt_set_rt_id         = p_asnt_set_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 392

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