<?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: Date Defaulted or User Specified? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126627#M446570</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;SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETER: s_datum LIKE sy-datum OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;INITIALIZATION.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of At selection screen output put ur code in initilization part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Apr 2007 13:41:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-19T13:41:53Z</dc:date>
    <item>
      <title>Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126624#M446567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the selection-screen I want it to default to today's date - 90 days. So I have the fllowing code that works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETER:          s_datum LIKE sy-datum OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is I also want the user to be able to enter a date. But it keeps getting wiped out by my AT SELECTION-SCREEN OUTPUT event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I work around this so it either defaults to sy-datum - 90 days, or the user can enter his own date?&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 Apr 2007 13:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126624#M446567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126625#M446568</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;data:date type sy-datum.&lt;/P&gt;&lt;P&gt;date = sy-datum - 90.&lt;/P&gt;&lt;P&gt;use PARAMETER: s_datum LIKE sy-datum OBLIGATORY default date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:41:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126625#M446568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126626#M446569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Write like this and see&lt;/P&gt;&lt;P&gt;s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETER: s_datum LIKE sy-datum OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization:&lt;/P&gt;&lt;P&gt;s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126626#M446569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126627#M446570</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;SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETER: s_datum LIKE sy-datum OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;INITIALIZATION.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of At selection screen output put ur code in initilization part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126627#M446570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126628#M446571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use DEFAULT addition in parameter decleration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:42:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126628#M446571</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2007-04-19T13:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126629#M446572</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;change your code as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETER: s_datum LIKE sy-datum OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    if s_datum is initial.&lt;/P&gt;&lt;P&gt;    s_datum = sy-datum - 90.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it solves your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Navneeth.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126629#M446572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126630#M446573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did the above code solve your purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Navneeth.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126630#M446573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126631#M446574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Navneeth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It did partially in that this will work. &lt;/P&gt;&lt;P&gt;My only contention is that when the user sees the selection screen, the sy-datum - 90 is not displayed it ionly gerts displayed i the background when the field is empty. I am thinking it is probably just as easy to create a transaction that uses a variant with sy-datum - 90, and they can replace the date if they want to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 13:59:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126631#M446574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T13:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126632#M446575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should only need to do it in the INITIALIZATION event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zrich_0001.


SELECTION-SCREEN BEGIN OF BLOCK process WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP 1.
PARAMETER: s_datum LIKE sy-datum OBLIGATORY.
SELECTION-SCREEN END OF BLOCK process.

INITIALIZATION.    "&amp;lt;--  HERE

  s_datum = sy-datum - 90.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126632#M446575</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-19T14:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126633#M446576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently wat happens is when the selection screen comes the value for s_datum is given by default and when the user changes it then the s_datum is assigned that value. now, what is your proper reqmnt can u give me some example how you want it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Navneeth.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126633#M446576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126634#M446577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am going with a custom transaction for the user to execute with the date logic in the variant, then the date (date - 90 days) displayed on the screen at execution, and the date can be over written and stay that way by the user if they want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    Thank-You Everybody!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126634#M446577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126635#M446578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom, I am ready confused as to why you are jumping thru hoops on this one.  If you simply want to default the date in the parameter as sy-datum - 90,  then simply do so in the INITIALIZATION event of your report program,  this is set once, and then the user could change it to whatever, but could simply execpt the default date.  Is this not the requirement?&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126635#M446578</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-19T14:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126636#M446579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code does populate the date as sy-datum - 90 days on the selection screen. However, when I execute the job, and put my own date in the selection screen, it gets wiped out and goes back to sy-datum - 90 days during initialization.&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 Apr 2007 14:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126636#M446579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126637#M446580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you append the select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INITIALIZATION.     
  s_datum = sy-datum - 90.
  append s_datum. "&amp;lt;----here&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126637#M446580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126638#M446581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh it looks like it is a paramter then no need to qppend&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126638#M446581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126639#M446582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,  I don't believe it.  Post your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126639#M446582</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-19T14:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126640#M446583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example, test this short program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  zrich_0001.

PARAMETERS: p_datum TYPE sy-datum.

INITIALIZATION.

  p_datum = sy-datum - 90.

START-OF-SELECTION.

  WRITE:/ p_datum.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It defaults the date 90 days ago, you can then change it to whatever, and execute the report.  It will then write whatever date you had entered in the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;RIch HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126640#M446583</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-19T14:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126641#M446584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked....elementary mistake...."start-of-selection" was missing.&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 Apr 2007 14:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126641#M446584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T14:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-Screen: Date Defaulted or User Specified?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126642#M446585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahhh yes,  START-OF-SELECTION is always important, especially when using other event blocks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 14:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-date-defaulted-or-user-specified/m-p/2126642#M446585</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-19T14:52:05Z</dc:date>
    </item>
  </channel>
</rss>

