Hello,
I have an issue: I constructed a workflow that chose the most bought products and gives 6 products with its ids and prices.
Productid | NAME | Price |
---|---|---|
1 | Product1 | 2 |
2 | Prduct2 | 9 |
3 | Product3 | 11 |
On the same worklflow I have a query with the customers I want to target that gives me a table like:
Nameid | NameEmailAddress | |
---|---|---|
12 | blabla@hol.com | |
56 | blablablab@zughdd.com | |
I want to make a dynamic email so I would need to create a target like this:
Nameid | EmailAddress | Product1 | Product1price | Product2 | Product2price | ||
---|---|---|---|---|---|---|---|
12 | blabla@hol.com | Product1 | 2 | Prduct2 | 9 | ||
56 | blablablab@zughdd.com | Product1 | 2 | Prduct2 | 9 |
Can you tell me how please?
Thank you in advance,
Andrea
Solved! Go to Solution.
Hello,
Thank you both for your answers
What I wanted to do was indeed to send a list of the most bought products to a list of recipients, but that list was calculated automatically each time my workflow ran; but the problem was that the two pieces of information were in different schemas. I was finally able to do it by Intersecting both on a column that they were sharing (an id).
Thank you,
Andrea
Hi Andrea,
Sorry for the delayed answer, I missed your question.
Can you tell me what's the final goal of your workflow? Looking at what you described, it looks like you want to send a list of the most bought products to a selection of recipients. If that is the case, you can probably enrich your recipient targeting with the product data. This type of additional information is known as "collection" in Campaign.
If you are using ACS, you can do this with the Query activity, see Adding a collection here: Adobe Campaign Help | Query .
If you are using ACC (v6 or v7), you can do this with a Query or an Enrichment activity, see Adding a data collection here: Targeting activities .
Hope this helps,
Florent
Views
Replies
Total Likes
Bonjour Andrea !
J'ai fait a peu près la même chose dans un de mes workflows. Pour se faire, j'ai rajouté un numéro de ligne. Ensuite, j'ai rajouté un branchement. Puis, j'ai sélectionné mes lignes une à une avec une boîte de partage. Enfin, j'ai rajouté un enrichissement pour chaque produit (1,2,3,...) avec un libellé de colonnes "libelle_produit1" et en alia "@lb1" par exemple.
Pour être plus claire voici la partie de mon workflow qui gère cela :
Attention ! Vous devez connaître le nombre maximum de produit que vous pouvez obtenir.
En espérant avoir aidée,
Bonne fin de journée,
Cdt,
Marjorie
Hello,
Thank you both for your answers
What I wanted to do was indeed to send a list of the most bought products to a list of recipients, but that list was calculated automatically each time my workflow ran; but the problem was that the two pieces of information were in different schemas. I was finally able to do it by Intersecting both on a column that they were sharing (an id).
Thank you,
Andrea