- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hello @dipendu_g
Here's the right way to do it.
For Recurring delivery:
- Select the delivery from the actions tab.
- Now select your delivery template and configure other options
- In the advanced tab this code:
delivery.operation_id = instance.operation_id;
For Continous delivery:
- After your continuous delivery add a javascript activity.
- and then the code:
var delivery = NLWS.nmsDelivery.load(vars.deliveryId); delivery.operation_id=instance.operation_id; delivery.workflow_id=instance.id; delivery.save();