<?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 Selection screen help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209132#M472973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I have selection screen for sy-datum and I wont&lt;/P&gt;&lt;P&gt;That the 2 field of date will be required &amp;lt;b&amp;gt;not just the first&amp;lt;/b&amp;gt; one&lt;/P&gt;&lt;P&gt;how i can do that&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS so_date  FOR sy-datum OBLIGATORY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2007 08:04:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-01T08:04:48Z</dc:date>
    <item>
      <title>Selection screen help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209132#M472973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow I have selection screen for sy-datum and I wont&lt;/P&gt;&lt;P&gt;That the 2 field of date will be required &amp;lt;b&amp;gt;not just the first&amp;lt;/b&amp;gt; one&lt;/P&gt;&lt;P&gt;how i can do that&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS so_date  FOR sy-datum OBLIGATORY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 08:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209132#M472973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T08:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209133#M472974</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;You can change the requred settings statically, by removing/adding the OBLIGATORY keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or dynamically, like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
  IF screen-name = 'SO_DATE'.
    screen-required = 0.
    MODIFY SCREEN.
  ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 08:16:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209133#M472974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T08:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209134#M472975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen.
if so_date-high is initial.
  message e001(ZZ) with 'enter TO Date'.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 08:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209134#M472975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T08:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209135#M472976</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;check this code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its working..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS so_date FOR sy-datum OBLIGATORY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;  IF SCREEN-NAME = 'SO_DATE-HIGH'.&lt;/P&gt;&lt;P&gt;     SCREEN-REQUIRED = 1.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 08:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209135#M472976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T08:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209136#M472977</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 need to write the code in the AT SELECTION-SCREEN Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if SO_DATE-HIGH is initial.&lt;/P&gt;&lt;P&gt; message E001 with text-001.    " Enter the to date alsol&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;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 08:20:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-help/m-p/2209136#M472977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T08:20:34Z</dc:date>
    </item>
  </channel>
</rss>

