You are on page 1of 1

---------Oracle sql query for concurrent details:-----------

Select request_id,
req.CONCURRENT_PROGRAM_ID,
prog.DESCRIPTION,
Request_date, printer,
number_of_copies,
usr.user_name
from fnd_concurrent_requests req,
fnd_concurrent_programs_tl prog,
fnd_user usr
--where printer <> 'noprint'
--and requested_start_date > '14-AUG-06'
where status_code = 'C'
--and number_of_copies > 0
and prog.CONCURRENT_PROGRAM_ID = req.CONCURRENT_PROGRAM_ID
and prog.language = 'US'
and req.requested_by = usr.user_id
and request_id in (1775756,1775757,1775843)
order by request_date desc

You might also like