DBA Data[Home] [Help]

APPS.BEN_ESW_SHD SQL Statements

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

Line: 47

    select
     elig_scre_wtg_id
    ,elig_per_id
    ,elig_per_opt_id
    ,elig_rslt_id
    ,per_in_ler_id
    ,effective_start_date
    ,effective_end_date
    ,object_version_number
    ,eligy_prfl_id
    ,crit_tab_short_name
    ,crit_tab_pk_id
    ,computed_score
    ,benefit_action_id
    from        ben_elig_scre_wtg_f
    where       elig_scre_wtg_id = p_elig_scre_wtg_id
    and         p_effective_date
    between     effective_start_date and effective_end_date;
Line: 123

  ,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: 141

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

  ,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: 175

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

  update  ben_elig_scre_wtg_f t
  set     t.effective_end_date    = p_new_effective_end_date
    ,     t.object_version_number = l_object_version_number
  where   t.elig_scre_wtg_id        = p_base_key_value
  and     p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 251

    select
     elig_scre_wtg_id
    ,elig_per_id
    ,elig_per_opt_id
    ,elig_rslt_id
    ,per_in_ler_id
    ,effective_start_date
    ,effective_end_date
    ,object_version_number
    ,eligy_prfl_id
    ,crit_tab_short_name
    ,crit_tab_pk_id
    ,computed_score
    ,benefit_action_id
    from    ben_elig_scre_wtg_f
    where   elig_scre_wtg_id = p_elig_scre_wtg_id
    and     p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 300

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