<?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: Enter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402802#M817080</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; Can you provide your code?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2008 09:07:11 GMT</pubDate>
    <dc:creator>soumya_jose3</dc:creator>
    <dc:date>2008-02-11T09:07:11Z</dc:date>
    <item>
      <title>Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402801#M817079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi evryone &lt;/P&gt;&lt;P&gt;I have an input screen.Where in if i am giving values it is not getting executed but if i come back and execute it is getting executed orelse if i pres "ENTER" then it is execting the first time itself.How to over come this problem...Please help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402801#M817079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T09:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402802#M817080</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; Can you provide your code?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:07:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402802#M817080</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-02-11T09:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402803#M817081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;vijay krishna&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When pressing &lt;STRONG&gt;Enter&lt;/STRONG&gt; PAI event will triggering so it is executing..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Could give me your code for more clarity then only we are able to solve your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402803#M817081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T09:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402804#M817082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Here is the code...Sorry for late reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_werks TYPE werks_d OBLIGATORY,   " Plant&lt;/P&gt;&lt;P&gt;             p_gjahr TYPE mjahr   OBLIGATORY.     " Fiscal year&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: p1 FOR v_p1 OBLIGATORY.&lt;/P&gt;&lt;P&gt;RANGES:r1 for v_p1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END   OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen output.&lt;/P&gt;&lt;P&gt;read table p1 index 1.&lt;/P&gt;&lt;P&gt;r1-sign = 'I'.&lt;/P&gt;&lt;P&gt;r1-option = 'EQ'.&lt;/P&gt;&lt;P&gt;while p1-low LE p1-high.&lt;/P&gt;&lt;P&gt;r1-low = p1-low.&lt;/P&gt;&lt;P&gt;append r1.&lt;/P&gt;&lt;P&gt;p1-low = p1-low + 1.&lt;/P&gt;&lt;P&gt;endwhile.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402804#M817082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T09:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402805#M817083</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;Use start-of-selection instead of at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_werks TYPE werks_d OBLIGATORY, " Plant&lt;/P&gt;&lt;P&gt;p_gjahr TYPE mjahr OBLIGATORY. " Fiscal year&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: p1 FOR v_p1 OBLIGATORY.&lt;/P&gt;&lt;P&gt;RANGES:r1 for v_p1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Start-of-selection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;read table p1 index 1.&lt;/P&gt;&lt;P&gt;r1-sign = 'I'.&lt;/P&gt;&lt;P&gt;r1-option = 'EQ'.&lt;/P&gt;&lt;P&gt;while p1-low LE p1-high.&lt;/P&gt;&lt;P&gt;r1-low = p1-low.&lt;/P&gt;&lt;P&gt;append r1.&lt;/P&gt;&lt;P&gt;p1-low = p1-low + 1.&lt;/P&gt;&lt;P&gt;endwhile.&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;Soumya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402805#M817083</guid>
      <dc:creator>soumya_jose3</dc:creator>
      <dc:date>2008-02-11T09:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Enter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402806#M817084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi soumya,&lt;/P&gt;&lt;P&gt;Problem solved.Thanks a lot..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 09:33:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enter/m-p/3402806#M817084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T09:33:12Z</dc:date>
    </item>
  </channel>
</rss>

