<?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 Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895347#M1143485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Off Course its a custom screen and i havnt written any code for Double Click..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vijaya on Dec 15, 2008 7:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Dec 2008 18:17:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-15T18:17:36Z</dc:date>
    <item>
      <title>Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895342#M1143480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In one of my Output screens, i am having a table control,&lt;/P&gt;&lt;P&gt;here my problem comes when i double click on any one row &lt;/P&gt;&lt;P&gt;of respective table control it is performing some actions,&lt;/P&gt;&lt;P&gt;here my req is, it should do nothing when i double click a row in table control.&lt;/P&gt;&lt;P&gt;i.e I should disable the double click in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 17:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895342#M1143480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T17:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895343#M1143481</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;U need to create a module in PAI where u get the field name where the double click is done, and then check the field name in your user_command in order to stop the action assigned to doubleclick if the field belongs to table control:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS PAI
  
  LOOP AT .....
    MODULE GET_CURSOR.
  ENDLOOP.
  
  MODULE USER_COMMAND.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE GET_CURSOR.
  GET CURSOR FIELD V_FIELDNAME.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE USER_COMMAND.
   CASE OK_CODE.
      WHEN &amp;lt;double click&amp;gt;.
         CHECK V_FIELDNAME &amp;lt;&amp;gt; ........
   ENDCASE.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 17:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895343#M1143481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T17:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895344#M1143482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its really helpful but what is the FCODE for  &amp;lt;double click&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 17:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895344#M1143482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T17:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895345#M1143483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is this a standard screen or a custom screen ? If it is a custom screen and you have added the table control, then there is no functionality attached to the double click unless you code for it. So you can remove that code where the double click is handled. But if it is a standard screen , you can do very little about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895345#M1143483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895346#M1143484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here in debugging mode i am getting Fcode(sy-ucomm) as CREATE &lt;/P&gt;&lt;P&gt;where in my prog i am using CREATE for creating orders,&lt;/P&gt;&lt;P&gt;so i cant terminate this which may efect my original functionality,&lt;/P&gt;&lt;P&gt;is there any alternative,Plz advice me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:15:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895346#M1143484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895347#M1143485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Off Course its a custom screen and i havnt written any code for Double Click..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vijaya on Dec 15, 2008 7:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895347#M1143485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895348#M1143486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So then what is the issue ? Are you saying that when you double click, the sy-ucomm is CREATE ? May be you are not clearing the OK_CODE where you are handling the same in the PAI modules.&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module user_command.
 data l_ok_code type sy-ucomm.
 l_ok_code = ok_code.
 clear ok_code.
endmodule.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895348#M1143486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895349#M1143487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the screen painter, press attribute button (F2) and then select the table control. Press the 'none' radio button for line selection. Save and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895349#M1143487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895350#M1143488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That cant be done Rob since i need to select multiple entries where i can EDIT etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 18:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895350#M1143488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T18:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895351#M1143489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anybody Plz Respond....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vijaya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 20:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895351#M1143489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T20:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895352#M1143490</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;U should considere the ok_code for doubleclick is assigned in your status gui: it's ok_code linked to keyboard F2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u should check your status gui of your dynpro: if the OK_CODE = CREATE for doubleclick, it means F2 is assigned CREATE in menu painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 09:36:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/4895352#M1143490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T09:36:55Z</dc:date>
    </item>
  </channel>
</rss>

