DBA Data[Home] [Help]

APPS.BEN_OUR_SHD SQL Statements

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

Line: 64

    select
	org_unit_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	organization_id,
	excld_flag,
	ordr_num,
	our_attribute_category,
	our_attribute1,
	our_attribute2,
	our_attribute3,
	our_attribute4,
	our_attribute5,
	our_attribute6,
	our_attribute7,
	our_attribute8,
	our_attribute9,
	our_attribute10,
	our_attribute11,
	our_attribute12,
	our_attribute13,
	our_attribute14,
	our_attribute15,
	our_attribute16,
	our_attribute17,
	our_attribute18,
	our_attribute19,
	our_attribute20,
	our_attribute21,
	our_attribute22,
	our_attribute23,
	our_attribute24,
	our_attribute25,
	our_attribute26,
	our_attribute27,
	our_attribute28,
	our_attribute29,
	our_attribute30,
	object_version_number
    from	ben_org_unit_rt_f
    where	org_unit_rt_id = p_org_unit_rt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 168

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

    select  t.vrbl_rt_prfl_id
    from    ben_org_unit_rt_f t
    where   t.org_unit_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 208

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

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

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

  update  ben_org_unit_rt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.org_unit_rt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 316

    select
	org_unit_rt_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	vrbl_rt_prfl_id,
	organization_id,
	excld_flag,
	ordr_num,
	our_attribute_category,
	our_attribute1,
	our_attribute2,
	our_attribute3,
	our_attribute4,
	our_attribute5,
	our_attribute6,
	our_attribute7,
	our_attribute8,
	our_attribute9,
	our_attribute10,
	our_attribute11,
	our_attribute12,
	our_attribute13,
	our_attribute14,
	our_attribute15,
	our_attribute16,
	our_attribute17,
	our_attribute18,
	our_attribute19,
	our_attribute20,
	our_attribute21,
	our_attribute22,
	our_attribute23,
	our_attribute24,
	our_attribute25,
	our_attribute26,
	our_attribute27,
	our_attribute28,
	our_attribute29,
	our_attribute30,
	object_version_number
    from    ben_org_unit_rt_f
    where   org_unit_rt_id         = p_org_unit_rt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 388

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