Pages

OracleEBSpro is purely for knowledge sharing and learning purpose, with the main focus on Oracle E-Business Suite Product and other related Oracle Technologies.

I'm NOT responsible for any damages in whatever form caused by the usage of the content of this blog.

I share my Oracle knowledge through this blog. All my posts in this blog are based on my experience, reading oracle websites, books, forums and other blogs. I invite people to read and suggest ways to improve this blog.


Wednesday, August 17, 2016

SQL to Derive Concurrent Managers with running process details

By using below sql, you will be able to derive concurrent managers running in the system.

Also you will be able to collect how many processes are running under each concurrent manager and in which application.

SELECT fat.application_name,
       DECODE (
          CONCURRENT_QUEUE_NAME,
          'FNDICM', 'Internal Manager',
          'FNDCRM', 'Conflict Resolution Manager',
          'AMSDMIN', 'Marketing Data Mining Manager',
          'C_AQCT_SVC', 'C AQCART Service',
          'FFTM', 'FastFormula Transaction Manager',
          'FNDCPOPP', 'Output Post Processor',
          'FNDSCH', 'Scheduler/Prereleaser Manager',
          'FNDSM_AQHERP', 'Service Manager: AQHERP',
          'FTE_TXN_MANAGER', 'Transportation Manager',
          'IEU_SH_CS', 'Session History Cleanup',
          'IEU_WL_CS', 'UWQ Worklist Items Release for Crashed session',
          'INVMGR', 'Inventory Manager',
          'INVTMRPM', 'INV Remote Procedure Manager',
          'OAMCOLMGR', 'OAM Metrics Collection Manager',
          'PASMGR', 'PA Streamline Manager',
          'PODAMGR', 'PO Document Approval Manager',
          'RCVOLTM', 'Receiving Transaction Manager',
          'STANDARD', 'Standard Manager',
          'WFALSNRSVC', 'Workflow Agent Listener Service',
          'WFMLRSVC', 'Workflow Mailer Service',
          'WFWSSVC', 'Workflow Document Web Services Service',
          'WMSTAMGR', 'WMS Task Archiving Manager',
          'XDP_APPL_SVC', 'SFM Application Monitoring Service',
          'XDP_CTRL_SVC', 'SFM Controller Service',
          'XDP_Q_EVENT_SVC', 'SFM Event Manager Queue Service',
          'XDP_Q_FA_SVC', 'SFM Fulfillment Actions Queue Service',
          'XDP_Q_FE_READY_SVC', 'SFM Fulfillment Element Ready Queue Service',
          'XDP_Q_IN_MSG_SVC', 'SFM Inbound Messages Queue Service',
          'XDP_Q_ORDER_SVC', 'SFM Order Queue Service',
          'XDP_Q_TIMER_SVC', 'SFM Timer Queue Service',
          'XDP_Q_WI_SVC', 'SFM Work Item Queue Service',
          'XDP_SMIT_SVC', 'SFM SM Interface Test Service')
          "Concurrent Manager",
       Max_Processes,
       Running_Processes,
       fcq.last_update_date,
       fcq.creation_date
  FROM Apps.Fnd_Concurrent_Queues Fcq, Apps.Fnd_Application_Tl Fat
 WHERE     Fcq.Application_Id = Fat.Application_Id
       AND CONCURRENT_QUEUE_NAME IN
              ('FNDICM',
               'FNDCRM',
               'AMSDMIN',
               'C_AQCT_SVC',
               'FFTM',
               'FNDCPOPP',
               'FNDSCH',
               'FNDSM_AQHERP',
               'FTE_TXN_MANAGER',
               'IEU_SH_CS',
               'IEU_WL_CS',
               'INVMGR',
               'INVTMRPM',
               'OAMCOLMGR',
               'PASMGR',
               'PODAMGR',
               'RCVOLTM',
               'STANDARD',
               'WFALSNRSVC',
               'WFMLRSVC',
               'WFWSSVC',
               'WMSTAMGR',
               'XDP_APPL_SVC',
               'XDP_CTRL_SVC',
               'XDP_Q_EVENT_SVC',
               'XDP_Q_FA_SVC',
               'XDP_Q_FE_READY_SVC',
               'XDP_Q_IN_MSG_SVC',
               'XDP_Q_ORDER_SVC',
               'XDP_Q_TIMER_SVC',
               'XDP_Q_WI_SVC',
               'XDP_SMIT_SVC');

References:
http://allaboutoracleapplication.blogspot.com/2014/08/sql-to-derive-concurrent-managers-with.html

No comments:

Post a Comment