DBA Data[Home] [Help]

APPS.PQH_WDT_UPD SQL Statements

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

Line: 48

Procedure update_dml(p_rec in out nocopy pqh_wdt_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 62

  update pqh_worksheet_details
  set
  worksheet_detail_id               = p_rec.worksheet_detail_id,
  worksheet_id                      = p_rec.worksheet_id,
  organization_id                   = p_rec.organization_id,
  job_id                            = p_rec.job_id,
  position_id                       = p_rec.position_id,
  grade_id                          = p_rec.grade_id,
  position_transaction_id           = p_rec.position_transaction_id,
  budget_detail_id                  = p_rec.budget_detail_id,
  parent_worksheet_detail_id        = p_rec.parent_worksheet_detail_id,
  user_id                           = p_rec.user_id,
  action_cd                         = p_rec.action_cd,
  budget_unit1_percent              = p_rec.budget_unit1_percent,
  budget_unit1_value                = p_rec.budget_unit1_value,
  budget_unit2_percent              = p_rec.budget_unit2_percent,
  budget_unit2_value                = p_rec.budget_unit2_value,
  budget_unit3_percent              = p_rec.budget_unit3_percent,
  budget_unit3_value                = p_rec.budget_unit3_value,
  object_version_number             = p_rec.object_version_number,
  budget_unit1_value_type_cd        = p_rec.budget_unit1_value_type_cd,
  budget_unit2_value_type_cd        = p_rec.budget_unit2_value_type_cd,
  budget_unit3_value_type_cd        = p_rec.budget_unit3_value_type_cd,
  status                            = p_rec.status,
  budget_unit1_available            = p_rec.budget_unit1_available,
  budget_unit2_available            = p_rec.budget_unit2_available,
  budget_unit3_available            = p_rec.budget_unit3_available,
  old_unit1_value                   = p_rec.old_unit1_value,
  old_unit2_value                   = p_rec.old_unit2_value,
  old_unit3_value                   = p_rec.old_unit3_value,
  defer_flag                        = p_rec.defer_flag,
  propagation_method                = p_rec.propagation_method
  where worksheet_detail_id = p_rec.worksheet_detail_id;
Line: 114

End update_dml;
Line: 148

Procedure pre_update(p_rec in pqh_wdt_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_update';
Line: 156

End pre_update;
Line: 190

Procedure post_update(
p_effective_date in date,p_rec in pqh_wdt_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 203

    pqh_wdt_rku.after_update
      (
  p_worksheet_detail_id           =>p_rec.worksheet_detail_id
 ,p_worksheet_id                  =>p_rec.worksheet_id
 ,p_organization_id               =>p_rec.organization_id
 ,p_job_id                        =>p_rec.job_id
 ,p_position_id                   =>p_rec.position_id
 ,p_grade_id                      =>p_rec.grade_id
 ,p_position_transaction_id       =>p_rec.position_transaction_id
 ,p_budget_detail_id              =>p_rec.budget_detail_id
 ,p_parent_worksheet_detail_id    =>p_rec.parent_worksheet_detail_id
 ,p_user_id                       =>p_rec.user_id
 ,p_action_cd                     =>p_rec.action_cd
 ,p_budget_unit1_percent          =>p_rec.budget_unit1_percent
 ,p_budget_unit1_value            =>p_rec.budget_unit1_value
 ,p_budget_unit2_percent          =>p_rec.budget_unit2_percent
 ,p_budget_unit2_value            =>p_rec.budget_unit2_value
 ,p_budget_unit3_percent          =>p_rec.budget_unit3_percent
 ,p_budget_unit3_value            =>p_rec.budget_unit3_value
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_budget_unit1_value_type_cd    =>p_rec.budget_unit1_value_type_cd
 ,p_budget_unit2_value_type_cd    =>p_rec.budget_unit2_value_type_cd
 ,p_budget_unit3_value_type_cd    =>p_rec.budget_unit3_value_type_cd
 ,p_status                        =>p_rec.status
 ,p_budget_unit1_available        =>p_rec.budget_unit1_available
 ,p_budget_unit2_available        =>p_rec.budget_unit2_available
 ,p_budget_unit3_available        =>p_rec.budget_unit3_available
 ,p_old_unit1_value               =>p_rec.old_unit1_value
 ,p_old_unit2_value               =>p_rec.old_unit2_value
 ,p_old_unit3_value               =>p_rec.old_unit3_value
 ,p_defer_flag                    =>p_rec.defer_flag
 ,p_propagation_method            =>p_rec.propagation_method
 ,p_effective_date                =>p_effective_date
 ,p_worksheet_id_o                =>pqh_wdt_shd.g_old_rec.worksheet_id
 ,p_organization_id_o             =>pqh_wdt_shd.g_old_rec.organization_id
 ,p_job_id_o                      =>pqh_wdt_shd.g_old_rec.job_id
 ,p_position_id_o                 =>pqh_wdt_shd.g_old_rec.position_id
 ,p_grade_id_o                    =>pqh_wdt_shd.g_old_rec.grade_id
 ,p_position_transaction_id_o     =>pqh_wdt_shd.g_old_rec.position_transaction_id
 ,p_budget_detail_id_o            =>pqh_wdt_shd.g_old_rec.budget_detail_id
 ,p_parent_worksheet_detail_id_o  =>pqh_wdt_shd.g_old_rec.parent_worksheet_detail_id
 ,p_user_id_o                     =>pqh_wdt_shd.g_old_rec.user_id
 ,p_action_cd_o                   =>pqh_wdt_shd.g_old_rec.action_cd
 ,p_budget_unit1_percent_o        =>pqh_wdt_shd.g_old_rec.budget_unit1_percent
 ,p_budget_unit1_value_o          =>pqh_wdt_shd.g_old_rec.budget_unit1_value
 ,p_budget_unit2_percent_o        =>pqh_wdt_shd.g_old_rec.budget_unit2_percent
 ,p_budget_unit2_value_o          =>pqh_wdt_shd.g_old_rec.budget_unit2_value
 ,p_budget_unit3_percent_o        =>pqh_wdt_shd.g_old_rec.budget_unit3_percent
 ,p_budget_unit3_value_o          =>pqh_wdt_shd.g_old_rec.budget_unit3_value
 ,p_object_version_number_o       =>pqh_wdt_shd.g_old_rec.object_version_number
 ,p_budget_unit1_value_type_cd_o  =>pqh_wdt_shd.g_old_rec.budget_unit1_value_type_cd
 ,p_budget_unit2_value_type_cd_o  =>pqh_wdt_shd.g_old_rec.budget_unit2_value_type_cd
 ,p_budget_unit3_value_type_cd_o  =>pqh_wdt_shd.g_old_rec.budget_unit3_value_type_cd
 ,p_status_o                      =>pqh_wdt_shd.g_old_rec.status
 ,p_budget_unit1_available_o      =>pqh_wdt_shd.g_old_rec.budget_unit1_available
 ,p_budget_unit2_available_o      =>pqh_wdt_shd.g_old_rec.budget_unit2_available
 ,p_budget_unit3_available_o      =>pqh_wdt_shd.g_old_rec.budget_unit3_available
 ,p_old_unit1_value_o             =>pqh_wdt_shd.g_old_rec.old_unit1_value
 ,p_old_unit2_value_o             =>pqh_wdt_shd.g_old_rec.old_unit2_value
 ,p_old_unit3_value_o             =>pqh_wdt_shd.g_old_rec.old_unit3_value
 ,p_defer_flag_o                  =>pqh_wdt_shd.g_old_rec.defer_flag
 ,p_propagation_method_o          =>pqh_wdt_shd.g_old_rec.propagation_method
      );
Line: 281

End post_update;
Line: 485

  pqh_wdt_bus.update_validate(p_rec
  ,p_effective_date);
Line: 490

  pre_update(p_rec);
Line: 494

  update_dml(p_rec);
Line: 498

  post_update(
p_effective_date,p_rec);