DBA Data[Home] [Help]

APPS.PQH_BVR_DEL SQL Statements

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

Line: 48

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

  delete from pqh_budget_versions
  where budget_version_id = p_rec.budget_version_id;
Line: 71

End delete_dml;
Line: 105

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

End pre_delete;
Line: 147

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

    pqh_bvr_rkd.after_delete
      (
  p_budget_version_id             =>p_rec.budget_version_id
 ,p_budget_id_o                   =>pqh_bvr_shd.g_old_rec.budget_id
 ,p_version_number_o              =>pqh_bvr_shd.g_old_rec.version_number
 ,p_date_from_o                   =>pqh_bvr_shd.g_old_rec.date_from
 ,p_date_to_o                     =>pqh_bvr_shd.g_old_rec.date_to
 ,p_transfered_to_gl_flag_o       =>pqh_bvr_shd.g_old_rec.transfered_to_gl_flag
 ,p_gl_status_o                   =>pqh_bvr_shd.g_old_rec.gl_status
 ,p_xfer_to_other_apps_cd_o       =>pqh_bvr_shd.g_old_rec.xfer_to_other_apps_cd
 ,p_object_version_number_o       =>pqh_bvr_shd.g_old_rec.object_version_number
 ,p_budget_unit1_value_o          =>pqh_bvr_shd.g_old_rec.budget_unit1_value
 ,p_budget_unit2_value_o          =>pqh_bvr_shd.g_old_rec.budget_unit2_value
 ,p_budget_unit3_value_o          =>pqh_bvr_shd.g_old_rec.budget_unit3_value
 ,p_budget_unit1_available_o      =>pqh_bvr_shd.g_old_rec.budget_unit1_available
 ,p_budget_unit2_available_o      =>pqh_bvr_shd.g_old_rec.budget_unit2_available
 ,p_budget_unit3_available_o      =>pqh_bvr_shd.g_old_rec.budget_unit3_available
      );
Line: 193

End post_delete;
Line: 219

  pqh_bvr_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 224

  pre_delete(p_rec);
Line: 228

  delete_dml(p_rec);
Line: 232

  post_delete(
p_effective_date,p_rec);