DBA Data[Home] [Help]

APPS.PQH_WDT_DEL SQL Statements

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

Line: 45

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

  delete from pqh_worksheet_details
  where worksheet_detail_id = p_rec.worksheet_detail_id;
Line: 68

End delete_dml;
Line: 102

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

End pre_delete;
Line: 144

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

    pqh_wdt_rkd.after_delete
      (
  p_worksheet_detail_id           =>p_rec.worksheet_detail_id
 ,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: 205

End post_delete;
Line: 231

  pqh_wdt_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 236

  pre_delete(p_rec);
Line: 240

  delete_dml(p_rec);
Line: 244

  post_delete(
p_effective_date,p_rec);