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

Resource Validity - Changing default setting

Avatar

Level 2

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. 

 

Resource_Validity.PNG

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

 

David__Garcia_0-1636581320876.png

 

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

 

View solution in original post

5 Replies

Avatar

Level 4

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.

Avatar

Level 2

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.

Avatar

Level 4

@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.

Avatar

Level 6

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

Avatar

Correct answer by
Community Advisor

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

 

David__Garcia_0-1636581320876.png

 

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