<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Process flow logic with AGV in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580732#M78787</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hey &lt;A rel="user" href="https://answers.flexsim.com/users/43022/karen.html" nodeid="43022"&gt;@kl&lt;/A&gt;, first thing you should do is fix your model's errors. All your queues are throwing errors because they have no "Send to Port". If you want to use Process Flow to send queue content places, then simply have the Send to Port method be "First Available" with no output port connections - the item will stay in the queue until picked up by some other logic.&lt;/P&gt;&lt;P&gt;Looking at your table, it seems like the same Queues are always sending to the same Sinks. This would be easiest solved if you made a simple A-Connection from the Queue to the Sink you want. Then you can S-Connect (center connect) the Task Executer to the different Queues and have them use a transporter so it carries the content of the queue to the sink.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;With regards to your query: the reason it's not working is because a Pull from List query will look at the associated list's table for columns to query. So when you say token.from or token.item.MyLabel1, it doesn't know what those are. If you're pushing items themselves onto the list, then I would add a column with the item's queue name and then maybe pull all the items with that queue name off the list. Your query may look something like&lt;/P&gt;&lt;PRE&gt;WHERE QueueName = token.QueueName&lt;/PRE&gt;&lt;P&gt;where QueueName is a column name and token.QueueName is the name of a queue you assign to the token on that particular pass.&lt;/P&gt;&lt;P&gt;This is just one way to go about it.&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 04 Oct 2023 15:32:23 GMT</pubDate>
    <dc:creator>kavika_faleumu</dc:creator>
    <dc:date>2023-10-04T15:32:23Z</dc:date>
    <item>
      <title>Process flow logic with AGV</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580731#M78786</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 18.1.2 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;hi~ I'm currently working on the model that I use arrival schedule to create objects on 4 different source, and also give them labels according to the source number the objects are in.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1696428513691.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1520353iA40221F091002038/image-size/large?v=v2&amp;amp;px=999" role="button" title="1696428513691.png" alt="1696428513691.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;In the process flow, I push token into list to get its labels, and hope to pull out the same label ( I use the query "WHERE token.from == token.item.MyLabel1" in the list) to sent the item to the place I designated using the table I created.&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1696428867761.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1520354iB215D5EB5FA2E1DB/image-size/large?v=v2&amp;amp;px=999" role="button" title="1696428867761.png" alt="1696428867761.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt; However, the token is not working properly now, hope to get some suggestion to fix it~ thank you!&lt;/P&gt;
 &lt;P&gt;My model: &lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/74411-test.fsm" target="_blank"&gt;test.fsm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Oct 2023 14:18:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580731#M78786</guid>
      <dc:creator>karen8</dc:creator>
      <dc:date>2023-10-04T14:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Process flow logic with AGV</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580732#M78787</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hey &lt;A rel="user" href="https://answers.flexsim.com/users/43022/karen.html" nodeid="43022"&gt;@kl&lt;/A&gt;, first thing you should do is fix your model's errors. All your queues are throwing errors because they have no "Send to Port". If you want to use Process Flow to send queue content places, then simply have the Send to Port method be "First Available" with no output port connections - the item will stay in the queue until picked up by some other logic.&lt;/P&gt;&lt;P&gt;Looking at your table, it seems like the same Queues are always sending to the same Sinks. This would be easiest solved if you made a simple A-Connection from the Queue to the Sink you want. Then you can S-Connect (center connect) the Task Executer to the different Queues and have them use a transporter so it carries the content of the queue to the sink.&lt;/P&gt;&lt;HR /&gt;&lt;P&gt;With regards to your query: the reason it's not working is because a Pull from List query will look at the associated list's table for columns to query. So when you say token.from or token.item.MyLabel1, it doesn't know what those are. If you're pushing items themselves onto the list, then I would add a column with the item's queue name and then maybe pull all the items with that queue name off the list. Your query may look something like&lt;/P&gt;&lt;PRE&gt;WHERE QueueName = token.QueueName&lt;/PRE&gt;&lt;P&gt;where QueueName is a column name and token.QueueName is the name of a queue you assign to the token on that particular pass.&lt;/P&gt;&lt;P&gt;This is just one way to go about it.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Oct 2023 15:32:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580732#M78787</guid>
      <dc:creator>kavika_faleumu</dc:creator>
      <dc:date>2023-10-04T15:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Process flow logic with AGV</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580733#M78788</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;Hi &lt;A rel="user" href="https://answers.flexsim.com/users/43022/karen.html" nodeid="43022"&gt;@kl&lt;/A&gt;, was Kavika F's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.&lt;/P&gt;&lt;P&gt;If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always comment back to reopen your question.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 09 Oct 2023 15:50:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/process-flow-logic-with-agv/m-p/13580733#M78788</guid>
      <dc:creator>jason_lightfoot_adsk</dc:creator>
      <dc:date>2023-10-09T15:50:39Z</dc:date>
    </item>
  </channel>
</rss>

