Example#1:
Given the resource calendars:
resource01 24 hours a day [machine]
resource02 08:00-12:00; 13:00-17:00 [man01]
resource03 17:00-20:30; 21:00-01:20 [man02]
If 1 task has these 3 resources, the task can only evolute if theres at least one man working with the machine (two shift problems). Therefore the task can only be performed when at least one man is working.
Example#2:
Given the resource calendars:
resource01 24 hours a day [machine]
resource02 08:00-12:00; 13:00-17:00 [man01]
I would like to make the task to evolute only when both resources are available.
How do I make this happen?
Carlos Saraiva
Given the resource calendars:
resource01 24 hours a day [machine]
resource02 08:00-12:00; 13:00-17:00 [man01]
resource03 17:00-20:30; 21:00-01:20 [man02]
If 1 task has these 3 resources, the task can only evolute if theres at least one man working with the machine (two shift problems). Therefore the task can only be performed when at least one man is working.
Example#2:
Given the resource calendars:
resource01 24 hours a day [machine]
resource02 08:00-12:00; 13:00-17:00 [man01]
I would like to make the task to evolute only when both resources are available.
How do I make this happen?
Carlos Saraiva