<?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: regarding selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461695#M552371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you attached a function code to your push button ? If not, please do that, because without that, AT USER-COMMAND event wont be triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 04:37:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T04:37:04Z</dc:date>
    <item>
      <title>regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461689#M552365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have created a push button on my selection screen. i want to call a perform by clicking this pusbutton. now the problem is in my perform, i have called the same screen, in which i have included my push button. i have written this in the event &lt;/P&gt;&lt;P&gt;at selection-screen output. So there is a dump thrown by SAP. the problem is it is going into calling the the screen infinite number of times. moreover i cant use &lt;/P&gt;&lt;P&gt;at selection-screen, as im doing a BDC recording, so the include of BDC, which comes into the program by default, already has at selection-screen event. so if i declare it in my program its also throwing an error.So, can some body  help me in giveing a solution to this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg. i want to do some validation and want to print it by clicking my push button for a given pernr and for a given date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 03:44:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461689#M552365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T03:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461690#M552366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using a flag variable and set it to true and false...so that the iterations happens only once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 03:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461690#M552366</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2007-07-06T03:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461691#M552367</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 event &amp;lt;b&amp;gt;AT USER-COMMAND&amp;lt;/b&amp;gt;. Whatever you want to do after clicking the push button, write that code under this event. So, whenever you click on the push button, this event will be triggered and hence your code will be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 03:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461691#M552367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T03:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461692#M552368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;write the following code&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: flag type i value 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucom.&lt;/P&gt;&lt;P&gt;when 'CLICK'&lt;/P&gt;&lt;P&gt;if flag eq 0,&lt;/P&gt;&lt;P&gt;include&lt;/P&gt;&lt;P&gt;flag = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will work for u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz dont forget to reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 03:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461692#M552368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T03:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461693#M552369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;  This at selection screen output is using for only design the selection screen. based on the user action on the u want to display the output, right? so use event at user command as mentioned in the Mukul suggestion. or mention in the start of selection like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt; when 'FCPDE'.&lt;/P&gt;&lt;P&gt; Perform display_output.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;Hope this helps you. Reply for queries, shall post the updates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.  &lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 04:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461693#M552369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T04:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461694#M552370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi mukul im calling my perform in at user command. but im not able to do any thing at the clikck of the button. rather i had put a break point on the line at user-command. but at the click of button its not going in the debugging mode. help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 04:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461694#M552370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T04:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461695#M552371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhvi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you attached a function code to your push button ? If not, please do that, because without that, AT USER-COMMAND event wont be triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 04:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461695#M552371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T04:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: regarding selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461696#M552372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes mukul i have assigned function code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is:&lt;/P&gt;&lt;P&gt;at user-command.&lt;/P&gt;&lt;P&gt;IF SSCRFIELDS-UCOMM = 'ABCD'.&lt;/P&gt;&lt;P&gt;   perform information_about.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where in the declaration of push button i have written:&lt;/P&gt;&lt;P&gt;selection-screen: begin of block b3 with frame title text-tit.&lt;/P&gt;&lt;P&gt;selection-screen: begin of line.&lt;/P&gt;&lt;P&gt;selection-screen  PUSHBUTTON 20(20) text-033&lt;/P&gt;&lt;P&gt;                   USER-COMMAND ABCD MODIF ID SG.&lt;/P&gt;&lt;P&gt;                   selection-screen: end of line.&lt;/P&gt;&lt;P&gt;selection-screen: end of block b3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 04:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-selection-screen/m-p/2461696#M552372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T04:43:57Z</dc:date>
    </item>
  </channel>
</rss>

