DBA Data[Home] [Help]

APPS.BEN_PBM_SHD SQL Statements

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

Line: 64

    select
	pl_r_oipl_prem_by_mo_id,
	effective_start_date,
	effective_end_date,
	mnl_adj_flag,
	mo_num,
	yr_num,
	val,
	uom,
	prtts_num,
	actl_prem_id,
        cost_allocation_keyflex_id,
	business_group_id,
	pbm_attribute_category,
	pbm_attribute1,
	pbm_attribute2,
	pbm_attribute3,
	pbm_attribute4,
	pbm_attribute5,
	pbm_attribute6,
	pbm_attribute7,
	pbm_attribute8,
	pbm_attribute9,
	pbm_attribute10,
	pbm_attribute11,
	pbm_attribute12,
	pbm_attribute13,
	pbm_attribute14,
	pbm_attribute15,
	pbm_attribute16,
	pbm_attribute17,
	pbm_attribute18,
	pbm_attribute19,
	pbm_attribute20,
	pbm_attribute21,
	pbm_attribute22,
	pbm_attribute23,
	pbm_attribute24,
	pbm_attribute25,
	pbm_attribute26,
	pbm_attribute27,
	pbm_attribute28,
	pbm_attribute29,
	pbm_attribute30,
	object_version_number,
        request_id,
        program_id,
        program_application_id,
        program_update_date
    from	ben_pl_r_oipl_prem_by_mo_f
    where	pl_r_oipl_prem_by_mo_id = p_pl_r_oipl_prem_by_mo_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 176

	 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.actl_prem_id
    from    ben_pl_r_oipl_prem_by_mo_f t
    where   t.pl_r_oipl_prem_by_mo_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_pl_r_oipl_prem_by_mo_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.pl_r_oipl_prem_by_mo_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 323

    select
	pl_r_oipl_prem_by_mo_id,
	effective_start_date,
	effective_end_date,
	mnl_adj_flag,
	mo_num,
	yr_num,
	val,
	uom,
	prtts_num,
	actl_prem_id,
        cost_allocation_keyflex_id,
	business_group_id,
	pbm_attribute_category,
	pbm_attribute1,
	pbm_attribute2,
	pbm_attribute3,
	pbm_attribute4,
	pbm_attribute5,
	pbm_attribute6,
	pbm_attribute7,
	pbm_attribute8,
	pbm_attribute9,
	pbm_attribute10,
	pbm_attribute11,
	pbm_attribute12,
	pbm_attribute13,
	pbm_attribute14,
	pbm_attribute15,
	pbm_attribute16,
	pbm_attribute17,
	pbm_attribute18,
	pbm_attribute19,
	pbm_attribute20,
	pbm_attribute21,
	pbm_attribute22,
	pbm_attribute23,
	pbm_attribute24,
	pbm_attribute25,
	pbm_attribute26,
	pbm_attribute27,
	pbm_attribute28,
	pbm_attribute29,
	pbm_attribute30,
	object_version_number,
        request_id,
        program_id,
        program_application_id,
        program_update_date
    from    ben_pl_r_oipl_prem_by_mo_f
    where   pl_r_oipl_prem_by_mo_id         = p_pl_r_oipl_prem_by_mo_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 403

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

        p_program_update_date             in date
	)
	Return g_rec_type is
--
  l_rec	  g_rec_type;
Line: 591

  l_rec.program_update_date              := p_program_update_date;