Environment Variable Not Resolving for ReplicateStartDate We upgraded to the latest version of the CDATA last weekend. After that tasks that use environment variables for the ReplicateStartDate property are currently failing. Current Configuration Pre job event <api:set attr="out.env:currenttimestampminus36months" value="[null | now() | dateadd('month', '-36', 'yyyy-MM-dd')]" /><api:push item="out" /> Query: REPLICATE [CTL].[AccountHistory] WITH ReplicateStartDate = '{env:currenttimestampminus36months}', ReplicateInterval = '1', ReplicateIntervalUnit = 'Months', DeletionBehavior = 'SkipDelete', DropTable = 'false' SELECT * FROM [AccountHistory] Error:[0] '{env:currenttimestampminus36months}' is not a valid value for the ReplicateStartDate property. We expect a date (yyyy-MM-dd) or an int. Attempted Fix Pre job event :<api:set attr="out.env:currenttimestampminus36monthsModified" value="[null | now() | todate('yyyy-MM-dd', dateadd('month', '-36', 'yyyy-MM-dd'))]" /><api:push item="out" /> Query: REPLICATE [CTL].[Ac