<?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 Storage bin range. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643731#M608805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everybody, How can i do to obtein the range of storage bin locations, if i have the from storage and the to storage? Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Aug 2007 13:23:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-21T13:23:59Z</dc:date>
    <item>
      <title>Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643731#M608805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everybody, How can i do to obtein the range of storage bin locations, if i have the from storage and the to storage? Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 13:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643731#M608805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T13:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643732#M608806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check for fm BAPI_WHSE_STOCK_GET_LIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 13:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643732#M608806</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-08-21T13:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643733#M608807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But i dont have the material, the only data that i have is the lgpla start and lgpla end and i need all the storage bin between them. Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 14:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643733#M608807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T14:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643734#M608808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select from table LAGP for given storage location bin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 14:35:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643734#M608808</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2007-08-21T14:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643735#M608809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know how with a starter lgpla and end lgpla i can obtein all the storage locations between them. I find the t343 table but i dont know how to use it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 14:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643735#M608809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643736#M608810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please try this code ... just replace the value 'TEST1' and 'TEST3' with you start storage location bin and end storage location bin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zpwtest .

TYPES : BEGIN OF ty_strg,
        lgpla TYPE lagp-lgpla,
      END OF ty_strg.

DATA :  it_strg TYPE TABLE OF ty_strg ,
        wa_strg TYPE ty_strg          .

RANGES : r_lgpla FOR lagp-lgpla .

DATA : from_bin TYPE lagp-lgpla VALUE 'TEST1' ,
       to_bin   TYPE lagp-lgpla VALUE 'TEST3' .

START-OF-SELECTION .

  r_lgpla-sign = 'I' .
  r_lgpla-option = 'BT' .
  r_lgpla-low = from_bin .
  r_lgpla-high = to_bin .
  APPEND r_lgpla .

  SELECT lgpla
    INTO TABLE it_strg
    FROM lagp
   WHERE lgpla IN r_lgpla .

  LOOP AT it_strg INTO wa_strg .
    WRITE : / wa_strg-lgpla .
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Pawan Kesari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 14:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643736#M608810</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2007-08-21T14:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643737#M608811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry but my knowledge in WM is poor. With this query i obtein the storage bin between the start and end storage bin, but are they the storage bins that i have to visit in a fisic inventory count if have they give me the star storage bin and the end storage bin?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 15:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643737#M608811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T15:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Storage bin range.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643738#M608812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 14:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/storage-bin-range/m-p/2643738#M608812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T14:39:19Z</dc:date>
    </item>
  </channel>
</rss>

