Wednesday 14 July 2021

Query to findout Workflow Listeners Status

          SELECT   DISTINCT fcq.concurrent_queue_id,
                           fcq.concurrent_queue_name,
                           fcq.user_concurrent_queue_name,
                           fsc.component_status
         FROM     apps.fnd_concurrent_queues_vl fcq,
                  fnd_svc_components fsc
         WHERE    fsc.concurrent_queue_id = fcq.concurrent_queue_id
         AND      fcq.concurrent_queue_name IN ('WFALSNRSVC',
                                                'WFMLRSVC',
                                                'WFWSSVC')
         ORDER BY fcq.concurrent_queue_id;

No comments:

Post a Comment