중요 경보에 대한 신호음 구성

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 2분
  • 애플리케이션에서 ITSM 모바일 에이전트 중요한 알림에 대해 선호하는 신호음을 선택합니다.

    시작하기 전에

    필요한 역할: 관리자

    프로시저

    1. 다음으로 이동 모두 > 시스템 정의 > 스크립트 포함.
    2. 스크립트 목록에서 검색하여 선택합니다 CriticalPushPayloadBuilder .
      선택한 스크립트 CriticalPushPayloadBuilderITSM 모바일 에이전트 애플리케이션 범위 내에 있는지 확인합니다.
    3. CriticalPushPayloadBuilder 기록을 열고 원하는 신호음 이름으로 스크립트를 편집합니다.
      var CriticalPushPayloadBuilder = Class.create();
      CriticalPushPayloadBuilder.prototype = {
          initialize: function(currentGR, json, attributes) {
              this.currentGR = currentGR;
              this.json = json;
              this.attributes = attributes;
          },
          buildJSON: function() {
              if (this.attributes == null || this.attributes.isCritical == null || !(this.attributes.isCritical == "true"))
                  return this.json;
              this.json["sncGoogleKeys"] = {
                  "android": {
                      "priority": "high"
                  },
                  "priority": "high"
              };
              this.json["aps"]["sound"] = {
                  "critical": 1,
                  "name": "NotificationAlert-9-Short.caf",
                  "volume": 1
              };
              return this.json;
          },
          type: 'CriticalPushPayloadBuilder'
      };
      아래 옵션에서 벨소리를 선택할 수 있습니다.
      • NotificationAlert-1.caf
      • NotificationAlert-2.caf
      • 알림 경보-3.caf
      • NotificationAlert-4.caf
      • NotificationAlert-5.caf
      • NotificationAlert-6.caf
      • 알림 경보-7.caf
      • 알림 경보-8.caf
      • 알림 경보-9.caf
      • 알림 경보-10.caf
      • NotificationAlert-11.caf
      • 알림 경보-12.caf
      • 알림 경보-13.caf
      • 알림 경보-14.caf
    4. 업데이트를 선택합니다.