Category: PIPER-RX Managing Workflows Paper 2008 Name: MWP001 - Managing Workflows - Activity Counts ReportDefFileName: .\MWP001 - Managing Workflows - Activity Counts.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 - Managing Workflows Paper -- ** -- ** Copyright (C) 2008 G.Piper -- ** -- ** Workflow activity counts -- ** -- ** Version 1.0 Nov-08 G.Piper - PIPER-Rx -- **************************************************** SELECT to_char(sysdate, 'DD-Mon-YY HH24:MI') report_date, wias.activity_status, count(*) activity_count FROM applsys.wf_item_activity_statuses wias GROUP by wias.activity_status ORDER by count(*) DESC ===End SQL=== ===Begin Report Definition===