DBA Data[Home] [Help]

APPS.PAY_PPD_SHD SQL Statements

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

Line: 49

    select
     paye_details_id
    ,effective_start_date
    ,effective_end_date
    ,per_or_asg_id
    ,business_group_id
    ,contract_category
    ,object_version_number
    ,tax_reduction
    ,tax_calc_with_spouse_child
    ,income_reduction
    ,income_reduction_amount
    ,rate_of_tax
    ,program_id
    ,program_login_id
    ,program_application_id
    ,request_id
    from        pay_pl_paye_details_f
    where       paye_details_id = p_paye_details_id
    and         p_effective_date
    between     effective_start_date and effective_end_date;
Line: 128

  ,p_update                 out nocopy boolean
  ,p_update_override        out nocopy boolean
  ,p_update_change_insert   out nocopy boolean
  ,p_correction_start_date         out nocopy date  --Added since Self Service DT team calling with more number of parameters
  ,p_correction_end_date           out nocopy date
  ,p_update_start_date             out nocopy date
  ,p_update_end_date               out nocopy date
  ,p_override_start_date           out nocopy date
  ,p_override_end_date             out nocopy date
  ,p_upd_chg_start_date            out nocopy date
  ,p_upd_chg_end_date              out nocopy date
  ) is
--
  l_proc        varchar2(72) := g_package||'find_dt_upd_modes';
Line: 154

    ,p_update                => p_update
    ,p_update_override       => p_update_override
    ,p_update_change_insert  => p_update_change_insert
    ,p_correction_start_date   => p_correction_start_date   --Added since Self Service DT team calling with more number of parameters
    ,p_correction_end_date     => p_correction_end_date
    ,p_update_start_date       => p_update_start_date
    ,p_update_end_date         => p_update_end_date
    ,p_upd_chg_start_date      => p_upd_chg_start_date
    ,p_upd_chg_end_date        => p_upd_chg_end_date
    ,p_override_start_date     => p_override_start_date
    ,p_override_end_date       => p_override_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: 196

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

  update  pay_pl_paye_details_f t
  set     t.effective_end_date    = p_new_effective_end_date
    ,     t.object_version_number = l_object_version_number
  where   t.paye_details_id        = p_base_key_value
  and     p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 272

    select
     paye_details_id
    ,effective_start_date
    ,effective_end_date
    ,per_or_asg_id
    ,business_group_id
    ,contract_category
    ,object_version_number
    ,tax_reduction
    ,tax_calc_with_spouse_child
    ,income_reduction
    ,income_reduction_amount
    ,rate_of_tax
    ,program_id
    ,program_login_id
    ,program_application_id
    ,request_id
    from    pay_pl_paye_details_f
    where   paye_details_id = p_paye_details_id
    and     p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 324

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