DBA Data[Home] [Help]

APPS.PAY_PEL_UPD SQL Statements

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

Line: 57

Procedure dt_update_dml
  (p_rec                   in out nocopy pay_pel_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc        varchar2(72) := g_package||'dt_update_dml';
Line: 87

    update  pay_element_links_f
    set
     element_link_id                      = p_rec.element_link_id
    ,cost_allocation_keyflex_id           = p_rec.cost_allocation_keyflex_id
    ,element_type_id                      = p_rec.element_type_id
    ,balancing_keyflex_id                 = p_rec.balancing_keyflex_id
    ,business_group_id                    = p_rec.business_group_id
    ,element_set_id                       = p_rec.element_set_id
    ,costable_type                        = p_rec.costable_type
    ,multiply_value_flag                  = p_rec.multiply_value_flag
    ,standard_link_flag                   = p_rec.standard_link_flag
    ,transfer_to_gl_flag                  = p_rec.transfer_to_gl_flag
    ,comment_id                           = p_rec.comment_id
    ,employment_category                  = p_rec.employment_category
    ,qualifying_age                       = p_rec.qualifying_age
    ,qualifying_length_of_service         = p_rec.qualifying_length_of_service
    ,qualifying_units                     = p_rec.qualifying_units
    ,attribute_category                   = p_rec.attribute_category
    ,attribute1                           = p_rec.attribute1
    ,attribute2                           = p_rec.attribute2
    ,attribute3                           = p_rec.attribute3
    ,attribute4                           = p_rec.attribute4
    ,attribute5                           = p_rec.attribute5
    ,attribute6                           = p_rec.attribute6
    ,attribute7                           = p_rec.attribute7
    ,attribute8                           = p_rec.attribute8
    ,attribute9                           = p_rec.attribute9
    ,attribute10                          = p_rec.attribute10
    ,attribute11                          = p_rec.attribute11
    ,attribute12                          = p_rec.attribute12
    ,attribute13                          = p_rec.attribute13
    ,attribute14                          = p_rec.attribute14
    ,attribute15                          = p_rec.attribute15
    ,attribute16                          = p_rec.attribute16
    ,attribute17                          = p_rec.attribute17
    ,attribute18                          = p_rec.attribute18
    ,attribute19                          = p_rec.attribute19
    ,attribute20                          = p_rec.attribute20
    ,object_version_number                = p_rec.object_version_number
    where   element_link_id = p_rec.element_link_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 153

End dt_update_dml;
Line: 186

Procedure update_dml
  (p_rec                      in out nocopy pay_pel_shd.g_rec_type
  ,p_effective_date           in date
  ,p_datetrack_mode           in varchar2
  ,p_validation_start_date    in date
  ,p_validation_end_date      in date
  ) is
--
  l_proc        varchar2(72) := g_package||'update_dml';
Line: 199

  pay_pel_upd.dt_update_dml
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => p_datetrack_mode
    ,p_validation_start_date => p_validation_start_date
    ,p_validation_end_date   => p_validation_end_date
    );
Line: 208

End update_dml;
Line: 253

Procedure dt_pre_update
  (p_rec                     in out nocopy     pay_pel_shd.g_rec_type
  ,p_effective_date          in date
  ,p_datetrack_mode          in varchar2
  ,p_validation_start_date   in date
  ,p_validation_end_date     in date
  ) is
--
  l_proc                 varchar2(72) := g_package||'dt_pre_update';
Line: 280

    If (p_datetrack_mode = hr_api.g_update_override) then
      --
      -- As the datetrack mode is 'UPDATE_OVERRIDE' then we must
      -- delete any future rows
      --
      pay_pel_del.delete_dml
        (p_rec                   => p_rec
        ,p_effective_date        => p_effective_date
        ,p_datetrack_mode        => p_datetrack_mode
        ,p_validation_start_date => p_validation_start_date
        ,p_validation_end_date   => p_validation_end_date
        );
Line: 296

    pay_pel_ins.insert_dml
      (p_rec                    => p_rec
      ,p_effective_date         => p_effective_date
      ,p_datetrack_mode         => p_datetrack_mode
      ,p_validation_start_date  => p_validation_start_date
      ,p_validation_end_date    => p_validation_end_date
      );
Line: 305

End dt_pre_update;
Line: 339

Procedure pre_update
  (p_rec                   in out nocopy pay_pel_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc        varchar2(72) := g_package||'pre_update';
Line: 369

  dt_pre_update
    (p_rec                   => p_rec
    ,p_effective_date        => p_effective_date
    ,p_datetrack_mode        => p_datetrack_mode
    ,p_validation_start_date => p_validation_start_date
    ,p_validation_end_date   => p_validation_end_date
    );
Line: 378

End pre_update;
Line: 412

Procedure post_update
  (p_rec                   in pay_pel_shd.g_rec_type
  ,p_effective_date        in date
  ,p_datetrack_mode        in varchar2
  ,p_validation_start_date in date
  ,p_validation_end_date   in date
  ) is
--
  l_proc        varchar2(72) := g_package||'post_update';
Line: 426

    pay_pel_rku.after_update
      (p_effective_date
      => p_effective_date
      ,p_datetrack_mode
      => p_datetrack_mode
      ,p_validation_start_date
      => p_validation_start_date
      ,p_validation_end_date
      => p_validation_end_date
      ,p_element_link_id
      => p_rec.element_link_id
      ,p_effective_start_date
      => p_rec.effective_start_date
      ,p_effective_end_date
      => p_rec.effective_end_date
      ,p_payroll_id
      => p_rec.payroll_id
      ,p_job_id
      => p_rec.job_id
      ,p_position_id
      => p_rec.position_id
      ,p_people_group_id
      => p_rec.people_group_id
      ,p_cost_allocation_keyflex_id
      => p_rec.cost_allocation_keyflex_id
      ,p_organization_id
      => p_rec.organization_id
      ,p_element_type_id
      => p_rec.element_type_id
      ,p_location_id
      => p_rec.location_id
      ,p_grade_id
      => p_rec.grade_id
      ,p_balancing_keyflex_id
      => p_rec.balancing_keyflex_id
      ,p_business_group_id
      => p_rec.business_group_id
      ,p_element_set_id
      => p_rec.element_set_id
      ,p_pay_basis_id
      => p_rec.pay_basis_id
      ,p_costable_type
      => p_rec.costable_type
      ,p_link_to_all_payrolls_flag
      => p_rec.link_to_all_payrolls_flag
      ,p_multiply_value_flag
      => p_rec.multiply_value_flag
      ,p_standard_link_flag
      => p_rec.standard_link_flag
      ,p_transfer_to_gl_flag
      => p_rec.transfer_to_gl_flag
      ,p_comment_id
      => p_rec.comment_id
      ,p_comments
      => p_rec.comments
      ,p_employment_category
      => p_rec.employment_category
      ,p_qualifying_age
      => p_rec.qualifying_age
      ,p_qualifying_length_of_service
      => p_rec.qualifying_length_of_service
      ,p_qualifying_units
      => p_rec.qualifying_units
      ,p_attribute_category
      => p_rec.attribute_category
      ,p_attribute1
      => p_rec.attribute1
      ,p_attribute2
      => p_rec.attribute2
      ,p_attribute3
      => p_rec.attribute3
      ,p_attribute4
      => p_rec.attribute4
      ,p_attribute5
      => p_rec.attribute5
      ,p_attribute6
      => p_rec.attribute6
      ,p_attribute7
      => p_rec.attribute7
      ,p_attribute8
      => p_rec.attribute8
      ,p_attribute9
      => p_rec.attribute9
      ,p_attribute10
      => p_rec.attribute10
      ,p_attribute11
      => p_rec.attribute11
      ,p_attribute12
      => p_rec.attribute12
      ,p_attribute13
      => p_rec.attribute13
      ,p_attribute14
      => p_rec.attribute14
      ,p_attribute15
      => p_rec.attribute15
      ,p_attribute16
      => p_rec.attribute16
      ,p_attribute17
      => p_rec.attribute17
      ,p_attribute18
      => p_rec.attribute18
      ,p_attribute19
      => p_rec.attribute19
      ,p_attribute20
      => p_rec.attribute20
      ,p_object_version_number
      => p_rec.object_version_number
      ,p_effective_start_date_o
      => pay_pel_shd.g_old_rec.effective_start_date
      ,p_effective_end_date_o
      => pay_pel_shd.g_old_rec.effective_end_date
      ,p_payroll_id_o
      => pay_pel_shd.g_old_rec.payroll_id
      ,p_job_id_o
      => pay_pel_shd.g_old_rec.job_id
      ,p_position_id_o
      => pay_pel_shd.g_old_rec.position_id
      ,p_people_group_id_o
      => pay_pel_shd.g_old_rec.people_group_id
      ,p_cost_allocation_keyflex_id_o
      => pay_pel_shd.g_old_rec.cost_allocation_keyflex_id
      ,p_organization_id_o
      => pay_pel_shd.g_old_rec.organization_id
      ,p_element_type_id_o
      => pay_pel_shd.g_old_rec.element_type_id
      ,p_location_id_o
      => pay_pel_shd.g_old_rec.location_id
      ,p_grade_id_o
      => pay_pel_shd.g_old_rec.grade_id
      ,p_balancing_keyflex_id_o
      => pay_pel_shd.g_old_rec.balancing_keyflex_id
      ,p_business_group_id_o
      => pay_pel_shd.g_old_rec.business_group_id
      ,p_element_set_id_o
      => pay_pel_shd.g_old_rec.element_set_id
      ,p_pay_basis_id_o
      => pay_pel_shd.g_old_rec.pay_basis_id
      ,p_costable_type_o
      => pay_pel_shd.g_old_rec.costable_type
      ,p_link_to_all_payrolls_flag_o
      => pay_pel_shd.g_old_rec.link_to_all_payrolls_flag
      ,p_multiply_value_flag_o
      => pay_pel_shd.g_old_rec.multiply_value_flag
      ,p_standard_link_flag_o
      => pay_pel_shd.g_old_rec.standard_link_flag
      ,p_transfer_to_gl_flag_o
      => pay_pel_shd.g_old_rec.transfer_to_gl_flag
      ,p_comment_id_o
      => pay_pel_shd.g_old_rec.comment_id
      ,p_comments_o
      => pay_pel_shd.g_old_rec.comments
      ,p_employment_category_o
      => pay_pel_shd.g_old_rec.employment_category
      ,p_qualifying_age_o
      => pay_pel_shd.g_old_rec.qualifying_age
      ,p_qualifying_length_of_servi_o
      => pay_pel_shd.g_old_rec.qualifying_length_of_service
      ,p_qualifying_units_o
      => pay_pel_shd.g_old_rec.qualifying_units
      ,p_attribute_category_o
      => pay_pel_shd.g_old_rec.attribute_category
      ,p_attribute1_o
      => pay_pel_shd.g_old_rec.attribute1
      ,p_attribute2_o
      => pay_pel_shd.g_old_rec.attribute2
      ,p_attribute3_o
      => pay_pel_shd.g_old_rec.attribute3
      ,p_attribute4_o
      => pay_pel_shd.g_old_rec.attribute4
      ,p_attribute5_o
      => pay_pel_shd.g_old_rec.attribute5
      ,p_attribute6_o
      => pay_pel_shd.g_old_rec.attribute6
      ,p_attribute7_o
      => pay_pel_shd.g_old_rec.attribute7
      ,p_attribute8_o
      => pay_pel_shd.g_old_rec.attribute8
      ,p_attribute9_o
      => pay_pel_shd.g_old_rec.attribute9
      ,p_attribute10_o
      => pay_pel_shd.g_old_rec.attribute10
      ,p_attribute11_o
      => pay_pel_shd.g_old_rec.attribute11
      ,p_attribute12_o
      => pay_pel_shd.g_old_rec.attribute12
      ,p_attribute13_o
      => pay_pel_shd.g_old_rec.attribute13
      ,p_attribute14_o
      => pay_pel_shd.g_old_rec.attribute14
      ,p_attribute15_o
      => pay_pel_shd.g_old_rec.attribute15
      ,p_attribute16_o
      => pay_pel_shd.g_old_rec.attribute16
      ,p_attribute17_o
      => pay_pel_shd.g_old_rec.attribute17
      ,p_attribute18_o
      => pay_pel_shd.g_old_rec.attribute18
      ,p_attribute19_o
      => pay_pel_shd.g_old_rec.attribute19
      ,p_attribute20_o
      => pay_pel_shd.g_old_rec.attribute20
      ,p_object_version_number_o
      => pay_pel_shd.g_old_rec.object_version_number
      );
Line: 642

End post_update;
Line: 931

  pay_pel_bus.update_validate
    (p_rec                              => p_rec
    ,p_effective_date                   => p_effective_date
    ,p_datetrack_mode                   => p_datetrack_mode
    ,p_validation_start_date            => l_validation_start_date
    ,p_validation_end_date              => l_validation_end_date
    );
Line: 944

  pre_update
    (p_rec                              => p_rec
    ,p_effective_date                   => p_effective_date
    ,p_datetrack_mode                   => p_datetrack_mode
    ,p_validation_start_date            => l_validation_start_date
    ,p_validation_end_date              => l_validation_end_date
    );
Line: 954

  update_dml
    (p_rec                              => p_rec
    ,p_effective_date                   => p_effective_date
    ,p_datetrack_mode                   => p_datetrack_mode
    ,p_validation_start_date            => l_validation_start_date
    ,p_validation_end_date                  => l_validation_end_date
    );
Line: 964

  post_update
    (p_rec                              => p_rec
    ,p_effective_date                   => p_effective_date
    ,p_datetrack_mode                   => p_datetrack_mode
    ,p_validation_start_date            => l_validation_start_date
    ,p_validation_end_date              => l_validation_end_date
    );