Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

David_Loyd
David_Loyd
Online

Badges

Badges
22

Accepted Solutions

Accepted Solutions
23

Likes Received

Likes Received
70

Posts

Posts
82

Discussions

Discussions
6

Questions

Questions
76

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by David_Loyd
Customize the badges you want to showcase on your profile
Re: Concatenate the segment code of parent segment with the child segment - Adobe Campaign 18-01-2022
Have you double checked the usage of quotes? Sometimes you have to go into the expression editor to check them. The visual is sometimes odd. The error you have looks like your quotes are in the wrong place.I believe you want something like this.'[targetData/@segmentCode]' + 'Seg_A'

Views

388

Likes

0

Replies

3
Re: What is the best way to study for the AD0-314 exam? - Adobe Campaign 18-01-2022
If you have been using the tool for about 2 years everyday then you will be fine. My only caution is the questions are very specific. So build a few workflows with unions, dedups, intersections, and anything else you can do to prep. The wording is very specific so try to remember every click and the sequence of screens you go through to build an enrichment ect... Also the sample exam is a good place to starthttps://sei.caveon.com/launchpad/ad4-e314-campaign-classic-business-practitioner-certifie...

Views

168

Likes

2

Replies

0
Re: Ho to get a particular set of values from another set of values - Adobe Campaign 18-01-2022
Its not clear what you want. Initially you said "filter out all the records", then you are saying you want to keep the ones that get filtered out. Do you want to aggregate the values? Or do you want to market to one person? What is the result you want? If you want to aggregate check out step 1 here:https://experienceleague.adobe.com/docs/campaign-classic/using/automating-with-workflows/use-cases/data-management/using-aggregates.html?lang=en instead of Max(), you can use Count(). That will give y...

Views

427

Likes

0

Replies

1
Re: Ho to get a particular set of values from another set of values - Adobe Campaign 18-01-2022
Split on customer TYPE (not customer ID) is what I was recommending. Based on your data set seems you only want "Full Time"

Views

438

Like

1

Replies

3
Re: Ho to get a particular set of values from another set of values - Adobe Campaign 18-01-2022
Have you tried a split on customer type then a dedup on customer id? in the dedup you can use the advanced tab to keep the oldest or newest based on the date.

Views

443

Likes

0

Replies

5
Re: Query for filtering recipient - Adobe Campaign 18-01-2022
Delivery-> Delivery Scheduling -> Contact Date = is the date the email was sent to the recipient.broadLogRcp -> Event Date = is the date of an Open or a Click. broadLogRcp -> Url - > Type = Lets you pick between Opens or Clicks If you use DateOnly(@eventDate) equal to DateOnly(DaysAgo(3)), this is only getting you that 1 day 3 days ago. If you want all records in the last 3 days DateOnly(@eventDate) is on or after DateOnly(DaysAgo(3)) If you are not sure of the event date, that can be an issue. ...

Views

274

Like

1

Replies

4
Re: Query for filtering recipient - Adobe Campaign 17-01-2022
Have you double checked you have accounts created for the past 30 days? Can you see that in the data schema of the table? Unless someone created that specific data field for your instance you may need to use a different field. The date a recipient profile is created is called creation date. Event dates are usually open or click dates (of an email). Is Event Date you are using on the trackinglogsRcp? Or is it a custom schema? What Event Date are you using? When using the DaysAgo() function be awa...

Views

285

Like

1

Replies

6
Re: Message center, event is stuck on pending with error retry - Adobe Campaign 15-01-2022
Seems like an MTA issue. Submit a ticket to support to verify that the MTA's are processing requests and sending them through the SMTP.

Views

23.2K

Like

1

Replies

0
Re: Message center, event is stuck on pending with error retry - Adobe Campaign 13-01-2022
Are any delivery templates working? If everything is stuck in pending I would look at your typology rules in properties. Its possible its stuck in pending because it can't find it's way out through the MTA.

Views

23.2K

Likes

0

Replies

2
Re: DCE - Select related recipient fields - Adobe Campaign 13-01-2022
The DCE is somewhat limited. If you are building an email, then you would want to make sure you have enriched all your data in the workflow from other tables. Then can you use <%= targetData.columnName %> to pull in data from the workflow. If you are building a web page you need to run a query as your first step (in XML) then add it to the CTX web variable, to be able to use it in a web page.web app: https://blog.floriancourgey.com/2018/07/use-the-context-in-web-apps-in-adobe-campaignemails: htt...

Views

130

Likes

2

Replies

0