<?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: Double Click functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107951#M1185007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;step1. using BDC recording method record the transaction to select the accounting 2 view. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step2. In your report code at line selection event, call the transaction 'MM03' using BDC table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Feb 2009 11:17:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-07T11:17:52Z</dc:date>
    <item>
      <title>Double Click functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107947#M1185003</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;   I have a report where material is one of the output field.&lt;/P&gt;&lt;P&gt;When user double clicks on material number it should call MM03 from the report and it should directly take to Accounting 2 view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can it be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2009 12:17:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107947#M1185003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-06T12:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Double Click functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107948#M1185004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this by using BDC. Do the recording by selecting the Accounting 2 view only (and deselecting both the Basic views).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call the transaction MM03 using the BDC table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pushpraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2009 14:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107948#M1185004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-06T14:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Double Click functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107949#M1185005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi bro....&lt;/P&gt;&lt;P&gt;in your report program go for a event...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;CASE SY-LSIND.&lt;/P&gt;&lt;P&gt;WHEN 1.&lt;/P&gt;&lt;P&gt;  here you can call MM01 **&lt;/P&gt;&lt;P&gt;WHEN 2.&lt;/P&gt;&lt;P&gt;   here you can call MM01 **&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;you should call it only at place that is according to your sy-lsind value of your list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 09:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107949#M1185005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-07T09:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Double Click functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107950#M1185006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you double click on the list.it triggers AT line-selection.   event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when you double click you write your code in this event in the following manner to stop at MM03 at accounting 2 view&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;case sy-lsind.&lt;/P&gt;&lt;P&gt;  when 1.&lt;/P&gt;&lt;P&gt;    ( First do the recording of MM03 and get the BDC data table populated with program name and screen number and fields required and also the OKCODE to be executed )&lt;/P&gt;&lt;P&gt;    (  Then call the tansaction using  &lt;/P&gt;&lt;P&gt;     CALL Transaction MM03 using &amp;lt;bdc_table_name&amp;gt; mode 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mode E because you want the transaction to be stopped at accounting 2 view. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;encase.&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;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 11:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107950#M1185006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-07T11:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Double Click functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107951#M1185007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;step1. using BDC recording method record the transaction to select the accounting 2 view. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;step2. In your report code at line selection event, call the transaction 'MM03' using BDC table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Feb 2009 11:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/double-click-functionality/m-p/5107951#M1185007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-07T11:17:52Z</dc:date>
    </item>
  </channel>
</rss>

