<?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 Issue with 'Enter' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463697#M1554244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing a dialogue program which have a table control in it. It have custom buttons like 'Create', 'Save', 'Delete'. When ever i press enter key after performing any of the three operations, the last operation is getting performed again ( last sy-ucomm action is performed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we solve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viswanath A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Nov 2010 07:13:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-16T07:13:26Z</dc:date>
    <item>
      <title>Issue with 'Enter'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463697#M1554244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing a dialogue program which have a table control in it. It have custom buttons like 'Create', 'Save', 'Delete'. When ever i press enter key after performing any of the three operations, the last operation is getting performed again ( last sy-ucomm action is performed).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we solve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viswanath A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 07:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463697#M1554244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-16T07:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with 'Enter'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463698#M1554245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to clear the sy-ucomm field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other alternative would be to handle enter command.When press Enter dont do anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 07:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463698#M1554245</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-11-16T07:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with 'Enter'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463699#M1554246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare a global variable of type SY-UCOMM normally it is called GV_OKCODE and after that assign  sy-ucomm toGV_OKCODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perform all the operation based on ok code and clear it after the operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Nov 2010 07:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463699#M1554246</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2010-11-16T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with 'Enter'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463700#M1554247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;define the okcode in the element list of flow logic for the TYPE OF SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define this in global&lt;/P&gt;&lt;P&gt;DATA : ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;             okcode TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;define this in PAI user command&lt;/P&gt;&lt;P&gt;ok_code = okcode.&lt;/P&gt;&lt;P&gt;clear okcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'CREAT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&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;Madhukar Shetty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Nov 2010 05:11:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-enter/m-p/7463700#M1554247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-17T05:11:05Z</dc:date>
    </item>
  </channel>
</rss>

