---
sourceDocument: 호주 대화형 인터페이스
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/conversational-interfaces

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 대화형 인터페이스

ft:clusterId :

    - convint

bundleId :

    - convint

workflow :

    - Platform


---

# 청구 문제에 대한 큐 생성

# 청구 문제에 대한 큐 생성 {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

청구 문제를 라우팅하는 채팅 서비스 채널에 대한 큐를 생성합니다.

## 시작하기 전에

필요한 역할: awa_admin 또는 admin

## 프로시저

1. 큐 목록 보기에서 신규를 클릭합니다.
2. 나열된 필드에 다음 정보를 입력합니다.  
   * 이름: 청구 지원
   * 서비스 채널: 채팅
   * 조건 모드: 고급
   {#billing-context-example__ul_hjh_xm4_dhb}
3. 스크립트 필드에 다음 스크립트를 입력합니다.  

       (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 == 'billing')
       			return true;
       	}
       	return false;
       })(current);

4. 제출을 클릭합니다.

