<?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 Module For Fiscal Year in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488188#M561380</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; To get a date from a given date +/- period. Input : Date &amp;amp; Period (No. of Days) Output : Calculated Date &lt;/P&gt;&lt;P&gt;Please go through the Function Module "RELATIVE_DATE_CALCULATE". Remember to enter the date in 'yyyymmdd' format in the start date field. &lt;/P&gt;&lt;P&gt;2.if the days variable is integer and other 2 like sy-datum, the math below yields the number of days to yo.. &lt;/P&gt;&lt;P&gt;start date = '23.07.2003'&lt;/P&gt;&lt;P&gt;End date = '23.09.2003'&lt;/P&gt;&lt;P&gt;Days = enddate - Start date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Please go through the Functions Module , it gives date as well as time difference, though U may have to enter time as well. &lt;/P&gt;&lt;P&gt;SD_DATETIME_DIFFERENCE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. with this FM you can get dates between two dates : Function Module &lt;/P&gt;&lt;P&gt;RP_CALC_DATE_IN_INTERVAL&lt;/P&gt;&lt;P&gt;5. go into SE37 and search on 'difference between dates', one of these 3 keywords or a combination between the 3 will give you a function module. &lt;/P&gt;&lt;P&gt;6. Date Upper &amp;amp; Lower limit: the lower is obviously the 1st of the month. To get the upper use function module END_OF_MONTH_DETERMINE. &lt;/P&gt;&lt;P&gt;7. to get the logon user setting date dynamically : Using offsets move it into a date field,obviously in the format yyyymmdd. then move it into a char(10) field. U get the data in char(10) using the current user's setting. &lt;/P&gt;&lt;P&gt;ex:: w_date type d value '20030822', &lt;/P&gt;&lt;P&gt;w_char(10). &lt;/P&gt;&lt;P&gt;say logon user setting is mm/dd/yyyy. &lt;/P&gt;&lt;P&gt;write w_date to w_char. w_char will have the value 08/22/2003. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the result of the move stmt in bdc table. &lt;/P&gt;&lt;P&gt;8. Check this FM &lt;/P&gt;&lt;P&gt;"/SAPDMC/LSM_DATE_CONVERT "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9.statements: &lt;/P&gt;&lt;P&gt;1. CONVERT DATE f1 INTO INVERTED-DATE f2. &lt;/P&gt;&lt;P&gt;2. CONVERT INVERTED-DATE f1 INTO DATE f2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calculates the nine's complement of the internal date format (YYYYMMDD - for more information about internal display, meaning and initial values of types and places it in the field f2. &lt;/P&gt;&lt;P&gt;For example, 19950511 ==&amp;gt; 80049488 or 80049488 ==&amp;gt; 19950511. &lt;/P&gt;&lt;P&gt;In the inverse date format, the most recent date has the numerically smallest value. You can make use of this effect when sorting dates. &lt;/P&gt;&lt;P&gt;10. GET TIME STAMP : returns the timestamp in short or long form. The short form contains the current date and time : &lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;s_tst TYPE timestamp, &lt;/P&gt;&lt;P&gt;l_tst TYPE timstampl, &lt;/P&gt;&lt;P&gt;tzone TYPE timezone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET TIME STAMP FIELD s_tst. "Short form &lt;/P&gt;&lt;P&gt;GET TIME STAMP FIELD l_tst. "Long form &lt;/P&gt;&lt;P&gt;tzone = 'UTC '. "Time zone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / s_tst TIME ZONE tzone, &lt;/P&gt;&lt;P&gt;/ l_tst TIME ZONE tzone. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, The short form might then contain the value 19980204163520, while the long form has the value 19980204163520,1234560. &lt;/P&gt;&lt;P&gt;The time stamp can be converted by using CONVERT TIME STAMP and CONVERT DATE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward pts if found usefull :)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 12:50:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T12:50:25Z</dc:date>
    <item>
      <title>Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488181#M561373</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;&lt;/P&gt;&lt;P&gt;           I've three parameters &lt;/P&gt;&lt;P&gt;           COMPANY CODE =1000&lt;/P&gt;&lt;P&gt;           PERIOD               = 05&lt;/P&gt;&lt;P&gt;           YEAR                  = 1997&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So please let me know function module for to get FISCAL YEAR in start date &amp;amp; end date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navin K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488181#M561373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488182#M561374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi navin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this FM.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GET_CURRENT_YEAR'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      bukrs = p_bukrs&lt;/P&gt;&lt;P&gt;      date  = sy-datum&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      currm = v_currm&lt;/P&gt;&lt;P&gt;      curry = v_curry&lt;/P&gt;&lt;P&gt;      prevm = v_prevm&lt;/P&gt;&lt;P&gt;      prevy = v_prevy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Azad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488182#M561374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488183#M561375</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;Try FM's&lt;/P&gt;&lt;P&gt;CCODE_GET_FISCAL_YEAR_VARIANT&lt;/P&gt;&lt;P&gt;FKK_FM_GET_FISCAL_YEAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488183#M561375</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-07-19T12:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488184#M561376</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;&amp;lt;b&amp;gt;FM_FISCAL_YEAR_GET&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz reward if useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488184#M561376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488185#M561377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use     GET_CURRENT_YEAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Srikanta Gope&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:47:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488185#M561377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488186#M561378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Navin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out the FM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FKK_FM_GET_FISCAL_YEAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if this helps,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488186#M561378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488187#M561379</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 with this FM 'FI_PERIOD_DERTEMINE'.&lt;/P&gt;&lt;P&gt;GET_CURRENT_YEAR will give u the fiscal year &lt;/P&gt;&lt;P&gt;.use "GET_DATES_FROM_GJAHR" ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488187#M561379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488188#M561380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Navin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; To get a date from a given date +/- period. Input : Date &amp;amp; Period (No. of Days) Output : Calculated Date &lt;/P&gt;&lt;P&gt;Please go through the Function Module "RELATIVE_DATE_CALCULATE". Remember to enter the date in 'yyyymmdd' format in the start date field. &lt;/P&gt;&lt;P&gt;2.if the days variable is integer and other 2 like sy-datum, the math below yields the number of days to yo.. &lt;/P&gt;&lt;P&gt;start date = '23.07.2003'&lt;/P&gt;&lt;P&gt;End date = '23.09.2003'&lt;/P&gt;&lt;P&gt;Days = enddate - Start date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Please go through the Functions Module , it gives date as well as time difference, though U may have to enter time as well. &lt;/P&gt;&lt;P&gt;SD_DATETIME_DIFFERENCE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. with this FM you can get dates between two dates : Function Module &lt;/P&gt;&lt;P&gt;RP_CALC_DATE_IN_INTERVAL&lt;/P&gt;&lt;P&gt;5. go into SE37 and search on 'difference between dates', one of these 3 keywords or a combination between the 3 will give you a function module. &lt;/P&gt;&lt;P&gt;6. Date Upper &amp;amp; Lower limit: the lower is obviously the 1st of the month. To get the upper use function module END_OF_MONTH_DETERMINE. &lt;/P&gt;&lt;P&gt;7. to get the logon user setting date dynamically : Using offsets move it into a date field,obviously in the format yyyymmdd. then move it into a char(10) field. U get the data in char(10) using the current user's setting. &lt;/P&gt;&lt;P&gt;ex:: w_date type d value '20030822', &lt;/P&gt;&lt;P&gt;w_char(10). &lt;/P&gt;&lt;P&gt;say logon user setting is mm/dd/yyyy. &lt;/P&gt;&lt;P&gt;write w_date to w_char. w_char will have the value 08/22/2003. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the result of the move stmt in bdc table. &lt;/P&gt;&lt;P&gt;8. Check this FM &lt;/P&gt;&lt;P&gt;"/SAPDMC/LSM_DATE_CONVERT "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9.statements: &lt;/P&gt;&lt;P&gt;1. CONVERT DATE f1 INTO INVERTED-DATE f2. &lt;/P&gt;&lt;P&gt;2. CONVERT INVERTED-DATE f1 INTO DATE f2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calculates the nine's complement of the internal date format (YYYYMMDD - for more information about internal display, meaning and initial values of types and places it in the field f2. &lt;/P&gt;&lt;P&gt;For example, 19950511 ==&amp;gt; 80049488 or 80049488 ==&amp;gt; 19950511. &lt;/P&gt;&lt;P&gt;In the inverse date format, the most recent date has the numerically smallest value. You can make use of this effect when sorting dates. &lt;/P&gt;&lt;P&gt;10. GET TIME STAMP : returns the timestamp in short or long form. The short form contains the current date and time : &lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;s_tst TYPE timestamp, &lt;/P&gt;&lt;P&gt;l_tst TYPE timstampl, &lt;/P&gt;&lt;P&gt;tzone TYPE timezone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET TIME STAMP FIELD s_tst. "Short form &lt;/P&gt;&lt;P&gt;GET TIME STAMP FIELD l_tst. "Long form &lt;/P&gt;&lt;P&gt;tzone = 'UTC '. "Time zone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / s_tst TIME ZONE tzone, &lt;/P&gt;&lt;P&gt;/ l_tst TIME ZONE tzone. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, The short form might then contain the value 19980204163520, while the long form has the value 19980204163520,1234560. &lt;/P&gt;&lt;P&gt;The time stamp can be converted by using CONVERT TIME STAMP and CONVERT DATE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward pts if found usefull :)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488188#M561380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module For Fiscal Year</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488189#M561381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the code as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : a(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GM_GET_FISCAL_YEAR'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   I_DATE                           = SY-DATUM&lt;/P&gt;&lt;P&gt;    i_fyv                            = 'V3'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   E_FY                             = a.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FISCAL_YEAR_DOES_NOT_EXIST       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NOT_DEFINED_FOR_DATE             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;write : a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points, if helpful,&lt;/P&gt;&lt;P&gt;Sandeep Kaushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 12:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-fiscal-year/m-p/2488189#M561381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T12:52:17Z</dc:date>
    </item>
  </channel>
</rss>

