Loading
Unified Messaging
목차
필터 선택

          결과 없음
          결과 없음
          몇 가지 검색 팁

          키워드의 맞춤법을 확인하십시오.
          더 일반적인 검색 용어를 사용하십시오.
          필터 수를 줄여 검색 범위를 확장하십시오.

          전체 Salesforce 도움말 검색
          Cross-Cloud Conversation and Messaging Sample Queries

          Cross-Cloud Conversation and Messaging Sample Queries

          Use these sample queries to identify situations in which a conversation or message was transferred from one cloud to another.

          Available in: Lightning Experience

          Available in:

          • Enterprise and Unlimited Editions for Service Cloud
          • Growth or Advanced Editions Marketing Cloud Next
          • Pro+, Corporate+, and Enterprise+ Editions for Marketing Cloud Engagement

          Inbound Conversation Trigger Results

          This query groups information by the associated number or channel. Information returned includes the number of bot user messaging sessions, number of user messaging sessions, and total number of transferred messaging sessions. You can filter using a specified time period.

          SELECT
              COUNT(*)
          
          FROM 
              ssot__MessageEngagement__dlm
              
          WHERE 
              ssot__EngagementChannelActionId__c = 'INBOUND_MO' AND
              ssot__EngagementNotesTxt__c IN ('SERVICE_CLOUD', 'DIGITAL_MARKETING') AND
              ssot__EngagementDateTm__c BETWEEN from_iso8601_timestamp('START_DATE') AND 
              from_iso8601_timestamp('END_DATE')

          Inbound Conversation History

          Information returned includes a specified phrase, cross-cloud list of previous messages in the session, journey, associated number or channel, and event timestamp. You can filter using a specified time period.

          SELECT
              COUNT(*)
              
          FROM 
              ssot__MessageEngagement__dlm
              
          WHERE ssot__EngagementChannelActionId__c = 'INBOUND_MO' AND
              ssot__MessageText__c = 'HELP' AND
              ssot__EngagementDateTm__c BETWEEN from_iso8601_timestamp('START_DATE') AND 
              from_iso8601_timestamp('END_DATE')

          Message Interaction Statistics

          This query groups results by cloud. You can also group results by channel or source. Information returned includes the number of sent messages, number of delivered messages, number of read messages, and associated number or channel. You can filter using a specified time period.

          SELECT 
              ssot__WorkflowId__c,
              COUNT(*)
              
          FROM
              ssot__MessageEngagement__dlm
              
          WHERE 
              ssot__EngagementChannelActionId__c = 'DR' AND
              ssot__MessageRecipientSendStatus__c = 'DELIVERED' AND
              ssot__EngagementDateTm__c BETWEEN from_iso8601_timestamp('START_DATE') AND 
              from_iso8601_timestamp('END_DATE')
              
          GROUP BY 
              ssot__WorkflowId__c

          New Conversation Messages versus Session Messages

          This query groups results by WhatsApp template type and by cloud. Information returned includes the total number of sent messages, number of delivered messages, number of read messages, and associated number or channel. You can filter using a specified time period.

          SELECT 
              COUNT(*)
              
          FROM 
              ssot__MessageEngagement__dlm
              
          WHERE 
              ssot__EngagementChannelActionId__c = 'INBOUND_MO' AND 
              ssot__EngagementNotesTxt__c IN ('SERVICE_CLOUD', 'DIGITAL_MARKETING') AND 
              ssot__EngagementDateTm__c BETWEEN from_iso8601_timestamp('START_DATE') AND 
              from_iso8601_timestamp('END_DATE')
           
          로드 중
          Salesforce Help | Article