DBA Data[Home] [Help]

APPS.BEN_PET_SHD SQL Statements

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

Line: 69

    select
	popl_enrt_typ_cycl_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	enrt_typ_cycl_cd,
	pl_id,
	pgm_id,
	pet_attribute_category,
	pet_attribute1,
	pet_attribute2,
	pet_attribute3,
	pet_attribute4,
	pet_attribute5,
	pet_attribute6,
	pet_attribute7,
	pet_attribute8,
	pet_attribute9,
	pet_attribute10,
	pet_attribute11,
	pet_attribute12,
	pet_attribute13,
	pet_attribute14,
	pet_attribute15,
	pet_attribute16,
	pet_attribute17,
	pet_attribute18,
	pet_attribute19,
	pet_attribute20,
	pet_attribute21,
	pet_attribute22,
	pet_attribute23,
	pet_attribute24,
	pet_attribute25,
	pet_attribute26,
	pet_attribute27,
	pet_attribute28,
	pet_attribute29,
	pet_attribute30,
	object_version_number
    from	ben_popl_enrt_typ_cycl_f
    where	popl_enrt_typ_cycl_id = p_popl_enrt_typ_cycl_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: 183

    select  t.pl_id,
	    t.pgm_id
    from    ben_popl_enrt_typ_cycl_f t
    where   t.popl_enrt_typ_cycl_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 218

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

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

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

  update  ben_popl_enrt_typ_cycl_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.popl_enrt_typ_cycl_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 326

    select
	popl_enrt_typ_cycl_id,
	effective_start_date,
	effective_end_date,
	business_group_id,
	enrt_typ_cycl_cd,
	pl_id,
	pgm_id,
	pet_attribute_category,
	pet_attribute1,
	pet_attribute2,
	pet_attribute3,
	pet_attribute4,
	pet_attribute5,
	pet_attribute6,
	pet_attribute7,
	pet_attribute8,
	pet_attribute9,
	pet_attribute10,
	pet_attribute11,
	pet_attribute12,
	pet_attribute13,
	pet_attribute14,
	pet_attribute15,
	pet_attribute16,
	pet_attribute17,
	pet_attribute18,
	pet_attribute19,
	pet_attribute20,
	pet_attribute21,
	pet_attribute22,
	pet_attribute23,
	pet_attribute24,
	pet_attribute25,
	pet_attribute26,
	pet_attribute27,
	pet_attribute28,
	pet_attribute29,
	pet_attribute30,
	object_version_number
    from    ben_popl_enrt_typ_cycl_f
    where   popl_enrt_typ_cycl_id         = p_popl_enrt_typ_cycl_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;