Query Count the number of reports registered In Each Module

Query To Count the number of reports registered In Each Module

SELECT fa.application_short_name,
Decode (fcpv.execution_method_code, ‘B’, ‘Request Set Stage Function’,
‘Q’, ‘SQLPlus’, ‘H’, ‘Host’, ‘L’, ‘SQLLoader’,
‘A’, ‘Spawned’,
‘I’, ‘PL/SQL Stored Procedure’,
‘P’, ‘Oracle Reports’,
‘S’, ‘Immediate’,
fcpv.execution_method_code)
exe_method,
Count (concurrent_program_id),COUNT
FROM fnd_concurrent_programs_vl fcpv,
fnd_application fa
WHERE fcpv.application_id = fa.application_id
AND fcpv.execution_method_code = ‘P’ –“Write your execution method code Here”
GROUP BY fa.application_short_name,
fcpv.execution_method_code
ORDER BY 1;

Read More:

Query To Find Scheduled Concurrent Request

Query To Check Scheduled Concurrent Requests

Query To Find All Reports Status With User Name

Query To Count Pending Request

Query To find Concurrent Program Name, Phase Code And Status Code for a given Request ID

Query To Find a Concurrent Program Enabled with Trace

Query To Find Request Submitted By User

Query To Find Pending Request in Oracle Apps dba

Query To Find the Reports Finished With Error Code In Oracle Apps DBA

Terminating Report From Backend

Query To Check Total Scheduled Requests

Query To Check List Of Running Requests

Leave a Comment