Hi,
Is it possible to reference a time exception collection from a .NET condition to check if the next Monday matches a date contained in the collection?
Below is the requirement that we have, which I know how to code as a .NET condition, with the exception of the piece in bold i.e. the bank holiday check. We store bank holidays in a time exception collection (and wouldn't like to hard-code them in the .NET condition code).
We are looking to schedule the running of a job every Saturday that only executes the task:
IF
(the previous day (Friday) was the last working day of the month)
AND
((the following Monday is not the 1st of the month)
OR
((the following Monday is the 1st of the month) AND (the following Monday is a bank holiday)))
Edited by user
2017-10-02T15:32:45Z
|
Reason: Not specified