DBA Data[Home] [Help]

APPS.BEN_AVR_SHD SQL Statements

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

Line: 64

    select
    acty_vrbl_rt_id,
    effective_start_date,
    effective_end_date,
    acty_base_rt_id,
    vrbl_rt_prfl_id,
        ordr_num,
    business_group_id,
    avr_attribute_category,
    avr_attribute1,
    avr_attribute2,
    avr_attribute3,
    avr_attribute4,
    avr_attribute5,
    avr_attribute6,
    avr_attribute7,
    avr_attribute8,
    avr_attribute9,
    avr_attribute10,
    avr_attribute11,
    avr_attribute12,
    avr_attribute13,
    avr_attribute14,
    avr_attribute15,
    avr_attribute16,
    avr_attribute17,
    avr_attribute18,
    avr_attribute19,
    avr_attribute20,
    avr_attribute21,
    avr_attribute22,
    avr_attribute23,
    avr_attribute24,
    avr_attribute25,
    avr_attribute26,
    avr_attribute27,
    avr_attribute28,
    avr_attribute29,
    avr_attribute30,
    object_version_number
    from    ben_acty_vrbl_rt_f
    where   acty_vrbl_rt_id = p_acty_vrbl_rt_id
    and     p_effective_date
    between effective_start_date and effective_end_date;
Line: 167

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

    select  t.acty_base_rt_id,
            t.vrbl_rt_prfl_id
    from    ben_acty_vrbl_rt_f t
    where   t.acty_vrbl_rt_id = p_base_key_value
    and     p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 213

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

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

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

  update  ben_acty_vrbl_rt_f t
  set     t.effective_end_date    = p_new_effective_end_date,
      t.object_version_number = l_object_version_number
  where   t.acty_vrbl_rt_id   = p_base_key_value
  and     p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 321

    select
    acty_vrbl_rt_id,
    effective_start_date,
    effective_end_date,
    acty_base_rt_id,
    vrbl_rt_prfl_id,
        ordr_num,
    business_group_id,
    avr_attribute_category,
    avr_attribute1,
    avr_attribute2,
    avr_attribute3,
    avr_attribute4,
    avr_attribute5,
    avr_attribute6,
    avr_attribute7,
    avr_attribute8,
    avr_attribute9,
    avr_attribute10,
    avr_attribute11,
    avr_attribute12,
    avr_attribute13,
    avr_attribute14,
    avr_attribute15,
    avr_attribute16,
    avr_attribute17,
    avr_attribute18,
    avr_attribute19,
    avr_attribute20,
    avr_attribute21,
    avr_attribute22,
    avr_attribute23,
    avr_attribute24,
    avr_attribute25,
    avr_attribute26,
    avr_attribute27,
    avr_attribute28,
    avr_attribute29,
    avr_attribute30,
    object_version_number
    from    ben_acty_vrbl_rt_f
    where   acty_vrbl_rt_id         = p_acty_vrbl_rt_id
    and     p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 392

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