<?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: SELECTION SCREEN ISSUES! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032886#M963889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try this &amp;gt;&lt;/P&gt;&lt;P&gt;remove the OBLGATORY option of screen parameter.&lt;/P&gt;&lt;P&gt;&amp;amp; you can use event &lt;SPAN __default_attr="green" __jive_macro_name="color"&gt; AT SELECTION-SCREEN on&lt;/SPAN&gt; to check if there is value entered or not.&lt;/P&gt;&lt;P&gt;if no value is entered in mandatory field you can display a error message in same event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN ON s_field.
  IF  s_field IS INITIAL
        MESSAGE e001.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 08:28:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T08:28:13Z</dc:date>
    <item>
      <title>SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032882#M963885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this selection screen, and at the top I have two fields (material code and supplier code). I have made this so that when I put material code and press enter I have another field besides it which displays the material description.&lt;/P&gt;&lt;P&gt;The same goes with the supplier code.....&lt;/P&gt;&lt;P&gt;But recently I made in the screen two fields required, thats the problem now cause when I press enter I dont see the description but it "tells" me to complete first the required fields. Of course if I do it then it displays the description!!!&lt;/P&gt;&lt;P&gt;Is there a way to see the descriptions (there is an event behind) and then to continue with the others fields? In spite of the fact that some of them are "required"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032882#M963885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T08:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032883#M963886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chek if in your SELECT-OPTIONS "obligatory" is thr...if so...then remove the same....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if the above ans is useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:04:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032883#M963886</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-06-19T08:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032884#M963887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  If you set the 2 fields as mandatory then you will have to enter them first , as this if the first check performed by the system. It proceeds to the other events after this check is passed.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032884#M963887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T08:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032885#M963888</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;If the selection screen fields are given as mandatory, we need to fill them first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, remove the mandatory conditions on both fields.&lt;/P&gt;&lt;P&gt;If field1 is entered; field2 is blank and ENTER is pressed, display the desctiption1.&lt;/P&gt;&lt;P&gt;If field1 is entered; field2 is entered and ENTER is pressed, display desc1 and desc2.&lt;/P&gt;&lt;P&gt;If field1 is blank; field2 is entered and ENTER is pressed, display desc2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;teja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032885#M963888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T08:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032886#M963889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try this &amp;gt;&lt;/P&gt;&lt;P&gt;remove the OBLGATORY option of screen parameter.&lt;/P&gt;&lt;P&gt;&amp;amp; you can use event &lt;SPAN __default_attr="green" __jive_macro_name="color"&gt; AT SELECTION-SCREEN on&lt;/SPAN&gt; to check if there is value entered or not.&lt;/P&gt;&lt;P&gt;if no value is entered in mandatory field you can display a error message in same event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN ON s_field.
  IF  s_field IS INITIAL
        MESSAGE e001.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032886#M963889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T08:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032887#M963890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can remove the Obligatory statement .&lt;/P&gt;&lt;P&gt;And at selection screen event check the sy-ucomm code of F8.&lt;/P&gt;&lt;P&gt;Then check if the field is empty then throw error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter: P1 type c length 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;if p1 is initial.&lt;/P&gt;&lt;P&gt;message 'message ' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will help you out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help children of U.N World Food Program by rewarding  points and encourage others to answer your queries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 12:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032887#M963890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T12:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032888#M963891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;chain&lt;/P&gt;&lt;P&gt;endchain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 12:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032888#M963891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T12:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032889#M963892</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 this.&lt;/P&gt;&lt;P&gt;remove the obligatory addition if any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON &amp;lt;FIELD1&amp;gt;.
if p_field1 is initial.
message e001(class).
else.
&amp;lt;description code&amp;gt;.
endif.

AT SELECTION-SCREEN ON &amp;lt;FIELD2&amp;gt;.
if p_field2 is initial.
message e001(class).
else.
&amp;lt;description code&amp;gt;.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;This will definetly work.&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 12:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032889#M963892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T12:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032890#M963893</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;When we have some mandatory fields in a selection screen, first we need to fill all these fields.&lt;/P&gt;&lt;P&gt;then only we can see next options.&lt;/P&gt;&lt;P&gt;if you want to it otherwise i.e. after filling one field you want to see the field beside it.&lt;/P&gt;&lt;P&gt;Remove obligatory option. After this it will work fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 09:27:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032890#M963893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T09:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: SELECTION SCREEN ISSUES!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032891#M963894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey as you made  both fields  Mandatory the error message is of type   'E' occurs in the PBO event and the display u want to see happens in the PAI event so u have to see that u can give the code what u want in the PBO event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Devanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jun 2008 01:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-issues/m-p/4032891#M963894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-27T01:24:34Z</dc:date>
    </item>
  </channel>
</rss>

