Session to run once in a Week

0
Problem :

  1. There is a workflow having 3 sessions in sequence A à B à C. We want session 'C ' to run weekly once i.e only Friday,  If it is any other day in a week we need to skip executing.  A & B sessions need to run everyday in a week. How would you do that any suggestions please.

We Suggested:

Just add the below condition on the link between Session B and Session C :

 

to_Char(sysdate,'D')='6'


'6' means -- Friday 


Make Sure :  High lighted option is deselected .