The _SMSMessageTracking
data view in Salesforce Marketing Cloud (SFMC) provides a comprehensive record of all SMS interactions sent or received via MobileConnect. This data view is crucial for auditing, reporting, and analyzing SMS campaign performance, whether using dedicated or shared short/long codes.
In this blog, we’ll break down every field in _SMSMessageTracking
, outline its use cases, and provide SQL queries to help you monitor SMS activity, troubleshoot delivery issues, and optimize engagement.
What is the _SMSMessageTracking Data View?
This data view tracks each SMS message sent and received by your Marketing Cloud account. It includes mobile numbers, message text, send/delivery statuses, timestamps, keywords, journey IDs, and campaign identifiers.
Key Benefits of _SMSMessageTracking Data View
- Detailed Send/Receive History: Tracks every inbound and outbound message.
- Journey Attribution: Connect SMS messages to Journey Builder activities.
- Delivery Analysis: Know which messages were delivered, undelivered, or failed.
- Troubleshooting Support: Use metadata like SendID, SMSJobID, and InvalidationCode for debugging.
Fields in _SMSMessageTracking Data View & Their Uses
Field | Type | Description & Use Case |
---|---|---|
Mobile | Phone | Mobile number of the subscriber. Core for personalization and filtering. |
SubscriberKey | Text | External ID for the subscriber. Used for joining with other data views. |
SubscriberID | Number | Internal ID for the subscriber. |
MobileMessageTrackingID | Number | Unique ID for message tracking. Useful for audit trails. |
EID | Number | Enterprise ID. Used in multi-tenant setups. |
MID | Number | Member (Business Unit) ID. |
MessageID | Number | Internal message ID for the SMS. |
KeywordID | Text | ID of the keyword used in the message. |
CodeID | Text | Unique identifier for the short/long code. |
ConversationID | Text | Used to track message threads. |
CampaignID | Number | ID of the SMS campaign tied to the message. |
Sent | Boolean | If the message was sent. (1 = true, 0 = false) |
Delivered | Boolean | If the message was delivered successfully. |
Undelivered | Boolean | If the message failed to deliver. |
Outbound | Boolean | True for messages sent from SFMC. |
Inbound | Boolean | True for messages received by SFMC. |
CreateDateTime | DateTime | When the message record was created. |
ModifiedDateTime | DateTime | When the record was last updated. |
ActionDateTime | DateTime | Actual timestamp of delivery or failure. |
MessageText | Text | Content of the SMS message. Important for compliance reviews. |
IsTest | Boolean | True if the message was a test. |
MobileMessageRecurrenceID | Number | ID of the recurrence schedule (for recurring messages). |
ResponseToMobileMessageTrackingID | Number | Tracks responses to specific messages. |
IsValid | Boolean | True if the message is valid. |
InvalidationCode | Number | Reason for message invalidation. |
SendID | Number | Send identifier for the message. |
SendSplitID | Number | ID if the message was part of a split test. |
SendSegmentID | Number | Segment tied to the SMS message. |
SendJobID | Number | Job ID of the send. |
SendGroupID | Number | Group ID of the send. |
SendPersonID | Number | Internal reference to the sender. |
SMSStandardStatusCodeId | Number | Delivery status code from SFMC. |
Description | Text | Status code description. |
Name | Text | Internal message name. |
ShortCode | Text | Short or long code used for the send. |
SharedKeyword | Text | Shared keyword involved in the message. |
Ordinal | Number | Used for multi-part messages (0, 1, 2…). |
FromName | Text | Sender name (max 11 characters). |
JBActivityID | Text | Journey activity ID that triggered the send. |
JBDefinitionID | Text | Journey ID that the message was sent from. |
SMSJobID | Text | Unique ID for each SMS job. |
SMSBatchID | Number | Batch ID linked to the SMS job. |
When and Why to Use _SMSMessageTracking Data View?
When to Use?
- When tracking SMS delivery status across campaigns.
- To audit messages sent via Journey Builder or campaigns.
- When identifying failed or undelivered SMS messages.
- To analyze content, time, and behavior trends in MobileConnect.
Why Use It?
- Delivery Optimization: Ensure messages are reaching users.
- Troubleshooting: Find out why messages failed.
- Engagement Monitoring: Understand who responded and how.
- Campaign Analysis: Track performance of SMS sends by campaign or journey.
10 Example Scenarios and Queries
1. Retrieve All Delivered Messages in the Last 7 Days
SELECT SubscriberKey, Mobile, MessageText, ActionDateTime
FROM _SMSMessageTracking
WHERE Delivered = 1
AND ActionDateTime >= DATEADD(day, -7, GETDATE())
Use Case: Confirm successful sends.
2. Find Undelivered Messages and Reasons
SELECT Mobile, MessageText, InvalidationCode, Description
FROM _SMSMessageTracking
WHERE Undelivered = 1
Use Case: Troubleshoot delivery issues.
3. Total Messages Sent by Keyword
SELECT SharedKeyword, COUNT(*) AS TotalSends
FROM _SMSMessageTracking
WHERE Outbound = 1
GROUP BY SharedKeyword
Use Case: Measure campaign performance by keyword.
4. Messages Sent from a Specific Journey
SELECT MessageText, ActionDateTime, JBDefinitionID
FROM _SMSMessageTracking
WHERE JBDefinitionID = 'xxxxx-xxxxx-xxxxx'
Use Case: Attribute SMS traffic to a journey.
5. Join with Subscriber Data by SubscriberKey
SELECT s.SubscriberKey, s.EmailAddress, t.MessageText, t.ActionDateTime
FROM _Subscribers s
JOIN _SMSMessageTracking t
ON s.SubscriberKey = t.SubscriberKey
Use Case: Build a full view of multichannel subscriber engagement.
6. Find Test Messages
SELECT Mobile, MessageText
FROM _SMSMessageTracking
WHERE IsTest = 1
Use Case: Exclude tests from performance reports.
7. SMS Messages by Short Code
SELECT ShortCode, COUNT(*) AS Total
FROM _SMSMessageTracking
GROUP BY ShortCode
Use Case: Identify which codes are used most.
8. Track Multi-Part Message Distribution
SELECT Ordinal, COUNT(*) AS MessageCount
FROM _SMSMessageTracking
GROUP BY Ordinal
Use Case: Analyze multipart SMS usage.
9. Messages Received by Subscribers (Inbound)
SELECT SubscriberKey, Mobile, MessageText, ActionDateTime
FROM _SMSMessageTracking
WHERE Inbound = 1
Use Case: Audit user responses.
10. Retrieve Failed Messages by Campaign ID
SELECT Mobile, MessageText, CampaignID, Description
FROM _SMSMessageTracking
WHERE Undelivered = 1
AND CampaignID IS NOT NULL
Use Case: Evaluate performance of a specific SMS campaign.
Conclusion
The _SMSMessageTracking
data view is your SMS performance powerhouse in Salesforce Marketing Cloud. It gives you full visibility into send and receive activity, delivery results, and SMS journey attribution. Perfect for marketing teams running SMS campaigns through Journey Builder or MobileConnect campaigns.
Use it alongside _Subscribers
, Journey views, and campaign data to unify mobile and email insights into a powerful engagement dashboard.