Resource Validity - Changing default setting | Community
Skip to main content
Frankie_d
Level 2
November 10, 2021
Solved

Resource Validity - Changing default setting

  • November 10, 2021
  • 2 replies
  • 2258 views

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. 

 

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by david--garcia

Go to platform options and look for the following property NmsBroadcast_MsgWebValidityDuration and set the default you require in seconds

 

 

  • 15552000 ( 180days)
  • 5184000 (60days - default)
  • 604800 (7days)

 

2 replies

Krishnanunni
Level 4
November 10, 2021

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.

Frankie_d
Frankie_dAuthor
Level 2
November 10, 2021

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.

LaurentLam
Level 5
November 11, 2021

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

david--garcia
david--garciaAccepted solution
Level 10
November 10, 2021

Go to platform options and look for the following property NmsBroadcast_MsgWebValidityDuration and set the default you require in seconds

 

 

  • 15552000 ( 180days)
  • 5184000 (60days - default)
  • 604800 (7days)