how to accum flowitens before starting processing them?

how to accum flowitens before starting processing them?

daniel_m13
Not applicable
3 Views
1 Reply
Message 1 of 2

how to accum flowitens before starting processing them?

daniel_m13
Not applicable

i need to make the processor wait for 40 pieces to arrive (separately) and after that start processing for 50 minutes. Can anybody help me solve this?

0 Likes
Accepted solutions (1)
4 Views
1 Reply
Reply (1)
Message 2 of 2

matt_long
Not applicable
Accepted solution

You could do this with a Processor alone, but it would likely require a bit of coding, or at least using some of the picklist options. Instead, I would suggest using a Queue and a Processor. The Queue has the ability to batch flowitems and then release a batch all at once.

I've attached a sample modeling showing how to do this. The queue has a batch size of 40. Once the batch has been collected, it will release all 40 flowitems to the processor (who has a max content of 40) and the processor will then process the items for 50 min.

batchflowitems.fsm
0 Likes