DBA Data[Home] [Help]

APPS.BEN_PCU_SHD SQL Statements

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

Line: 69

    select
	per_cm_usg_id,
	effective_start_date,
	effective_end_date,
	per_cm_id,
	cm_typ_usg_id,
	business_group_id,
	pcu_attribute_category,
	pcu_attribute1,
	pcu_attribute2,
	pcu_attribute3,
	pcu_attribute4,
	pcu_attribute5,
	pcu_attribute6,
	pcu_attribute7,
	pcu_attribute8,
	pcu_attribute9,
	pcu_attribute10,
	pcu_attribute11,
	pcu_attribute12,
	pcu_attribute13,
	pcu_attribute14,
	pcu_attribute15,
	pcu_attribute16,
	pcu_attribute17,
	pcu_attribute18,
	pcu_attribute19,
	pcu_attribute20,
	pcu_attribute21,
	pcu_attribute22,
	pcu_attribute23,
	pcu_attribute24,
	pcu_attribute25,
	pcu_attribute26,
	pcu_attribute27,
	pcu_attribute28,
	pcu_attribute29,
	pcu_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from	ben_per_cm_usg_f
    where	per_cm_usg_id = p_per_cm_usg_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 175

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

    select  t.cm_typ_usg_id,
	    t.per_cm_id
    from    ben_per_cm_usg_f t
    where   t.per_cm_usg_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 220

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

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

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

  update  ben_per_cm_usg_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.per_cm_usg_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 328

    select
	per_cm_usg_id,
	effective_start_date,
	effective_end_date,
	per_cm_id,
	cm_typ_usg_id,
	business_group_id,
	pcu_attribute_category,
	pcu_attribute1,
	pcu_attribute2,
	pcu_attribute3,
	pcu_attribute4,
	pcu_attribute5,
	pcu_attribute6,
	pcu_attribute7,
	pcu_attribute8,
	pcu_attribute9,
	pcu_attribute10,
	pcu_attribute11,
	pcu_attribute12,
	pcu_attribute13,
	pcu_attribute14,
	pcu_attribute15,
	pcu_attribute16,
	pcu_attribute17,
	pcu_attribute18,
	pcu_attribute19,
	pcu_attribute20,
	pcu_attribute21,
	pcu_attribute22,
	pcu_attribute23,
	pcu_attribute24,
	pcu_attribute25,
	pcu_attribute26,
	pcu_attribute27,
	pcu_attribute28,
	pcu_attribute29,
	pcu_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from    ben_per_cm_usg_f
    where   per_cm_usg_id         = p_per_cm_usg_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 402

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

	p_program_update_date           in date,
	p_object_version_number         in number
	)
	Return g_rec_type is
--
  l_rec	  g_rec_type;
Line: 580

  l_rec.program_update_date              := p_program_update_date;