Operation Details
Description: Returns a list of work queue names which are associated with the search name entered. Search is performed based on exact match of the name criteria.
Sterotype: nsmulti
SQL
SELECT
  workQueueID,
  name
INTO
  :workQueueID,
  :name 
FROM
  WorkQueue 
WHERE upper(name) = :name 
  OR :name IS NULL