SELECT request_id,
phase_code,
status_code,
user_name,
user_concurrent_queue_name
FROM fnd_concurrent_worker_requests fcwr,
fnd_concurrent_queues_tl fcqt,
fnd_user fu
WHERE (fcwr.phase_code = 'P' OR fcwr.phase_code = 'R')
AND fcwr.hold_flag != 'Y'
AND fcwr.requested_start_date <= SYSDATE
AND fcwr.concurrent_queue_id = fcqt.concurrent_queue_id
AND fcwr.queue_application_id = fcqt.application_id
AND fcqt.LANGUAGE = 'US'
AND fcwr.requested_by = fu.user_id
ORDER BY 5
Query for Pending/Running Requests in Oracle Apps
Posted by
Unknown
| Published on 19 February, 2015
| Categories:
SQL Quries for Apps
| Follow us on Facebook | Twitter | Youtube

No comments:
Post a Comment