DBA Data[Home] [Help]

APPS.PQH_BST_DEL SQL Statements

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

Line: 45

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

  delete from pqh_budget_sets
  where budget_set_id = p_rec.budget_set_id;
Line: 68

End delete_dml;
Line: 102

Procedure pre_delete(p_rec in pqh_bst_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_bst_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 157

    pqh_bst_rkd.after_delete
      (
  p_budget_set_id                 =>p_rec.budget_set_id
 ,p_dflt_budget_set_id_o          =>pqh_bst_shd.g_old_rec.dflt_budget_set_id
 ,p_budget_period_id_o            =>pqh_bst_shd.g_old_rec.budget_period_id
 ,p_budget_unit1_percent_o        =>pqh_bst_shd.g_old_rec.budget_unit1_percent
 ,p_budget_unit2_percent_o        =>pqh_bst_shd.g_old_rec.budget_unit2_percent
 ,p_budget_unit3_percent_o        =>pqh_bst_shd.g_old_rec.budget_unit3_percent
 ,p_budget_unit1_value_o          =>pqh_bst_shd.g_old_rec.budget_unit1_value
 ,p_budget_unit2_value_o          =>pqh_bst_shd.g_old_rec.budget_unit2_value
 ,p_budget_unit3_value_o          =>pqh_bst_shd.g_old_rec.budget_unit3_value
 ,p_budget_unit1_available_o       =>pqh_bst_shd.g_old_rec.budget_unit1_available
 ,p_budget_unit2_available_o       =>pqh_bst_shd.g_old_rec.budget_unit2_available
 ,p_budget_unit3_available_o       =>pqh_bst_shd.g_old_rec.budget_unit3_available
 ,p_object_version_number_o       =>pqh_bst_shd.g_old_rec.object_version_number
 ,p_budget_unit1_value_type_cd_o  =>pqh_bst_shd.g_old_rec.budget_unit1_value_type_cd
 ,p_budget_unit2_value_type_cd_o  =>pqh_bst_shd.g_old_rec.budget_unit2_value_type_cd
 ,p_budget_unit3_value_type_cd_o  =>pqh_bst_shd.g_old_rec.budget_unit3_value_type_cd
      );
Line: 191

End post_delete;
Line: 217

  pqh_bst_bus.delete_validate(p_rec
  ,p_effective_date);
Line: 222

  pre_delete(p_rec);
Line: 226

  delete_dml(p_rec);
Line: 230

  post_delete(
p_effective_date,p_rec);