New Year Sale 2026! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Salesforce MCE-Dev-201 Exam - Topic 3 Question 2 Discussion

Actual exam question for Salesforce's MCE-Dev-201 exam
Question #: 2
Topic #: 3
[All MCE-Dev-201 Questions]

A customer wants a list of subscribers who were sent an email within the past 12 months.

How shouldthis request be completed?

Show Suggested Answer Hide Answer
Suggested Answer: C

To get a list of subscribers who were sent an email within the past 12 months, you should query the Job and Sent data views. These data views contain detailed information about email sends and can be used to filter subscribers based on the send date.

SQL Query Example:

SELECT s.SubscriberKey FROM _Sent s JOIN _Job j ON s.JobID = j.JobID WHERE j.SendDate >= DATEADD(month, -12, GETDATE())

: Salesforce Data Views


Contribute your Thoughts:

0/2000 characters
Mirta
7 days ago
Hmm, I'd go with C. Who wants to deal with SOAP APIs these days?
upvoted 0 times
...
Ryann
12 days ago
A) Creating a measure with the criteria is a bit convoluted, don't you think?
upvoted 0 times
...
Tequila
17 days ago
D) Locating the email sends in the Tracking tab is the easiest way to get this done.
upvoted 0 times
...
Lashon
22 days ago
B) Running a tracking extract via the SOAP API would give me the most detailed information.
upvoted 0 times
...
Kirk
28 days ago
Running a tracking extract via the SOAP API seems like a valid approach, but I feel like it might be more complex than necessary.
upvoted 0 times
...
Louvenia
1 month ago
I remember we discussed using the Tracking tab in Email Studio, but I can't recall if it gives a complete list like this.
upvoted 0 times
...
Josephine
1 month ago
I'm leaning towards option C as well. Querying the data views feels like the most reliable and efficient approach for this type of request.
upvoted 0 times
...
Reyes
1 month ago
The Tracking tab in Email Studio could work, but I'm not sure how scalable that would be for a large subscriber base. I think the database query route is the way to go here.
upvoted 0 times
...
Haley
2 months ago
Option A with the measure calculation seems a bit convoluted. I'd probably try to avoid that if possible and stick to a more direct database query.
upvoted 0 times
...
Clarinda
2 months ago
Hmm, I'm not sure about this one. I'd have to double-check the documentation to see if the SOAP API option is viable. Might be worth exploring that as well.
upvoted 0 times
...
Elizabeth
2 months ago
I think I'd go with option C. Querying the Job and Sent data views seems like the most straightforward way to get the subscriber list.
upvoted 0 times
...
Raul
2 months ago
I'm not sure about the exact days, but isn't 565 days a bit too much for just 12 months?
upvoted 0 times
...
Cyndy
2 months ago
C) Query against the Job and Sent data views seems like the most straightforward approach.
upvoted 0 times
...
Samira
2 months ago
I think option C sounds familiar, like something we practiced with SQL queries in class.
upvoted 0 times
...

Save Cancel