Hi there,
Is there somewhere you can change the default 60d resource validity setting In Adobe Campaign Classic so that you don't have to constantly update this property every time prior to executing deliveries?
Thanks
Frankie.
Solved! Go to Solution.
Go to platform options and look for the following property NmsBroadcast_MsgWebValidityDuration and set the default you require in seconds
Hi @Frankie_d ,
Go to Tools-> Deployment wizard-> Email channel-> Advanced parameters. There you could find the online resource validity period set to 60d. Try changing that.
Thanks Krishnanunni - I was able to update via the deployment wizard but seems the changes didn't translate to the delivery properties (Still showing 60d). Is there a way to validate that change after amending in the deployment wizard? Cheers.
@Frankie_d , Could you please try logout and login back to your AC instance? If it still doesn't work, try clearing the local cache from File-> Clear local cache, then reconnect to AC instance.
The change in the deployment wizard will not affect existing deliveries but only the new templates created (templates will herit from the new default value).
Once you'll have templates with the new value, all deliveries created from those templates will then pick this value.
The other way is to create a typology rule (of type "Control" and "at the start of targetting") using in the JS:
myVar = getOption("myOption");
delivery.scenario.webValidityDuration = myVar * 60 * 60 * 24;
delivery.mailParamater.useMirrorPage = "1";
You'll then have to create an option in AC with a value in days
The benefit is that you can apply this typology rule to a typology that you will apply to all deliveries or just the ones you want
Ps: check the code regarding variable names and format as I do not have ACC on this laptop
Go to platform options and look for the following property NmsBroadcast_MsgWebValidityDuration and set the default you require in seconds