<?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 Calender in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415424#M539117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the selection screen for one of the fields I want to add calender for choosing the date.&lt;/P&gt;&lt;P&gt;How can do that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 21:26:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T21:26:01Z</dc:date>
    <item>
      <title>Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415424#M539117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the selection screen for one of the fields I want to add calender for choosing the date.&lt;/P&gt;&lt;P&gt;How can do that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415424#M539117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415425#M539118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare parameter as type SY-DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMTER p_date TYPE SY_DATUM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415425#M539118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415426#M539119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just define the type as d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PARAMETERS : P_DATE LIKE SY-DATUM.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it will automatically give you the calendar when u press F4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415426#M539119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415427#M539120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field is actually defined in the select options and it's a CHAR type...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415427#M539120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415428#M539121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Define the selection parameter/option as type D or reference it to sy-datum. When the user hits the drop down key, it will give them the calendar view and F4 and F2 will put the current systems date into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. Points are always welcome.&lt;/P&gt;&lt;P&gt;Minami&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415428#M539121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415429#M539122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since it's a character type it's not accepting any date values..&lt;/P&gt;&lt;P&gt;How to fix this problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:35:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415429#M539122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415430#M539123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case, you do not want to change the screen field to date then use function F4_DATE_CONTROL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_DATE-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION F4_DATE_CONTROL&lt;/P&gt;&lt;P&gt;EXPORTING...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_DATE-HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION F4_DATE_CONTROL&lt;/P&gt;&lt;P&gt;EXPORTING...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will receive the selected date in IMPORTING parameter SELECT_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points to all useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 22:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415430#M539123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T22:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calender</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415431#M539124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why can't you change it to a date select option instead of char?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 23:13:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calender/m-p/2415431#M539124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T23:13:19Z</dc:date>
    </item>
  </channel>
</rss>

