Search found 7 matches

by jjjjermain
Monday 12 August, 2019 - 13:36
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

Ha jjjermain, I think you can achieve that by adjusting the "User Event" code and setting the label OutgoingChannel to 1 and add another label on the product in which you indicate that this a product that needs to be processed differently: Label([IsCutOff], First(refQueueMaterial1)) := 1 ...
by jjjjermain
Sunday 11 August, 2019 - 19:02
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

Ha jjjermain, This is actually quite tricky, since you want to already sort it out before the actual machines based on time. As a result there is some description involved to explain what I did: 1) When a Material 1 (M1) arrives in the queue there are a few things happening: - I now always create a...
by jjjjermain
Wednesday 07 August, 2019 - 16:45
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

Ha jjjermain, OK, then I understand the problem. In which version of ED are you making your model? Then I can create an example in the same version. I'm thinking of using an Event-atom. When a material 1 is entering the queue, I close the exit of that queue (CloseOutput(c) on the Entry trigger of t...
by jjjjermain
Wednesday 07 August, 2019 - 13:17
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

Ha jjjermain, At the moment it is not entirely clear to me. Do you really need to send the material 1 to machine 2, when material 2 is too late, or can this also be done from machine 1 by only sending an empty material further? So you would like to block material 1 before entering machine 1. If mat...
by jjjjermain
Tuesday 06 August, 2019 - 20:02
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

Hello jjjermain, Could you use the cut-off time at the assembler and the content of the 1st product on the "Send To" statement? So then the Assembler is doing the sorting, instead of the queue in front of the assembler. Success, Harry Hi Harry, thank you. I understand. But I need a Feedba...
by jjjjermain
Monday 05 August, 2019 - 20:36
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Re: Switch Ouput Channel by material availability

It is also important that the feedback comes from the warehouse. If no product A is received after a certain time, the output channel should be adjusted.
by jjjjermain
Monday 05 August, 2019 - 20:33
Forum: Modeling in Enterprise Dynamics
Topic: Switch Ouput Channel by material availability
Replies: 12
Views: 32174

Switch Ouput Channel by material availability

In my model I have two material and two machines. The first machine processes both materials into one, the second only material 1. Now I need feedback if material 2 fails the material should be forwarded to the second machine. If material 2 is then available again, then all materials will be returne...