<?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: Problem with calling Transaction LS24 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185435#M465266</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for some fields on a screen you see according data dictionary a parameter id-&amp;gt;but the usage whether the program is using it or not is not defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use a call transaction like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'LS24' using bdcdata mode &amp;lt;mode&amp;gt; messages into message_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Mode&amp;gt; can have values A, N, E (see SM35) &lt;/P&gt;&lt;P&gt;pass in bdcdata the values (matnr, lgnum and so on.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;JP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 11:33:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T11:33:53Z</dc:date>
    <item>
      <title>Problem with calling Transaction LS24</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185433#M465264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;             I have a requirement, in which double clicking on a particlualr field in a ALV report should take me to the transaction LS24. Now, the problem is I am able to pass the values of WareHouse No , Material and Plant, but for fields in Selection Criteria i am not able to pass corresponding values.The Piece of code which I am using is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF rs_selfield-fieldname = 'VERME'.&lt;/P&gt;&lt;P&gt;        CLEAR : wa_output,&lt;/P&gt;&lt;P&gt;                wa_input.&lt;/P&gt;&lt;P&gt;        SORT i_input BY aufnr.&lt;/P&gt;&lt;P&gt;        READ TABLE i_output INTO wa_output INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        READ TABLE i_input INTO wa_input WITH KEY aufnr = wa_output-aufnr BINARY SEARCH.&lt;/P&gt;&lt;P&gt;        IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'LGN' FIELD wa_input-lgnum. " Ware House No&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'MAT' FIELD wa_input-matnr. " material&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'WRK' FIELD wa_input-werks. " Plant&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'LGT' FIELD wa_input-lgtyp." Storage TYpe&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'LGP' FIELD wa_input-lgpla.  " Storage Bin      &lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'LS24'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the values of Ware House No , material and Plant are reflected but the values of Storage type and Storage Bin is not reflected. Moreover, I also want to pass GR no, but it is not having any associated Patameter ID. So, Please suggest me how to fullfill my requirements.&lt;/P&gt;&lt;P&gt;Help will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sourabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 07:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185433#M465264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T07:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with calling Transaction LS24</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185434#M465265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perhaps first use event&lt;/P&gt;&lt;P&gt;AT-LINE-SELECTION&lt;/P&gt;&lt;P&gt;and then do your SET PARAMETER ID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 07:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185434#M465265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T07:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with calling Transaction LS24</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185435#M465266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for some fields on a screen you see according data dictionary a parameter id-&amp;gt;but the usage whether the program is using it or not is not defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use a call transaction like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'LS24' using bdcdata mode &amp;lt;mode&amp;gt; messages into message_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Mode&amp;gt; can have values A, N, E (see SM35) &lt;/P&gt;&lt;P&gt;pass in bdcdata the values (matnr, lgnum and so on.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;JP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 11:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-calling-transaction-ls24/m-p/2185435#M465266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T11:33:53Z</dc:date>
    </item>
  </channel>
</rss>

