Below the Query to get the Concurrent Requests of given Concurrent Program
SELECT fcpt.user_concurrent_program_name,
fcr.request_id,
fcr.parent_request_id,
fu.description,
frt.responsibility_name,
phase_lookup.meaning,
status_lookup.meaning,
fcr.requested_start_date,
fcr.actual_start_date,
fcr.actual_completion_date,
fcr.argument_text,
fcr.logfile_name,
fcr.outfile_name
FROM apps.fnd_concurrent_programs_tl fcpt,
apps.fnd_concurrent_requests fcr,
apps.fnd_lookups status_lookup,
apps.fnd_lookups phase_lookup,
apps.fnd_user fu,
apps.fnd_responsibility_tl frt
WHERE fcpt.concurrent_program_id = fcr.concurrent_program_id
AND fcpt.application_id = fcr.program_application_id
AND fcr.status_code = status_lookup.lookup_code
AND status_lookup.lookup_type = 'CP_STATUS_CODE'
AND fcr.phase_code = phase_lookup.lookup_code
AND phase_lookup.lookup_type = 'CP_PHASE_CODE'
AND fcr.requested_by = fu.user_id
AND fcr.responsibility_application_id = frt.application_id
AND fcr.responsibility_id = frt.responsibility_id
AND frt.language = USERENV('LANG')
:P_User_Concurrent_Program_Name
AND fcpt.language = USERENV('LANG')
AND fcpt.language = USERENV('LANG')
ORDER BY actual_completion_date DESC
***Please leave a comment***
No comments:
Post a Comment
Please provide your valuable feedback which helps us to improve the content.