DBA Data[Home] [Help]

APPS.PAY_SID_SHD SQL Statements

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

Line: 47

    select
     prsi_details_id
    ,effective_start_date
    ,effective_end_date
    ,object_version_number
    ,assignment_id
    ,contribution_class
    ,overridden_subclass
    ,soc_ben_flag
    ,soc_ben_start_date
    ,overridden_ins_weeks
    ,non_standard_ins_weeks
    ,exemption_start_date
    ,exemption_end_date
    ,cert_issued_by
    ,director_flag
    ,request_id
    ,program_application_id
    ,program_id
    ,program_update_date
    ,community_flag
    from        pay_ie_prsi_details_f
    where       prsi_details_id = p_prsi_details_id
    and         p_effective_date
    between     effective_start_date and effective_end_date;
Line: 130

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

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

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

    select
     t.assignment_id
    from   pay_ie_prsi_details_f t
    where  t.prsi_details_id = p_base_key_value
    and    p_effective_date
    between t.effective_start_date and t.effective_end_date;
Line: 205

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

  update  pay_ie_prsi_details_f t
  set     t.effective_end_date    = p_new_effective_end_date
    ,     t.object_version_number = l_object_version_number
  where   t.prsi_details_id        = p_base_key_value
  and     p_effective_date
  between t.effective_start_date and t.effective_end_date;
Line: 281

    select
     prsi_details_id
    ,effective_start_date
    ,effective_end_date
    ,object_version_number
    ,assignment_id
    ,contribution_class
    ,overridden_subclass
    ,soc_ben_flag
    ,soc_ben_start_date
    ,overridden_ins_weeks
    ,non_standard_ins_weeks
    ,exemption_start_date
    ,exemption_end_date
    ,cert_issued_by
    ,director_flag
    ,request_id
    ,program_application_id
    ,program_id
    ,program_update_date
    ,community_flag
    from    pay_ie_prsi_details_f
    where   prsi_details_id = p_prsi_details_id
    and     p_effective_date
    between effective_start_date and effective_end_date
    for update nowait;
Line: 337

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

  ,p_program_update_date            in date
  ,p_community_flag                 in varchar2
  )
  Return g_rec_type is
--
  l_rec   g_rec_type;
Line: 458

  l_rec.program_update_date              := p_program_update_date;