DBA Data[Home] [Help]

APPS.PQH_BDT_DEL SQL Statements

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

Line: 45

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

  delete from pqh_budget_details
  where budget_detail_id = p_rec.budget_detail_id;
Line: 68

End delete_dml;
Line: 102

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

End pre_delete;
Line: 144

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

    pqh_bdt_rkd.after_delete
      (
  p_budget_detail_id              =>p_rec.budget_detail_id
 ,p_organization_id_o             =>pqh_bdt_shd.g_old_rec.organization_id
 ,p_job_id_o                      =>pqh_bdt_shd.g_old_rec.job_id
 ,p_position_id_o                 =>pqh_bdt_shd.g_old_rec.position_id
 ,p_grade_id_o                    =>pqh_bdt_shd.g_old_rec.grade_id
 ,p_budget_version_id_o           =>pqh_bdt_shd.g_old_rec.budget_version_id
 ,p_budget_unit1_percent_o        =>pqh_bdt_shd.g_old_rec.budget_unit1_percent
 ,p_budget_unit1_value_type_cd_o           =>pqh_bdt_shd.g_old_rec.budget_unit1_value_type_cd
 ,p_budget_unit1_value_o          =>pqh_bdt_shd.g_old_rec.budget_unit1_value
 ,p_budget_unit1_available_o       =>pqh_bdt_shd.g_old_rec.budget_unit1_available
 ,p_budget_unit2_percent_o        =>pqh_bdt_shd.g_old_rec.budget_unit2_percent
 ,p_budget_unit2_value_type_cd_o           =>pqh_bdt_shd.g_old_rec.budget_unit2_value_type_cd
 ,p_budget_unit2_value_o          =>pqh_bdt_shd.g_old_rec.budget_unit2_value
 ,p_budget_unit2_available_o       =>pqh_bdt_shd.g_old_rec.budget_unit2_available
 ,p_budget_unit3_percent_o        =>pqh_bdt_shd.g_old_rec.budget_unit3_percent
 ,p_budget_unit3_value_type_cd_o           =>pqh_bdt_shd.g_old_rec.budget_unit3_value_type_cd
 ,p_budget_unit3_value_o          =>pqh_bdt_shd.g_old_rec.budget_unit3_value
 ,p_budget_unit3_available_o       =>pqh_bdt_shd.g_old_rec.budget_unit3_available
 ,p_gl_status_o                            =>pqh_bdt_shd.g_old_rec.gl_status
 ,p_object_version_number_o       =>pqh_bdt_shd.g_old_rec.object_version_number
      );
Line: 194

End post_delete;
Line: 219

  pqh_bdt_bus.delete_validate(p_rec);
Line: 223

  pre_delete(p_rec);
Line: 227

  delete_dml(p_rec);
Line: 231

  post_delete(p_rec);