Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Query tracking and delivery logs

Avatar

Level 2

Hi all,

I have a question regarding query of logs. Is it possible to query profiles who have received for example 10 emails (have 10 delivery log ID's on the sending/delivery log)  or clicked in 5 emails (have 5 tracking logs) etc in ACS? I can't find any way to do it without having to extract the data into excel and then do some work in there. But it would be much easier if there happened to be a way in the system, maybe with advanced expression were it could be done.

Thank you in advance!

All the best,

Sebastian

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi Sebastian,

A few options exist in ACS that will allow us to 'aggregate' records on a table, specifically the delivery and tracking log tables.

- The first method is to Enrich your query using Additional Data.  Here you will query the profile table to return the target profiles you would like to review and configure 'Additional Data'.  Under additional data, create an element and select the log table (delivery or tracking).  After this selection you will land on a screen that allows you to select aggregate or collection - in this case you want to choose aggregate.  Configure the aggregate as a distinct count and choose an attribute on the log table, such as event date.  Once you have your aggregate values you will then need to filter/segment for profiles that have 10 or greater.

Distinct Count Enrichment.png

- The second method is to write a query on the profile resource.  The condition should select the log table and the filter should be changed from Exists to Count.  Then you can add the logical operator to get the 'count' that you need.

Count in Segmentation.png

-KP

View solution in original post

2 Replies

Avatar

Correct answer by
Employee

Hi Sebastian,

A few options exist in ACS that will allow us to 'aggregate' records on a table, specifically the delivery and tracking log tables.

- The first method is to Enrich your query using Additional Data.  Here you will query the profile table to return the target profiles you would like to review and configure 'Additional Data'.  Under additional data, create an element and select the log table (delivery or tracking).  After this selection you will land on a screen that allows you to select aggregate or collection - in this case you want to choose aggregate.  Configure the aggregate as a distinct count and choose an attribute on the log table, such as event date.  Once you have your aggregate values you will then need to filter/segment for profiles that have 10 or greater.

Distinct Count Enrichment.png

- The second method is to write a query on the profile resource.  The condition should select the log table and the filter should be changed from Exists to Count.  Then you can add the logical operator to get the 'count' that you need.

Count in Segmentation.png

-KP

Avatar

Level 2

Hi,

Thank you very much. Super helpfull!

/Sebastian