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: Preview of real time template not showing up when checking with seed address - Adobe Campaign 14-12-2021
Not sure about the preview, but the error logs clearly show the Event is not covered. Meaning the eventType you are sending to ACC does not match what is listed in the eventType enumeration. Perhaps double check those items and republish.

Views

139

Like

1

Replies

5
Re: Update data error - Adobe Campaign 14-12-2021
In the error logs this statement is failing to be evaluated "WHERE W.iRecProcState >= -1".the W.i is just SQL stuff. RecProcState is either a custom field on some custom data schema, or it is a custom expression in an enrichment or other activity within the workflow. Start by checking the update activity, this is field listed there? If not in the update activity check other activities in the workflow.

Views

411

Likes

0

Replies

2
Re: Update data error - Adobe Campaign 14-12-2021
I would start with verifying that RecProcState for the inbound population is all populated with the correct data type and values before the expression is evaluated. Essentially data in that field for a specific recipient is not letting the expression be evaluated. With these type of errors you have break down the data structure for each activity to figure where things have gone wrong.

Views

416

Like

1

Replies

4
Re: How can I pass the workflow name as the file name for a data output tool? - Adobe Campaign 09-12-2021
Essentially any data in ACC is available to used. You just have to build the correct data context.Check the ACC docs on JS vars: https://experienceleague.adobe.com/docs/campaign-classic/using/automating-with-workflows/advanced-management/javascript-scripts-and-templates.html?lang=en Clicking on this drop down icon will give you a menu of options.

Views

205

Like

1

Replies

1
Re: .. lets assume there is some data in excel and Need to load into list………… - Adobe Campaign 09-12-2021
Check out the steps detailed in this other correct response.https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/newsletter-i-need-to-create-a-generic-address-for-the-target/m-p/433886#M13804

Views

132

Like

1

Replies

0
Re: How can you use the 'toProperCase' function on a variable - Adobe Campaign 09-12-2021
Could also do something like this... (The joy of JavaScript, 1000 ways to do the same thing!) <%​ function nameProper() {​ var name = recipient.firstName;​ var propName = name.chartAt(0).toUpperCase() + name.slice(1);​ }%>​ Dear <%= nameProper %>, ​Dear <%= nameProper %>,

Views

138

Like

1

Replies

0
Re: How can I pass the workflow name as the file name for a data output tool? - Adobe Campaign 09-12-2021
Have you tried the instance options? <%= instance.label %>Also check the ACC docs on JS vars: https://experienceleague.adobe.com/docs/campaign-classic/using/automating-with-workflows/advanced-management/javascript-scripts-and-templates.html?lang=en Similar question to: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/difference-between-instance-vars-somevar-and-vars-somevar/m-p/308742

Views

210

Likes

2

Replies

3
Re: Change Dimension - Temp Table - Adobe Campaign 08-12-2021
the activity itself only interacts with the temp table. the temp table actually belongs to the workflow. the change dimension is only transforming the inbound population to the target population. All that being said I've had scenarios where I have 2 or more CD's or enrichments or I copied one from one workflow to another and gotten a similar error. Have you tried renaming your CD or making sure it matches? I assume your JS looks something like this?

Views

232

Likes

0

Replies

1
Re: Newsletter - I need to create a generic address for the target mapping of my newsletter for a group of people - Adobe Campaign 08-12-2021
1. create a list-group 2.Import via JobsDuring this import wizard you will map your list to the recipient table, and also place this data into an easy list-group that is reusable. Follow this documentation: https://experienceleague.adobe.com/docs/campaign-classic/using/getting-started/importing-and-exporting-data/generic-imports-exports/executing-import-jobs.html?lang=en 3. in a workflow use that read list (my_new_list) to start with to consistently or to add to your existing query's. let me kno...

Views

144

Like

1

Replies

1
Re: Newsletter - I need to create a generic address for the target mapping of my newsletter for a group of people - Adobe Campaign 08-12-2021
What is the intended result you want? Do you want to send a copy of the email to this group of 50?

Views

148

Like

1

Replies

3