DBA Data[Home] [Help]

APPS.BEN_PCR_SHD SQL Statements

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

Line: 69

    select
	per_cm_trgr_id,
	effective_start_date,
	effective_end_date,
	cm_trgr_id,
	per_cm_id,
	business_group_id,
	pcr_attribute_category,
	pcr_attribute1,
	pcr_attribute2,
	pcr_attribute3,
	pcr_attribute4,
	pcr_attribute5,
	pcr_attribute6,
	pcr_attribute7,
	pcr_attribute8,
	pcr_attribute9,
	pcr_attribute10,
	pcr_attribute11,
	pcr_attribute12,
	pcr_attribute13,
	pcr_attribute14,
	pcr_attribute15,
	pcr_attribute16,
	pcr_attribute17,
	pcr_attribute18,
	pcr_attribute19,
	pcr_attribute20,
	pcr_attribute21,
	pcr_attribute22,
	pcr_attribute23,
	pcr_attribute24,
	pcr_attribute25,
	pcr_attribute26,
	pcr_attribute27,
	pcr_attribute28,
	pcr_attribute29,
	pcr_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from	ben_per_cm_trgr_f
    where	per_cm_trgr_id = p_per_cm_trgr_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.per_cm_id
    from    ben_per_cm_trgr_f t
    where   t.per_cm_trgr_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 215

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

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

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

  update  ben_per_cm_trgr_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.per_cm_trgr_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 323

    select
	per_cm_trgr_id,
	effective_start_date,
	effective_end_date,
	cm_trgr_id,
	per_cm_id,
	business_group_id,
	pcr_attribute_category,
	pcr_attribute1,
	pcr_attribute2,
	pcr_attribute3,
	pcr_attribute4,
	pcr_attribute5,
	pcr_attribute6,
	pcr_attribute7,
	pcr_attribute8,
	pcr_attribute9,
	pcr_attribute10,
	pcr_attribute11,
	pcr_attribute12,
	pcr_attribute13,
	pcr_attribute14,
	pcr_attribute15,
	pcr_attribute16,
	pcr_attribute17,
	pcr_attribute18,
	pcr_attribute19,
	pcr_attribute20,
	pcr_attribute21,
	pcr_attribute22,
	pcr_attribute23,
	pcr_attribute24,
	pcr_attribute25,
	pcr_attribute26,
	pcr_attribute27,
	pcr_attribute28,
	pcr_attribute29,
	pcr_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from    ben_per_cm_trgr_f
    where   per_cm_trgr_id         = p_per_cm_trgr_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 397

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

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

  l_rec.program_update_date              := p_program_update_date;