<?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: Function to get the exact date in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832582#M921613</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;&lt;/P&gt;&lt;P&gt;Use FM RE_ADD_MONTH_TO_DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2008 05:21:26 GMT</pubDate>
    <dc:creator>former_member386202</dc:creator>
    <dc:date>2008-05-09T05:21:26Z</dc:date>
    <item>
      <title>Function to get the exact date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832581#M921612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am searching for a function to get the exact date for certain year.&lt;/P&gt;&lt;P&gt;For example, I would like to know the exact date after 3 years from today.&lt;/P&gt;&lt;P&gt;Because we need to consider the leap year, therefore I cannot do it in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;365 (days) * 3 Year(s)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion which function I can use here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All ideas and suggestion are greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 05:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832581#M921612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T05:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get the exact date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832582#M921613</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;&lt;/P&gt;&lt;P&gt;Use FM RE_ADD_MONTH_TO_DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 05:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832582#M921613</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2008-05-09T05:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get the exact date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832583#M921614</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 use the FM RE_ADD_MONTH_TO_DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_DATE TYPE SYDATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_DATE = SY-DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;MONTHS = '36'&lt;/P&gt;&lt;P&gt;OLDDATE = V_DATE&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;NEWDATE = V_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'After 3 Years', V_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 05:23:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832583#M921614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T05:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get the exact date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832584#M921615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much for the answers.&lt;/P&gt;&lt;P&gt;Especially to Anurodh Jindal, whose provide the example to me as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 05:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832584#M921615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T05:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get the exact date</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832585#M921616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that the above function is used for calculate the date after added certain month(s).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, how do I do it in the other way. What I mean here is I want to substract the date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example my current date is 09.05.2008, substract 3 years is 09.05.2005.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All ideas and suggestion are greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 07:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-the-exact-date/m-p/3832585#M921616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T07:36:32Z</dc:date>
    </item>
  </channel>
</rss>

