---
sourceDocument: Australia Conversational Interfaces
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/pt-BR/conversational-interfaces

 Release :

    - australia

ft:locale :

    - pt-BR

ft:publication_title :

    - Australia Conversational Interfaces

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# Create a queue for product issues

# Create a queue for product issues {#ariaid-title1}

* Versão de lançamento: Australia
* 
* Atualizado 12 de mar. de 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 min. de leitura

Create a queue for the Chat service channel that routes product issues.

## Antes de Iniciar

Role required: awa_admin or admin

## Procedimento

1. Navigate to the queue settings through one of the following navigation paths:
   * AllAdvanced Work AssignmentHome.

     In the Essential settings section, select Set up queues.
   * AllAdvanced Work AssignmentQueues.
   {#product-context-example__choices_nt4_2f3_tvb}
2. Select New.
3. Enter the following information in the fields listed:  
   * Name: Product Support
   * Service channel: Chat
   * Condition mode: Advanced
   {#product-context-example__ul_wcw_lm4_dhb}
4. In the Script field, enter this script:  

       (function executeCondition(/* glide record */ current) {  
       	var contextTable = current.getValue('context_table');
       	var interactionBlobRecord = new GlideRecord(contextTable);
       	interactionBlobRecord.addQuery('sys_id',current.getValue('context_document'));
       	interactionBlobRecord.query();

       	if(interactionBlobRecord.next()){
       		var jsonBlob = JSON.parse(interactionBlobRecord.getValue('value'));
       		if(jsonBlob.liveagent_csp_category == 'product')
       			return true;
       	}
       	return false;
       })(current);

5. Click Submit.

