Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Looking for delivery templates with an operation (operation id > 0)

Avatar

Level 6

Hello,

 

From a delivery (continuous, recurring, create from tpl...), when we look for a delivery template, ACC automatically adds a condition "[@operation-id] = 0". Why is the reason behind this?

 

We would like our deliveries created from the delivery template to be linked to an operation/campaign.

 

With traceview we found out that this condition is added by the workflow input form:

20200227-143150-screenshot-13.jpg20200227-150003-screenshot-16.jpg

 

Is it safe to comment this line and completely turn off this feature?

 

Best regards

Florian

1 Accepted Solution

Avatar

Correct answer by
Level 2

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

View solution in original post

3 Replies

Avatar

Correct answer by
Level 2

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

Avatar

Community Advisor

hello @NeelamB91,

 

If you want an even simpler solution, you can put directly the bellow code in the script tab of the delivery activity :

delivery.operation_id=instance.operation_id;
delivery.workflow_id=instance.id;

Like this : 

Amine_Abedour_0-1675416025043.png

With this solution, you'll have one less JS activity in your workflow, and no need to load then save the delivery.

 

Br,

Amine