DBA Data[Home] [Help]

APPS.PQH_WFS_DEL SQL Statements

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

Line: 45

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

  delete from pqh_worksheet_fund_srcs
  where worksheet_fund_src_id = p_rec.worksheet_fund_src_id;
Line: 68

End delete_dml;
Line: 102

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

    pqh_wfs_rkd.after_delete
      (
  p_worksheet_fund_src_id         =>p_rec.worksheet_fund_src_id
 ,p_worksheet_bdgt_elmnt_id_o     =>pqh_wfs_shd.g_old_rec.worksheet_bdgt_elmnt_id
 ,p_distribution_percentage_o     =>pqh_wfs_shd.g_old_rec.distribution_percentage
 ,p_cost_allocation_keyflex_id_o  =>pqh_wfs_shd.g_old_rec.cost_allocation_keyflex_id
 ,p_project_id_o                  =>pqh_wfs_shd.g_old_rec.project_id
 ,p_award_id_o                    =>pqh_wfs_shd.g_old_rec.award_id
 ,p_task_id_o                     =>pqh_wfs_shd.g_old_rec.task_id
 ,p_expenditure_type_o            =>pqh_wfs_shd.g_old_rec.expenditure_type
 ,p_organization_id_o             =>pqh_wfs_shd.g_old_rec.organization_id
 ,p_object_version_number_o       =>pqh_wfs_shd.g_old_rec.object_version_number
      );
Line: 184

End post_delete;
Line: 209

  pqh_wfs_bus.delete_validate(p_rec);
Line: 213

  pre_delete(p_rec);
Line: 217

  delete_dml(p_rec);
Line: 221

  post_delete(p_rec);