Hi Team,
Can we export a calculated variable value in javascript to an excel file through a workflow -
Export can be like on a local laptop OR adobe folders inside explorer.
For example : In the below ss we have a javascript and inside javascript we have some variable or some sql query result
Solved! Go to Solution.
Views
Replies
Total Likes
Hello @Ramaswami ,
Yes, you can export the JS variables in a CSV file.
You will have to use the enrichment activity to do so. But you can not use enrichment activity because there is only one javascript activity in your workflow. To make it work you will have to change the workflow to something like this.
JS Activity:
Enrichment activity:
Since you want to automate this. There are 2 ways to get the files with automation.
1) Use data extraction and create the file in Adobe server itself.
2) If you want to receive it on your emails then you can add the delivery activity. (Note to do this you will have to use the file attachment by computation)
i have added the additional activities for your reference.
Views
Replies
Total Likes
Hi,
Yes you can export local variable value in your export file.
In your JS, define variable as:
vars.output=vars.recCount
And then file configuring columns of your export file. Add column using edit the expression and give value as:
$(vars/@output)
Thanks.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hello @Ramaswami ,
Yes, you can export the JS variables in a CSV file.
You will have to use the enrichment activity to do so. But you can not use enrichment activity because there is only one javascript activity in your workflow. To make it work you will have to change the workflow to something like this.
JS Activity:
Enrichment activity:
Since you want to automate this. There are 2 ways to get the files with automation.
1) Use data extraction and create the file in Adobe server itself.
2) If you want to receive it on your emails then you can add the delivery activity. (Note to do this you will have to use the file attachment by computation)
i have added the additional activities for your reference.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies