Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Attached file in a continuous delivery

Avatar

Level 1

Hi,

I currently have a workflow witch generates a file whose name is different every hour then sends this file in a delivery, so a delivery is created every hour. I want to change this behavior by using a continuous delivery activity so that only one delivery will be displayed in my interface.

My problem is that I can't use the same script to attach the file (delivery.attachment [0] .name = vars.filename;) as my previous workflow.

The delivery object does not seem to be known in a continuous delivery activity. Is it possible to attach a file with a different file name each hour to a continuous delivery? Thank for your help.

Al.

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi Al Debaran,

Either with the continuous delivery activity or with the equivalent Javascript JSAPI submitNotification, you can't achieve directly the attachment by JS code. The object delivery is not defined in the context.

submitNotification and continuous delivery activity only allows to add new target contacts to a delivery generated from the delivery model name (scenarioName parameter).

So with a continuous delivery you need to define the attachement filename either directly in the template (delivery model) by using a formula that can change thanks a JS personalisation code, but not related to a delivery recipient (only shared personalisation code for every contact targeted).

Of course, the alternative is to use recurrent deliveries, but it is not the same as continuous ones, less convenient as you mentioned especially for analysis/reporting.

Regards
J-Serge

View solution in original post

4 Replies

Avatar

Level 10

Hi,

Not sure that continuous deliveries use the same delivery object. Did you try using the delivery template object instead?

Florent

Avatar

Level 10

Hi,

Any update on your question? Were you able to test with the template directly?

Florent

Avatar

Level 1

Hi Florent,

Thank for your answer.

Currently, it is exactly the existing behavior, we wish to change it to have a single delivery in the nmsDelivery table. Is there a way to set up a delivery activity to have only one delivery in the end?

Al.

Avatar

Correct answer by
Level 10

Hi Al Debaran,

Either with the continuous delivery activity or with the equivalent Javascript JSAPI submitNotification, you can't achieve directly the attachment by JS code. The object delivery is not defined in the context.

submitNotification and continuous delivery activity only allows to add new target contacts to a delivery generated from the delivery model name (scenarioName parameter).

So with a continuous delivery you need to define the attachement filename either directly in the template (delivery model) by using a formula that can change thanks a JS personalisation code, but not related to a delivery recipient (only shared personalisation code for every contact targeted).

Of course, the alternative is to use recurrent deliveries, but it is not the same as continuous ones, less convenient as you mentioned especially for analysis/reporting.

Regards
J-Serge