Hello,
As part of a model I am building, I need to pull a variable number of tokens from one partition of a list (storing them as an array in the token.pulled label of the puller token) then eventually push those tokens back onto several different partitions in the list I pulled them from.
Is there a way to:
a) Push multiple tokens onto a list that are referenced in the token.pulled array label
and
b) Have these pushed tokens go to different partitions.
My first thought was to use the function provided in flexsim as follows:
if(token.pulled.length > 1) { for(int i = 1; i <= token.pulled.length; i++) { string MH = Table("HP_Routes_Handlers")[token.pulled[i].sku_row][token.pulled.index + 1]; List("HP_Picking").push(token.pulled[i], MH); } } MH is the string I am pulling from a table to use as the partition, that is a function of data I am pulling off the token. Any help would be appreciated, thanks!