<?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 Regarding interactive Alv in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146518#M1514077</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      i am developing the alv interactive report . such that if any user clicks on particular matnr then it has to go for the MM02 Transaction Accounting tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i should not do BDC. i am using function module called selection_view_find. how to acheive it? i am keep trying but not able to search in sdn . if possible post the sample code without doing bdc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{ IF rs_selfield-fieldname = 'MATNR'.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{READ TABLE t_vbap INTO w_vbap INDEX rs_selfield-tabindex.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{SET PARAMETER ID 'MAT' FIELD w_vbap-matnr.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{ CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Aug 2010 13:08:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-27T13:08:06Z</dc:date>
    <item>
      <title>Regarding interactive Alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146518#M1514077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      i am developing the alv interactive report . such that if any user clicks on particular matnr then it has to go for the MM02 Transaction Accounting tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i should not do BDC. i am using function module called selection_view_find. how to acheive it? i am keep trying but not able to search in sdn . if possible post the sample code without doing bdc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{ IF rs_selfield-fieldname = 'MATNR'.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{READ TABLE t_vbap INTO w_vbap INDEX rs_selfield-tabindex.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{SET PARAMETER ID 'MAT' FIELD w_vbap-matnr.}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;{ CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 13:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146518#M1514077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T13:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding interactive Alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146519#M1514078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF rs_selfield-fieldname = 'MATNR'.
  READ TABLE t_vbap INTO w_vbap INDEX rs_selfield-tabindex.
  SET PARAMETER ID 'MAT' FIELD w_vbap-matnr. " material number
  SET PARAMETER ID 'WRK' FIELD w_vbap-werks. " Plant
  SET PARAMETER ID 'BWT' FIELD w_vbap-bwtar. " Valuation type
  SET PARAMETER ID 'MXX' FIELD 'B'. " function(s) to call
  CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Check table T132(T) for values of MXX parameter, and provide every required parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 13:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146519#M1514078</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-08-27T13:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding interactive Alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146520#M1514079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have used the function module called material_maintain_dialogue .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by passing the plant, material and screen tab number into that function module we can go to any required tab. if any queries contact me. i will suggest you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Aug 2010 06:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/7146520#M1514079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-31T06:54:40Z</dc:date>
    </item>
  </channel>
</rss>

