Cron expression: every two Fridays

@Isabel_Lopez

You cannot directly do this only using orchestrator

You have to use a logic in your code as well to run as expected

One thing you can do is …

  1. Schedule bot on every friday
  2. Now create a asset names lstrun and initially give the first rundate as input
  3. Now in the initialize state use get asset and get last rundate…and check the fifference between today and lastrundate using datediff function…
  4. If the difference is 14 then run the process or if difference is greater than 8 …then run process and set the asset with todays date
  5. Else it is not the alternate friday so end the process in initialize only

Hope this helps

Cheers