DBA Data[Home] [Help]

APPS.PQH_DFS_UPD SQL Statements

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

Line: 48

Procedure update_dml(p_rec in out nocopy pqh_dfs_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 62

  update pqh_dflt_fund_srcs
  set
  dflt_fund_src_id                  = p_rec.dflt_fund_src_id,
  dflt_budget_element_id            = p_rec.dflt_budget_element_id,
  dflt_dist_percentage              = p_rec.dflt_dist_percentage,
  object_version_number             = p_rec.object_version_number,
  cost_allocation_keyflex_id        = p_rec.cost_allocation_keyflex_id ,
  project_id                        = p_rec.project_id ,
  award_id                          = p_rec.award_id ,
  task_id                           = p_rec.task_id ,
  expenditure_type                  = p_rec.expenditure_type ,
  organization_id                   = p_rec.organization_id
  where dflt_fund_src_id = p_rec.dflt_fund_src_id;
Line: 94

End update_dml;
Line: 128

Procedure pre_update(p_rec in pqh_dfs_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_update';
Line: 136

End pre_update;
Line: 170

Procedure post_update(p_rec in pqh_dfs_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 179

 select SUM(NVL(dflt_dist_percentage,0))
 from pqh_dflt_fund_srcs
 where dflt_budget_element_id = p_dflt_budget_element_id;
Line: 204

    pqh_dfs_rku.after_update
      (
  p_dflt_fund_src_id              =>p_rec.dflt_fund_src_id
 ,p_dflt_budget_element_id        =>p_rec.dflt_budget_element_id
 ,p_dflt_dist_percentage          =>p_rec.dflt_dist_percentage
 ,p_project_id                    =>p_rec.project_id
 ,p_award_id                      =>p_rec.award_id
 ,p_task_id                       =>p_rec.task_id
 ,p_expenditure_type              =>p_rec.expenditure_type
 ,p_organization_id               =>p_rec.organization_id
 ,p_object_version_number         =>p_rec.object_version_number
 ,p_cost_allocation_keyflex_id    =>p_rec.cost_allocation_keyflex_id
 ,p_dflt_budget_element_id_o      =>pqh_dfs_shd.g_old_rec.dflt_budget_element_id
 ,p_dflt_dist_percentage_o        =>pqh_dfs_shd.g_old_rec.dflt_dist_percentage
 ,p_project_id_o                  =>pqh_dfs_shd.g_old_rec.project_id
 ,p_award_id_o                    =>pqh_dfs_shd.g_old_rec.award_id
 ,p_task_id_o                     =>pqh_dfs_shd.g_old_rec.task_id
 ,p_expenditure_type_o            =>pqh_dfs_shd.g_old_rec.expenditure_type
 ,p_organization_id_o             =>pqh_dfs_shd.g_old_rec.organization_id
 ,p_object_version_number_o       =>pqh_dfs_shd.g_old_rec.object_version_number
 ,p_cost_allocation_keyflex_id_o  =>pqh_dfs_shd.g_old_rec.cost_allocation_keyflex_id
      );
Line: 241

End post_update;
Line: 364

  pqh_dfs_bus.update_validate(p_rec);
Line: 368

  pre_update(p_rec);
Line: 372

  update_dml(p_rec);
Line: 376

  post_update(p_rec);