Automic Workload Automation

 View Only
Expand all | Collapse all

Getting objects currently running in a QUEUE?

  • 1.  Getting objects currently running in a QUEUE?

    Posted Feb 23, 2018 04:37 AM
    Hi,

    Is there a way of getting the currently active objects under a queue name like QUEUE_ONE? either by RunID or object name.

    Thanks
    Chris


  • 2.  Getting objects currently running in a QUEUE?

    Posted Feb 23, 2018 04:51 AM
    Hi

    Hmmmm not per script to my knowledge, but you can use an SQLI VARA with following statement:
    - replace CLIENT_QUEUE with the queue of your choice
    select eh_name, eh_otype, eh_ah_idnr as 'RunId', EH_Status, EH_Queue from eh
    where EH_Queue = 'CLIENT_QUEUE'

    cheers, Wolfgang



  • 3.  Getting objects currently running in a QUEUE?
    Best Answer

    Posted Feb 23, 2018 04:56 AM
    That's great thanks.


  • 4.  Getting objects currently running in a QUEUE?

    Posted Feb 26, 2018 03:17 PM
    You' re welcome :-)