DBA Data[Home] [Help]

APPS.BEN_SAZ_SHD SQL Statements

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

Line: 64

    select
	svc_area_pstl_zip_rng_id,
	effective_start_date,
	effective_end_date,
	svc_area_id,
	pstl_zip_rng_id,
	business_group_id,
	saz_attribute_category,
	saz_attribute1,
	saz_attribute2,
	saz_attribute3,
	saz_attribute4,
	saz_attribute5,
	saz_attribute6,
	saz_attribute7,
	saz_attribute8,
	saz_attribute9,
	saz_attribute10,
	saz_attribute11,
	saz_attribute12,
	saz_attribute13,
	saz_attribute14,
	saz_attribute15,
	saz_attribute16,
	saz_attribute17,
	saz_attribute18,
	saz_attribute19,
	saz_attribute20,
	saz_attribute21,
	saz_attribute22,
	saz_attribute23,
	saz_attribute24,
	saz_attribute25,
	saz_attribute26,
	saz_attribute27,
	saz_attribute28,
	saz_attribute29,
	saz_attribute30,
	object_version_number
    from	ben_svc_area_pstl_zip_rng_f
    where	svc_area_pstl_zip_rng_id = p_svc_area_pstl_zip_rng_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: 176

    select  t.pstl_zip_rng_id,
	    t.svc_area_id
    from    ben_svc_area_pstl_zip_rng_f t
    where   t.svc_area_pstl_zip_rng_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 211

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

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

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

  update  ben_svc_area_pstl_zip_rng_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.svc_area_pstl_zip_rng_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 319

    select
	svc_area_pstl_zip_rng_id,
	effective_start_date,
	effective_end_date,
	svc_area_id,
	pstl_zip_rng_id,
	business_group_id,
	saz_attribute_category,
	saz_attribute1,
	saz_attribute2,
	saz_attribute3,
	saz_attribute4,
	saz_attribute5,
	saz_attribute6,
	saz_attribute7,
	saz_attribute8,
	saz_attribute9,
	saz_attribute10,
	saz_attribute11,
	saz_attribute12,
	saz_attribute13,
	saz_attribute14,
	saz_attribute15,
	saz_attribute16,
	saz_attribute17,
	saz_attribute18,
	saz_attribute19,
	saz_attribute20,
	saz_attribute21,
	saz_attribute22,
	saz_attribute23,
	saz_attribute24,
	saz_attribute25,
	saz_attribute26,
	saz_attribute27,
	saz_attribute28,
	saz_attribute29,
	saz_attribute30,
	object_version_number
    from    ben_svc_area_pstl_zip_rng_f
    where   svc_area_pstl_zip_rng_id         = p_svc_area_pstl_zip_rng_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 389

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