DBA Data[Home] [Help]

APPS.BEN_CPR_SHD SQL Statements

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

Line: 69

    select
	popl_org_role_id,
	effective_start_date,
	effective_end_date,
	name,
        org_role_typ_cd,
	popl_org_id,
	business_group_id,
	cpr_attribute_category,
	cpr_attribute1,
	cpr_attribute2,
	cpr_attribute3,
	cpr_attribute4,
	cpr_attribute5,
	cpr_attribute6,
	cpr_attribute7,
	cpr_attribute8,
	cpr_attribute9,
	cpr_attribute10,
	cpr_attribute11,
	cpr_attribute12,
	cpr_attribute13,
	cpr_attribute14,
	cpr_attribute15,
	cpr_attribute16,
	cpr_attribute17,
	cpr_attribute18,
	cpr_attribute19,
	cpr_attribute20,
	cpr_attribute21,
	cpr_attribute22,
	cpr_attribute23,
	cpr_attribute24,
	cpr_attribute25,
	cpr_attribute26,
	cpr_attribute27,
	cpr_attribute28,
	cpr_attribute29,
	cpr_attribute30,
	object_version_number
    from	ben_popl_org_role_f
    where	popl_org_role_id = p_popl_org_role_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 172

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

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

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

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

  update  ben_popl_org_role_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.popl_org_role_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 301

    select
	popl_org_role_id,
	effective_start_date,
	effective_end_date,
	name,
        org_role_typ_cd,
	popl_org_id,
	business_group_id,
	cpr_attribute_category,
	cpr_attribute1,
	cpr_attribute2,
	cpr_attribute3,
	cpr_attribute4,
	cpr_attribute5,
	cpr_attribute6,
	cpr_attribute7,
	cpr_attribute8,
	cpr_attribute9,
	cpr_attribute10,
	cpr_attribute11,
	cpr_attribute12,
	cpr_attribute13,
	cpr_attribute14,
	cpr_attribute15,
	cpr_attribute16,
	cpr_attribute17,
	cpr_attribute18,
	cpr_attribute19,
	cpr_attribute20,
	cpr_attribute21,
	cpr_attribute22,
	cpr_attribute23,
	cpr_attribute24,
	cpr_attribute25,
	cpr_attribute26,
	cpr_attribute27,
	cpr_attribute28,
	cpr_attribute29,
	cpr_attribute30,
	object_version_number
    from    ben_popl_org_role_f
    where   popl_org_role_id         = p_popl_org_role_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 372

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