Assembly of parts using lists

Assembly of parts using lists

anitha2CBQW
Explorer Explorer
55 Views
1 Reply
Message 1 of 2

Assembly of parts using lists

anitha2CBQW
Explorer
Explorer

I tried a scenario of assembling  many parts on a base part at a station on conveyor.
In that,Using lists I am able to move "n" number of parts on to a base part using "Move object" activity after pulling items.I stucked at doing that by giving 'custom task sequence' to a operator.Operator is picking and placing only one item but not all pulled items of a category.

0 Likes
56 Views
1 Reply
Reply (1)
Message 2 of 2

moehlmann_fe
Enthusiast
Enthusiast

When you pull muttiple entries from a list in a single action the resulting label will be an array containing all pulled values. The "Move Object" activity is one of very few Process Flow activities that can use arrays as an input parameter. Object references in task activities only ever read a single object (so in this case the first value in the array).

You need to use multiple Load/Unload activities or a subflow. The subflow is generally the better option because it scales to any number of items easily.

0 Likes