<?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: at selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786339#M1121106</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tanisha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you declared a parameter p_preis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first you select all the values of preis as per your need and then you delete from the internal table like this.&lt;/P&gt;&lt;P&gt;Delete i_table where preis le p_preis.&lt;/P&gt;&lt;P&gt;hope it will solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2008 12:44:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-25T12:44:17Z</dc:date>
    <item>
      <title>at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786331#M1121098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all..&lt;/P&gt;&lt;P&gt;in the Alv report on the selection screen,i have given one fields for which only entries greater/above 100 $ should be displayed.Although while making variant i am givng the field value as 100,but it is not able to relate this value as a value in USD.kindly let me know what is to be made changes as a part of validating this field on the selction.&lt;/P&gt;&lt;P&gt;thnks in adv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 11:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786331#M1121098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T11:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786332#M1121099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Post u r code which u have written at at selection-screen ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regareds&lt;/P&gt;&lt;P&gt;Sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 11:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786332#M1121099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T11:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786333#M1121100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: field type p decimals 2.

AT SELECTION-SCREEN.

IF field le '100.00'.
  MESSAGE 'Only amounts greater that 100 are permitted' TYPE 'E'.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will prompt an error message each time user enters amount less or equal to 100, hence will not allow to go further in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help you&lt;/P&gt;&lt;P&gt;M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 11:59:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786333#M1121100</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2008-11-25T11:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786334#M1121101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i havent written at selection screen till now.&lt;/P&gt;&lt;P&gt;the slection scren parameter is eban-preis.&lt;/P&gt;&lt;P&gt;now i want to put eban-preis &amp;gt; 100$ in the logic,for this condition only,it should give the display and not lesser than that.&lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786334#M1121101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T12:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786335#M1121102</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;Try like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection screen on field &amp;lt;give selection field name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if &amp;lt;selectionfieldname&amp;gt; GT '100$'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;THROW ERROR MESSAGE.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786335#M1121102</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-11-25T12:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786336#M1121103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USE :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON S_QTY.&lt;/P&gt;&lt;P&gt;  IF NOT S_QTY IS INITIAL.&lt;/P&gt;&lt;P&gt;    IF S_QTY LE 100&lt;/P&gt;&lt;P&gt;     MESSAGE.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786336#M1121103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T12:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786337#M1121104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am sorry if i am unable to pass on the correct idea.&lt;/P&gt;&lt;P&gt;the requireemtn is like.&lt;/P&gt;&lt;P&gt;i have certain fields on the slection screen,one of those is coming from eban-preis.Now on the selection if i am inputting 100,it should only display the conversions above 100 $ only.&lt;/P&gt;&lt;P&gt;there are conversions which are in other currency also but i am displaying the conversions in dollars only.&lt;/P&gt;&lt;P&gt;So,my question is....i wish to add a code,may be before the display of the final alv for which only the converted value above 100$ should be displayed.&lt;/P&gt;&lt;P&gt;hope i explained properly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786337#M1121104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T12:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786338#M1121105</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;try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_value(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate &amp;lt;selection screen field&amp;gt; '$' into v_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;condende : v_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the final internal table is it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete it_final where &amp;lt;give the field&amp;gt; LE V_value.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786338#M1121105</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-11-25T12:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: at selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786339#M1121106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tanisha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you declared a parameter p_preis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So first you select all the values of preis as per your need and then you delete from the internal table like this.&lt;/P&gt;&lt;P&gt;Delete i_table where preis le p_preis.&lt;/P&gt;&lt;P&gt;hope it will solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/4786339#M1121106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T12:44:17Z</dc:date>
    </item>
  </channel>
</rss>

