<?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: how to know destination rack level for loaded part on forklift? in FlexSim Forum</title>
    <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545752#M51538</link>
    <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;A rel="user" href="https://answers.flexsim.com/users/19365/felixmh.html" nodeid="19365"&gt;@Felix Möhlmann&lt;/A&gt; thanks for reply. it resolved my issue.
&lt;/DIV&gt;</description>
    <pubDate>Wed, 02 Mar 2022 08:54:04 GMT</pubDate>
    <dc:creator>chitra_j</dc:creator>
    <dc:date>2022-03-02T08:54:04Z</dc:date>
    <item>
      <title>how to know destination rack level for loaded part on forklift?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545750#M51536</link>
      <description>&lt;P&gt;&lt;I&gt;[ FlexSim 22.0.0 ]&lt;/I&gt;&lt;/P&gt;&lt;DIV class="fr-view clearfix"&gt;
 &lt;P&gt;I want to know on which level of rack forklift is going to unload item when it loads it from queqe.&lt;/P&gt;
 &lt;P&gt;I can check the level once part is loaded by forklift in tree as below image, but I want to set the level number as forklift's label as integer.&lt;/P&gt;
 &lt;P&gt;how to assign loaded part's destination rack level number as forklift label on load trigger?&lt;/P&gt;
 &lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="1646204038605.png"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1509179iE1E02032DBFA6B17/image-size/large?v=v2&amp;amp;px=999" role="button" title="1646204038605.png" alt="1646204038605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
 &lt;P&gt;&lt;A rel="noopener noreferrer" href="https://answers.flexsim.com/storage/attachments/49160-forklift-unload-level-check-model.fsm" target="_blank"&gt;Forklift_unload_level_check_model.fsm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Mar 2022 06:56:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545750#M51536</guid>
      <dc:creator>chitra_j</dc:creator>
      <dc:date>2022-03-02T06:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to know destination rack level for loaded part on forklift?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545751#M51537</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;The necessary properties/methods are available through the Storage.Item and Storage.Slot classes.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.flexsim.com/en/22.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Warehousing/Storage.Item.html"&gt;https://docs.flexsim.com/en/22.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Warehousing/Storage.Item.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.flexsim.com/en/22.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Warehousing/Storage.Slot.html"&gt;https://docs.flexsim.com/en/22.0/Reference/CodingInFlexSim/FlexScriptAPIReference/Warehousing/Storage.Slot.html&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;/**Custom Code*/
TaskExecuter current = ownerobject(c);
Object item = param(1);
Object station = param(2);

Storage.Item storageItem = Storage.Item(item);  // Get Storage.Item class object
Storage.Slot slot = storageItem.assignedSlot;   // Get Storage.Slot from Storage.Item
current.destLevel = slot.levelID;               // Get Level from Storage.Slot

// All in one row
current.destLevel = Storage.Item(item).as(Storage.Item).assignedSlot.levelID;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Mar 2022 08:31:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545751#M51537</guid>
      <dc:creator>moehlmann_fe</dc:creator>
      <dc:date>2022-03-02T08:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to know destination rack level for loaded part on forklift?</title>
      <link>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545752#M51538</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;
 &lt;A rel="user" href="https://answers.flexsim.com/users/19365/felixmh.html" nodeid="19365"&gt;@Felix Möhlmann&lt;/A&gt; thanks for reply. it resolved my issue.
&lt;/DIV&gt;</description>
      <pubDate>Wed, 02 Mar 2022 08:54:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/flexsim-forum/how-to-know-destination-rack-level-for-loaded-part-on-forklift/m-p/13545752#M51538</guid>
      <dc:creator>chitra_j</dc:creator>
      <dc:date>2022-03-02T08:54:04Z</dc:date>
    </item>
  </channel>
</rss>

