DBA Data[Home] [Help]

APPS.BEN_NOC_SHD SQL Statements

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

Line: 64

    select
	no_othr_cvg_rt_id,
	effective_start_date,
	effective_end_date,
	coord_ben_no_cvg_flag,
	vrbl_rt_prfl_id,
	business_group_id,
	noc_attribute_category,
	noc_attribute1,
	noc_attribute2,
	noc_attribute3,
	noc_attribute4,
	noc_attribute5,
	noc_attribute6,
	noc_attribute7,
	noc_attribute8,
	noc_attribute9,
	noc_attribute10,
	noc_attribute11,
	noc_attribute12,
	noc_attribute13,
	noc_attribute14,
	noc_attribute15,
	noc_attribute16,
	noc_attribute17,
	noc_attribute18,
	noc_attribute19,
	noc_attribute20,
	noc_attribute21,
	noc_attribute22,
	noc_attribute23,
	noc_attribute24,
	noc_attribute25,
	noc_attribute26,
	noc_attribute27,
	noc_attribute28,
	noc_attribute29,
	noc_attribute30,
	object_version_number
    from	ben_no_othr_cvg_rt_f
    where	no_othr_cvg_rt_id = p_no_othr_cvg_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 166

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

    select  t.vrbl_rt_prfl_id
    from    ben_no_othr_cvg_rt_f t
    where   t.no_othr_cvg_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 205

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

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

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

  update  ben_no_othr_cvg_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.no_othr_cvg_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 313

    select
	no_othr_cvg_rt_id,
	effective_start_date,
	effective_end_date,
	coord_ben_no_cvg_flag,
	vrbl_rt_prfl_id,
	business_group_id,
	noc_attribute_category,
	noc_attribute1,
	noc_attribute2,
	noc_attribute3,
	noc_attribute4,
	noc_attribute5,
	noc_attribute6,
	noc_attribute7,
	noc_attribute8,
	noc_attribute9,
	noc_attribute10,
	noc_attribute11,
	noc_attribute12,
	noc_attribute13,
	noc_attribute14,
	noc_attribute15,
	noc_attribute16,
	noc_attribute17,
	noc_attribute18,
	noc_attribute19,
	noc_attribute20,
	noc_attribute21,
	noc_attribute22,
	noc_attribute23,
	noc_attribute24,
	noc_attribute25,
	noc_attribute26,
	noc_attribute27,
	noc_attribute28,
	noc_attribute29,
	noc_attribute30,
	object_version_number
    from    ben_no_othr_cvg_rt_f
    where   no_othr_cvg_rt_id         = p_no_othr_cvg_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 383

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