Hi all,
Solved! Go to Solution.
Views
Replies
Total Likes
To pass the other parameters, you can do it via URL or via API calls that gets sent from Campaign.
If it's via the URL then , enriching the formula in the external account is the only option.
If you want to pass on parameters other than the URL , You need to customize the js code which pulls the data to send by default.
This is the JS code nms:adobeGenesisConnection.js
and here is the part that captures the data to be sent to Analytics.
AdobeGenesisConnection.prototype.sendMetrics = function (tableName)
{
var columnNames = new XMLList()
columnNames += <item>Date</item>
columnNames += <item>Message ID</item>
columnNames += <item>Scheduled</item>
columnNames += <item>Processed</item>
columnNames += <item>Sent</item>
columnNames += <item>Opened</item>
columnNames += <item>Unique Opens</item>
columnNames += <item>Clicked</item>
columnNames += <item>Person Clicks</item>
columnNames += <item>Unique Clicks</item>
columnNames += <item>Unsubscribed</item>
columnNames += <item>Total Bounces</item>
You may duplicate this JS file , add the fields you want and have the duplicated JS called in the workflow Sending of indicators and campaign attributes
Thanks
David
Hi Lukkyluke,
To pass other parameters, you can do it via URL or via API calls that gets sent from Campaign.
Thanks,
David
Views
Replies
Total Likes
duplicate this JS file (i recommend to use your client namespace), add the fields you want and have the duplicated JS called in the workflow Sending of indicators and campaign attributes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi,
Add the brand col to AdobeGenesisConnection.prototype.sendAttributes() in nms:adobeGenesisConnection.js.
Thanks,
-Jon
Hi Jon and thanks for your reply, I didn't know that it is possible to modify built in js-code. It says "This is an application built-in object. It cannot be modified". How do I edit this file? Just overwrite it directly on the linux-server? If yes, will this change be overwritten on every build upgrade?
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
To pass the other parameters, you can do it via URL or via API calls that gets sent from Campaign.
If it's via the URL then , enriching the formula in the external account is the only option.
If you want to pass on parameters other than the URL , You need to customize the js code which pulls the data to send by default.
This is the JS code nms:adobeGenesisConnection.js
and here is the part that captures the data to be sent to Analytics.
AdobeGenesisConnection.prototype.sendMetrics = function (tableName)
{
var columnNames = new XMLList()
columnNames += <item>Date</item>
columnNames += <item>Message ID</item>
columnNames += <item>Scheduled</item>
columnNames += <item>Processed</item>
columnNames += <item>Sent</item>
columnNames += <item>Opened</item>
columnNames += <item>Unique Opens</item>
columnNames += <item>Clicked</item>
columnNames += <item>Person Clicks</item>
columnNames += <item>Unique Clicks</item>
columnNames += <item>Unsubscribed</item>
columnNames += <item>Total Bounces</item>
You may duplicate this JS file , add the fields you want and have the duplicated JS called in the workflow Sending of indicators and campaign attributes
Thanks
David
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies