<?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 that return the next month in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642674#M286208</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_BR_ADD_MONTH_TO_DATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    DMM_DATIN       = dateinput (like sy-datum)&lt;/P&gt;&lt;P&gt;    DMM_COUNT       = 1&lt;/P&gt;&lt;P&gt;    DMM_OPER        = '+'&lt;/P&gt;&lt;P&gt;    DMM_POS         = 0&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   DMM_DAOUT       = data output (like sy-datum)&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   UNKNOWN         = 1&lt;/P&gt;&lt;P&gt;   OTHERS          = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will add one month to the input date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shiba prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Nov 2006 10:34:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-13T10:34:59Z</dc:date>
    <item>
      <title>Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642667#M286201</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 need a Function that retun the next month in the format: yyyymmdd (without points) if it´s possible or yyyymm. The first option is better than the second one. My import parameter has the format: yyyymmdd.&lt;/P&gt;&lt;P&gt;Maybe, I'll be useful a similar function but with the next day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:12:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642667#M286201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642668#M286202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with FM /BEV4/PLPS__ADD_MONTH_TO_DATE or SG_PS_ADD_MONTH_TO_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But most of the FM accepts the dates in sy-datum format only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So whatever date format you have you can convert them into sy-datum form then try to use above FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642668#M286202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642669#M286203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: wa_date like sy-datum.
call function 'RP_CALC_DATE_IN_INTERVAL'
exporting
date = sy-datum
days = 0
months = 1
signum = '+'
years = 0
importing
calc_date = wa_date.
write: wa_date.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kishan negi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642669#M286203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642670#M286204</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 out the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RE_ADD_MONTH_TO_DATE.&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;Nagraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642670#M286204</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-11-13T10:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642671#M286205</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;simple chk this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : wa_date type sy-datum.
 
call function 'RP_CALC_DATE_IN_INTERVAL'
exporting
date = sy-datum
days =  0
months = 1 --------------------&amp;gt; give ur required month
years = 0
signum = '+'        -------------&amp;gt; add sign
importing
calc_date = wa_date.
 
write :/ wa_date. -&amp;gt; next month date in sy-datum format.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Anver &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642671#M286205</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-13T10:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642672#M286206</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;PRE&gt;&lt;CODE&gt;PARAMETERS: P_DAY LIKE SY-DATUM.

DATA: NEXT_MONTH(6).
DATA: LAST_DAY LIKE Y-DATUM.


* Set the first day
LAST_DAY = P_DAY.
LAST_DAY+6(2) = '01'.

* Get last day

CALL FUNCTION 'LAST_DAY_OF_MONTHS'
     EXPORTING 
          DAY_IN = LAST_DAY
     IMPORTING 
          LAST_DAY_OF_MONTH = LAST_DAY.

* Get next month
LAST_DAY = LAST_DAY + 1.
NEXT_MONTH = LAST_DAY(6).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642672#M286206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642673#M286207</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 out..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Function module              MONTH_PLUS_DETERMINE


&amp;lt;b&amp;gt;Import parameters               Value&amp;lt;/b&amp;gt;

MONTHS                          1
OLDDATE                         13.11.2006


&amp;lt;b&amp;gt;Export parameters               Value&amp;lt;/b&amp;gt;

NEWDATE                         13.12.2006&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out this code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  zztest_date                             .


DATA :

months_offest(2)         TYPE c,
present_date             TYPE  sy-datum,
future_date              TYPE  sy-datum.


*--Present Date
present_date  = sy-datum.

*--Future date with Months as offset
months_offest = '1'   .   "Date after 1 month

CALL FUNCTION 'MONTH_PLUS_DETERMINE'
  EXPORTING
    months  = months_offest
    olddate = present_date
  IMPORTING
    newdate = future_date.


*--Output format in yyymmdd (without points)
WRITE : future_date.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Arun Sambargi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:21:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642673#M286207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642674#M286208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_BR_ADD_MONTH_TO_DATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    DMM_DATIN       = dateinput (like sy-datum)&lt;/P&gt;&lt;P&gt;    DMM_COUNT       = 1&lt;/P&gt;&lt;P&gt;    DMM_OPER        = '+'&lt;/P&gt;&lt;P&gt;    DMM_POS         = 0&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   DMM_DAOUT       = data output (like sy-datum)&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   UNKNOWN         = 1&lt;/P&gt;&lt;P&gt;   OTHERS          = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will add one month to the input date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shiba prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642674#M286208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642675#M286209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just execute the code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF intern OCCURS 0.
        INCLUDE STRUCTURE  RSINTRANGE.
DATA: END OF intern.
data : date like sy-datum,
       datex(10) type c.
CALL FUNCTION 'RS_VARI_V_1_NEXT_MONTH'
 IMPORTING
   P_DATE           =  date
  TABLES
    p_intrange       = intern.


write:/ date.
datex = date.

write:/ datex.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642675#M286209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642676#M286210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just execute teh code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my prev post will give u the answer ..&lt;/P&gt;&lt;P&gt;this is the more precise way for getting the date to internal format ..&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;VIjay&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF intern OCCURS 0.
        INCLUDE STRUCTURE  RSINTRANGE.
DATA: END OF intern.
data : date like sy-datum,
       datex(10) type c.
CALL FUNCTION 'RS_VARI_V_1_NEXT_MONTH'
 IMPORTING
   P_DATE           =  date
  TABLES
    p_intrange       = intern.


write:/ date.
*datex = date.
write date to datex.
*write:/ datex.

CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
  EXPORTING
    date_external                 = datex
 IMPORTING
   DATE_INTERNAL                  = datex
 EXCEPTIONS
   DATE_EXTERNAL_IS_INVALID       = 1
   OTHERS                         = 2
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

write:/ datex.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 10:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642676#M286210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T10:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642677#M286211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Thanks for your help but the problem hasn´t been solved.&lt;/P&gt;&lt;P&gt;I need that the function return the format YYYYMMAA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 11:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642677#M286211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T11:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642678#M286212</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;Refer to my answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Put a break-point at&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*--Output format in yyymmdd (without points)
WRITE : future_date.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have future_date in YYYYMMDD format.&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;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 11:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642678#M286212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T11:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function that return the next month</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642679#M286213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem solved!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2006 11:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-that-return-the-next-month/m-p/1642679#M286213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-13T11:59:07Z</dc:date>
    </item>
  </channel>
</rss>

