- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi Florian,
If you use a recurring delivery or Email delivery activity, you might have noticed that the deliveries are linked to the campaigns already and the operation ID is not zero. However in case of Standard or continuous delivery you need to use an additional script to link the delivery to the campaign/workflow. This script can be added in Javascript code activity just after the delivery. The following code can be used to do so.
var delivery = NLWS.nmsDelivery.load(vars.deliveryId);
delivery.operation_id=instance.operation_id;
delivery.workflow_id=instance.id;
delivery.save();
I hope that helps.
Thanks,
Anup