DBA Data[Home] [Help]

APPS.PAY_IVL_SHD SQL Statements

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

Line: 88

    select
     input_value_id
    ,effective_start_date
    ,effective_end_date
    ,element_type_id
    ,lookup_type
    ,business_group_id
    ,legislation_code
    ,formula_id
    ,value_set_id
    ,display_sequence
    ,generate_db_items_flag
    ,hot_default_flag
    ,mandatory_flag
    ,name
    ,uom
    ,default_value
    ,legislation_subgroup
    ,max_value
    ,min_value
    ,warning_or_error
    ,object_version_number
    from        pay_input_values_f
    where       input_value_id = p_input_value_id
    and         p_effective_date
    between     effective_start_date and effective_end_date;
Line: 172

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

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

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

    select
     t.element_type_id
    from   pay_input_values_f t
    where  t.input_value_id = p_base_key_value
    and    p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 247

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

  update  pay_input_values_f t
  set     t.effective_end_date    = p_new_effective_end_date
    ,     t.object_version_number = l_object_version_number
  where   t.input_value_id        = p_base_key_value
  and     p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 328

    select
     input_value_id
    ,effective_start_date
    ,effective_end_date
    ,element_type_id
    ,lookup_type
    ,business_group_id
    ,legislation_code
    ,formula_id
    ,value_set_id
    ,display_sequence
    ,generate_db_items_flag
    ,hot_default_flag
    ,mandatory_flag
    ,name
    ,uom
    ,default_value
    ,legislation_subgroup
    ,max_value
    ,min_value
    ,warning_or_error
    ,object_version_number
    from    pay_input_values_f
    where   input_value_id = p_input_value_id
    and     p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 385

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