DBA Data[Home] [Help]

APPS.PQH_BRE_DEL SQL Statements

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

Line: 51

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

  delete from pqh_bdgt_pool_realloctions
  where reallocation_id = p_rec.reallocation_id;
Line: 80

End delete_dml;
Line: 114

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

End pre_delete;
Line: 156

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

    pqh_bre_rkd.after_delete
      (p_reallocation_id
      => p_rec.reallocation_id
      ,p_position_id_o
      => pqh_bre_shd.g_old_rec.position_id
      ,p_pool_id_o
      => pqh_bre_shd.g_old_rec.pool_id
      ,p_reallocation_amt_o
      => pqh_bre_shd.g_old_rec.reallocation_amt
      ,p_reserved_amt_o
      => pqh_bre_shd.g_old_rec.reserved_amt
      ,p_object_version_number_o
      => pqh_bre_shd.g_old_rec.object_version_number
      ,p_txn_detail_id_o
      => pqh_bre_shd.g_old_rec.txn_detail_id
      ,p_transaction_type_o
      => pqh_bre_shd.g_old_rec.transaction_type
      ,p_budget_detail_id_o
      => pqh_bre_shd.g_old_rec.budget_detail_id
      ,p_budget_period_id_o
      => pqh_bre_shd.g_old_rec.budget_period_id
      ,p_entity_id_o
      => pqh_bre_shd.g_old_rec.entity_id
      ,p_start_date_o
      => pqh_bre_shd.g_old_rec.start_date
      ,p_end_date_o
      => pqh_bre_shd.g_old_rec.end_date
      );
Line: 204

End post_delete;
Line: 227

  pqh_bre_bus.delete_validate(p_rec);
Line: 234

  pqh_bre_del.pre_delete(p_rec);
Line: 238

  pqh_bre_del.delete_dml(p_rec);
Line: 242

  pqh_bre_del.post_delete(p_rec);