I am currently using this formula to populate the current date into a fillable PDF for work:
var f = this.getField("Today");
f.value = util.printd("mm/dd/yyyy", new Date());
This fillable PDF is a government document and once it's printed expires in 45 days including the date printed. Like a Temp Tag for a vehicle.
How do I add 44 days to this formula so that it automatically kicks out 45 days down the road?