Category: PIPER-Rx Reports (Free) Name: FCR002-11 Concurrent Requests Detailed ReportDefFileName: .\FCR002-11 Concurrent Requests Detailed.fr3 ===Begin Comments=== Copyright (C) 2009 G Piper This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. a copy of the GNU Affero General Public Licenses provided is part of the down load Terms and Conditions available on our site www.piper-rx.com or you can refere to www.gnu.org/licenses/gpl.html ===End Comments=== ===Begin SQL=== -- **************************************************** -- ** PIPER-RX - Free Reports -- ** -- ** Copyright (C) 2009 G.Piper -- ** -- ** Detalied Concurrent Manager Queue Content list -- ** -- ** ------------------------------------------------- -- ** Version 1.0 May-09 G.Piper Initial Creation -- ** Version 1.1 Aug-09 G.Piper Referenced GV$DATABASE -- **************************************************** SELECT report_headings.report_date, report_headings.sid_name, fcwr.concurrent_queue_name ||' ('|| fcq.running_processes||')' manager, fcq.sleep_seconds sleep_seconds, fcq.cache_size cache, fcwr.request_id, fu.user_name, fcwr.user_concurrent_program_name, fcwr.argument_text, decode(phase_code, 'R', 'Running', 'P', 'Pending', 'Other') phase_code, -- Status decode(fcwr.hold_flag, 'Y', 'Hold', null) on_hold, decode(sign(fcwr.requested_start_date - sysdate), 1, 'Schedled', null) scheduled, to_char(fcwr.requested_start_date, 'DD-Mon-YY HH24:MI') requested_start_date, to_char(fcwr.actual_start_date, 'DD-Mon-YY HH24:MI') actual_start_date FROM apps.fnd_concurrent_worker_requests fcwr, applsys.fnd_concurrent_queues fcq, applsys.fnd_user fu, ( SELECT to_char(sysdate, 'DD-Mon-YY HH24:MI') report_date, vd.name sid_name FROM gv$database vd WHERE vd.inst_id = 1 ) report_headings WHERE fcwr.concurrent_queue_id = fcq.concurrent_queue_id and fcwr.requested_by = fu.user_id and fcwr.concurrent_queue_name != 'FNDCRM' ORDER by fcwr.concurrent_queue_name, fcwr.request_id desc ===End SQL=== ===Begin Report Definition===