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
Event not showing up - Adobe Experience Platform Data Collection 09-03-2022
I have configured an XDM object in launch to fire on a button click (login). I can see it working in the network request. However when I query my web event dataset in AEP, these events are not present. My other XDM object for pageviews works just fine.

Views

245

Likes

0

Replies

3
Re: Drop Down for data from schema in WebApp in Adobe campaign classic - Adobe Campaign 18-02-2022
I would just use vanilla JS for the drop down, and tie that back to a variable that will execute the query.

Views

239

Likes

0

Replies

1
Re: Error setting up FDA Oracle external account on v7.0.9346 Windows - Adobe Campaign 04-02-2022
That is odd. Looks like it doesn't like that SERVICE_NAME parameter from your evn file. Have you done a DB restart to re-initiate the values/connection? https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-standard/tcps/m-p/174404

Views

196

Likes

0

Replies

1
Re: How to read a XML stored in a variable as memo data type (from schema) and pass its content to Personalisation block? - Adobe Campaign 03-02-2022
Hey there,You need to change the format. Data in the memo field is just a string. So when you call that field in a workflow/delivery you need re-define its format/type. See below how the var xmlTrigger calls the memo field to a string then creates a new XML (doc). Once that occurs you can JSON.parse() that XML (if your object needs it). The code below can parse any object level information and write that back to the temp table so you can use it in targetData. I used the below concepts to parse d...

Views

208

Likes

2

Replies

2
Re: Query for delivery logs and account activation date - Adobe Campaign 26-01-2022
Contact date is the date the actual delivery was SENT to the person.Event Date (on broadlogRcp) is just the date of the status update. Opens and clicks are on a completely different table.Event date on this table is the date of the open or click. I'd suggest spend time reading through the different data schemas and the data structure.

Views

406

Likes

2

Replies

3
Re: Adobe Campaign Classic user logout from rich client - Adobe Campaign 26-01-2022
Is this a one time thing? Or do you need to programmatically need to log users out?A simple way to do it is to change the operators password. A dialog will come up asking if you want to force the operator to log out.

Views

133

Like

1

Replies

0
Re: Query for delivery logs and account activation date - Adobe Campaign 20-01-2022
1. EventDate is the date of the open or click. The contactDate is the day the email was SENT to the recipient. Try DateOnly ( contactDate ) equal to DateOnly(DaysAgo(1)) AND Delivery Label == "Delivery Label Name" 2. Transactional email logs are found on the archive event delivery logs table (nms:broadLogEventHisto).

Views

457

Likes

2

Replies

6
Re: Converting String date to Date in JavaScript - Adobe Campaign 20-01-2022
You need to change that string into a date before you evaluate it in the loop. What is the format of the current string? Inside your for loop do something like this.Option 1 - using vanilla JS (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse)const myDate = Date.parse(new Date(result.@mailDate));//thenIf(myDate > date2){} Option 2 - using ACC Date functionconst myDate = formatDate(result.@mailDate, "%4Y/%2M/%2D")//thenIf(myDate > date2){}https://experie...

Views

134

Likes

2

Replies

0
Re: Concatenate the segment code of parent segment with the child segment - Adobe Campaign 18-01-2022
Can you add a screen shot of the activity with the targeting?

Views

379

Likes

0

Replies

1
Re: Query for filtering recipient - Adobe Campaign 18-01-2022
DateOnly(@eventDate) is on or after DateOnly(DaysAgo(1)) -If today is the 18th, above should get all records from 17th starting at 00:00 TO the moment of the query being ran (today the 18th at 10:26am). DateOnly(@eventDate) is equal to DateOnly(DaysAgo(1)) -if today is the 18th, above would only get you records that happened on the 17th (00:00-23:59)

Views

265

Like

1

Replies

2