Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. -- Concurrent request performance and queue analysis
  2. -- Alan Telford 06 Aug 2019
  3. -- Oracle EBS R12.1.3
  4. SELECT
  5. requested_start_date,
  6. actual_start_date,
  7. actual_completion_date,
  8. requested_start_date,
  9. round(24 *(actual_start_date - requested_start_date),2)*60 queue_time,
  10. round(24*(actual_completion_date - actual_start_date),2)*60 run_time_min,
  11. priority,
  12. concurrent_program_id
  13. ,ARGUMENT_TEXT
  14. , requestor
  15. , program_short_name
  16. , program
  17. FROM
  18. fnd_conc_req_summary_v
  19. WHERE
  20. -- updat the concurrent short program name as appropriate
  21. program_short_name = 'GLPPOSS'
  22. AND actual_start_date > SYSDATE - 0.5
  23. order by
  24. actual_start_date;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement