DBA Data[Home] [Help]

APPS.BEN_PDL_SHD SQL Statements

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

Line: 69

    select
	ptd_lmt_id,
	effective_start_date,
	effective_end_date,
	name,
	mx_comp_to_cnsdr,
	mx_val,
	mx_pct_val,
	ptd_lmt_calc_rl,
	lmt_det_cd,
	comp_lvl_fctr_id,
	balance_type_id,
	business_group_id,
	pdl_attribute_category,
	pdl_attribute1,
	pdl_attribute2,
	pdl_attribute3,
	pdl_attribute4,
	pdl_attribute5,
	pdl_attribute6,
	pdl_attribute7,
	pdl_attribute8,
	pdl_attribute9,
	pdl_attribute10,
	pdl_attribute11,
	pdl_attribute12,
	pdl_attribute13,
	pdl_attribute14,
	pdl_attribute15,
	pdl_attribute16,
	pdl_attribute17,
	pdl_attribute18,
	pdl_attribute19,
	pdl_attribute20,
	pdl_attribute21,
	pdl_attribute22,
	pdl_attribute23,
	pdl_attribute24,
	pdl_attribute25,
	pdl_attribute26,
	pdl_attribute27,
	pdl_attribute28,
	pdl_attribute29,
	pdl_attribute30,
	object_version_number
    from	ben_ptd_lmt_f
    where	ptd_lmt_id = p_ptd_lmt_id
    and		p_effective_date
    between	effective_start_date and effective_end_date;
Line: 177

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

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

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

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

  update  ben_ptd_lmt_f t
  set	  t.effective_end_date	  = p_new_effective_end_date,
	  t.object_version_number = l_object_version_number
  where	  t.ptd_lmt_id	  = p_base_key_value
  and	  p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 306

    select
	ptd_lmt_id,
	effective_start_date,
	effective_end_date,
	name,
	mx_comp_to_cnsdr,
	mx_val,
	mx_pct_val,
	ptd_lmt_calc_rl,
	lmt_det_cd,
	comp_lvl_fctr_id,
	balance_type_id,
	business_group_id,
	pdl_attribute_category,
	pdl_attribute1,
	pdl_attribute2,
	pdl_attribute3,
	pdl_attribute4,
	pdl_attribute5,
	pdl_attribute6,
	pdl_attribute7,
	pdl_attribute8,
	pdl_attribute9,
	pdl_attribute10,
	pdl_attribute11,
	pdl_attribute12,
	pdl_attribute13,
	pdl_attribute14,
	pdl_attribute15,
	pdl_attribute16,
	pdl_attribute17,
	pdl_attribute18,
	pdl_attribute19,
	pdl_attribute20,
	pdl_attribute21,
	pdl_attribute22,
	pdl_attribute23,
	pdl_attribute24,
	pdl_attribute25,
	pdl_attribute26,
	pdl_attribute27,
	pdl_attribute28,
	pdl_attribute29,
	pdl_attribute30,
	object_version_number
    from    ben_ptd_lmt_f
    where   ptd_lmt_id         = p_ptd_lmt_id
    and	    p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 382

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