Hello,
i have a workflow where i create a json array using javascript activity and i want to create a new adobe campaign list (using js code) and add to it all the data in my json array using "javascipt acitivity" or "update list" activity.
can you please show me how i can achieve this operation in my workflow.
this is the code of my Js activity :
var arrayOfObjects = [{ "id": 28, "Title": "Sweden" }, { "id": 56, "Title": "USA" }, { "id": 89, "Title": "England" }];
vars.arrayOfObjects = JSON.stringify(arrayOfObjects);
Regards !
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @JamesAlio
All adobe lists create a table in the DB. You can directly update that table with a SQl statement and execute that SQL statement with sqlExec.
You can get the list table name from the schema table as shown in this screenshot
Now all you have to do iterate your object and do a sqlExec for each item.
Thanks,
Manoj
Hello @JamesAlio
All adobe lists create a table in the DB. You can directly update that table with a SQl statement and execute that SQL statement with sqlExec.
You can get the list table name from the schema table as shown in this screenshot
Now all you have to do iterate your object and do a sqlExec for each item.
Thanks,
Manoj
Hello @_Manoj_Kumar_ ,
Thank you so much for your response it's very clear.
i still have one more question because in your response you assume that the list is already created ? there is any why to create the list (table) during the workflow execution i mean using my js code before start persisting the data?
Thanks in advance.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
@_Manoj_Kumar_ - Is there a way to create a custom list using the script? I need to upload a file with 250+ columns into a list. But I can't use the column name as is from the file and need to alias. I could do this using enrichment but it will be time consuming. I tried couple of options but none of them worked.
1. I tried renaming the temp table column name after data load activity in the workflow using sqlExec command but it's throwing error at create list activity saying the old column name doesn't exists. Not sure why it still refers to old column name.
2. I created the list with same column names as in file but then tried to rename the column in list using sqlExec command. The workflow ran successfully but when I use the list in read list actiivty it throws error and again refers to old column name.
Is there any other options which I can try?
Thanks!
Views
Replies
Total Likes