Select B.user_concurrent_program_name,C.user_name,D.responsibility_name, A.*
from apps.fnd_concurrent_requests A, apps.fnd_concurrent_programs_tl B, Apps.fnd_user C, apps.fnd_responsibility_tl D
where 1=1
and B.user_concurrent_program_name like
'<Enter the concurrent program name>'
and B.concurrent_program_id=A.concurrent_program_id
and A.requested_by=C.user_id
and A.responsibility_id=D.responsibility_id
and b.language=userenv('LANG')
and d.language=userenv('LANG')
order by request_date desc
---------------------------------------
Including the Out put views
SELECT E.FILE_NAME,B.USER_CONCURRENT_PROGRAM_NAME,C.USER_NAME,D.RESPONSIBILITY_NAME, A.*
from apps.fnd_concurrent_requests A, apps.fnd_concurrent_programs_tl B, Apps.fnd_user C, apps.fnd_responsibility_tl D , apps.FND_CONC_REQ_OUTPUTS_V E
WHERE 1=1
and B.user_concurrent_program_name like 'Hologic Printed Purchase Order Report'
and B.concurrent_program_id=A.concurrent_program_id
AND A.REQUESTED_BY=C.USER_ID
and c.user_name ='LMEDEIROS'
AND A.RESPONSIBILITY_ID=D.RESPONSIBILITY_ID
AND E.REQUEST_ID(+)=A.REQUEST_ID
and b.language=userenv('LANG')
and d.language=userenv('LANG')
order by request_date ;
1 comment:
Hi Dear,
This was really useful, Please keep posting..
Bye..
Post a Comment