DBA Data[Home] [Help]

APPS.BEN_PCD_SHD SQL Statements

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

Line: 74

    select
	per_cm_prvdd_id,
	effective_start_date,
	effective_end_date,
	rqstd_flag,
	per_cm_prvdd_stat_cd,
	cm_dlvry_med_cd,
	cm_dlvry_mthd_cd,
	sent_dt,
	instnc_num,
	to_be_sent_dt,
	dlvry_instn_txt,
	inspn_rqd_flag,
        resnd_rsn_cd,
        resnd_cmnt_txt,
	per_cm_id,
	address_id,
	business_group_id,
	pcd_attribute_category,
	pcd_attribute1,
	pcd_attribute2,
	pcd_attribute3,
	pcd_attribute4,
	pcd_attribute5,
	pcd_attribute6,
	pcd_attribute7,
	pcd_attribute8,
	pcd_attribute9,
	pcd_attribute10,
	pcd_attribute11,
	pcd_attribute12,
	pcd_attribute13,
	pcd_attribute14,
	pcd_attribute15,
	pcd_attribute16,
	pcd_attribute17,
	pcd_attribute18,
	pcd_attribute19,
	pcd_attribute20,
	pcd_attribute21,
	pcd_attribute22,
	pcd_attribute23,
	pcd_attribute24,
	pcd_attribute25,
	pcd_attribute26,
	pcd_attribute27,
	pcd_attribute28,
	pcd_attribute29,
	pcd_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from	ben_per_cm_prvdd_f
    where	per_cm_prvdd_id = p_per_cm_prvdd_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 191

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

    select  t.per_cm_id
    from    ben_per_cm_prvdd_f t
    where   t.per_cm_prvdd_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 230

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

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

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

  update  ben_per_cm_prvdd_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.per_cm_prvdd_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 338

    select
	per_cm_prvdd_id,
	effective_start_date,
	effective_end_date,
	rqstd_flag,
	per_cm_prvdd_stat_cd,
	cm_dlvry_med_cd,
	cm_dlvry_mthd_cd,
	sent_dt,
	instnc_num,
	to_be_sent_dt,
	dlvry_instn_txt,
	inspn_rqd_flag,
        resnd_rsn_cd,
        resnd_cmnt_txt,
	per_cm_id,
	address_id,
	business_group_id,
	pcd_attribute_category,
	pcd_attribute1,
	pcd_attribute2,
	pcd_attribute3,
	pcd_attribute4,
	pcd_attribute5,
	pcd_attribute6,
	pcd_attribute7,
	pcd_attribute8,
	pcd_attribute9,
	pcd_attribute10,
	pcd_attribute11,
	pcd_attribute12,
	pcd_attribute13,
	pcd_attribute14,
	pcd_attribute15,
	pcd_attribute16,
	pcd_attribute17,
	pcd_attribute18,
	pcd_attribute19,
	pcd_attribute20,
	pcd_attribute21,
	pcd_attribute22,
	pcd_attribute23,
	pcd_attribute24,
	pcd_attribute25,
	pcd_attribute26,
	pcd_attribute27,
	pcd_attribute28,
	pcd_attribute29,
	pcd_attribute30,
	request_id,
	program_application_id,
	program_id,
	program_update_date,
	object_version_number
    from    ben_per_cm_prvdd_f
    where   per_cm_prvdd_id         = p_per_cm_prvdd_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 423

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

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

  l_rec.program_update_date              := p_program_update_date;