<?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: how to find differnece between two dates.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215451#M134669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharadha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you looking for the days between two dates as the difference or just the difference between two dates in the date format only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For &amp;lt;b&amp;gt;First&amp;lt;/b&amp;gt; option:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; Try this&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA V_DIFF TYPE I.&lt;/P&gt;&lt;P&gt;PARAMETERS P_BIRTHD LIKE SY-DATUM.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          I_DATUM_BIS             = SY-DATUM&lt;/P&gt;&lt;P&gt;          I_DATUM_VON             = P_BIRTHD&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          E_TAGE                  = V_DIFF&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          DAYS_METHOD_NOT_DEFINED = 1&lt;/P&gt;&lt;P&gt;          OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;  WRITE:/ V_DIFF, 'DAYS HAVE PASSED SINCE', P_BIRTHD.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'ERROR IN CALCULATION'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This will give the difference between two dates:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;lt;b&amp;gt;Second&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; You can simply subtract both the dates as suggested above inorder to have the date difference in the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;If ur  satisfied then please close this thread by rewarding appropraite points to the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Mar 2006 05:54:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-20T05:54:53Z</dc:date>
    <item>
      <title>how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215446#M134664</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;i want to know diff between two dates . please help me in this regard...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215446#M134664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215447#M134665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just subtract the two dates, you will get the no. of days.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215447#M134665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215448#M134666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai sharadha,&lt;/P&gt;&lt;P&gt;I've just tried in my system, its working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YRT_TEST1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : date1 like sy-datum,&lt;/P&gt;&lt;P&gt;             date2 like sy-datum.&lt;/P&gt;&lt;P&gt;data: days(3) type n.&lt;/P&gt;&lt;P&gt;data: years(10) type p decimals 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;days = date2 - date1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;years = days / 365.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / days,&lt;/P&gt;&lt;P&gt;years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215448#M134666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215449#M134667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you want to use a Function Module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the Sample code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZDATEDIFF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: EDAYS LIKE VTBBEWE-ATAGE,&lt;/P&gt;&lt;P&gt;EMONTHS LIKE VTBBEWE-ATAGE,&lt;/P&gt;&lt;P&gt;EYEARS LIKE VTBBEWE-ATAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: FROMDATE LIKE VTBBEWE-DBERVON,&lt;/P&gt;&lt;P&gt;TODATE LIKE VTBBEWE-DBERBIS DEFAULT SY-DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'FIMA_DAYS_AND_MONTHS_AND_YEARS'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;i_date_from = FROMDATE&lt;/P&gt;&lt;P&gt;i_date_to = TODATE&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_FLG_SEPARATE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;E_DAYS = EDAYS&lt;/P&gt;&lt;P&gt;E_MONTHS = EMONTHS&lt;/P&gt;&lt;P&gt;E_YEARS = EYEARS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ 'Difference in Days ', EDAYS.&lt;/P&gt;&lt;P&gt;WRITE:/ 'Difference in Months ', EMONTHS.&lt;/P&gt;&lt;P&gt;WRITE:/ 'Difference in Years ', EYEARS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;FROMDATE = SY-DATUM - 60.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;P&gt;reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215449#M134667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215450#M134668</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 it this way too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: d1 like sy-datum,
d2 like sy-datum.
data: diff type i.

d1 = '20060331'.
d2 = '20060220'.

diff = d1 - d2.

write : / diff .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also chek these FMs:&lt;/P&gt;&lt;P&gt;'CSCP_PARA1_GET_PERIODS'&lt;/P&gt;&lt;P&gt;HR_99S_INTERVAL_BETWEEN_DATES(Months, Years and days)&lt;/P&gt;&lt;P&gt;COMPUTE_YEARS_BETWEEN_DATES&lt;/P&gt;&lt;P&gt;EHS_CALC_YEARS_BETWEEN_DATES&lt;/P&gt;&lt;P&gt;DAYS_BETWEEN_TWO_DATES &lt;/P&gt;&lt;P&gt;MONTHS_BETWEEN_TWO_DATES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for no of week days between two dates &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1128816"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215450#M134668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215451#M134669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharadha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you looking for the days between two dates as the difference or just the difference between two dates in the date format only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For &amp;lt;b&amp;gt;First&amp;lt;/b&amp;gt; option:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; Try this&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA V_DIFF TYPE I.&lt;/P&gt;&lt;P&gt;PARAMETERS P_BIRTHD LIKE SY-DATUM.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DAYS_BETWEEN_TWO_DATES'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          I_DATUM_BIS             = SY-DATUM&lt;/P&gt;&lt;P&gt;          I_DATUM_VON             = P_BIRTHD&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;P&gt;          E_TAGE                  = V_DIFF&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          DAYS_METHOD_NOT_DEFINED = 1&lt;/P&gt;&lt;P&gt;          OTHERS                  = 2.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;  WRITE:/ V_DIFF, 'DAYS HAVE PASSED SINCE', P_BIRTHD.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'ERROR IN CALCULATION'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  This will give the difference between two dates:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;lt;b&amp;gt;Second&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; You can simply subtract both the dates as suggested above inorder to have the date difference in the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;If ur  satisfied then please close this thread by rewarding appropraite points to the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 05:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215451#M134669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T05:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215452#M134670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sharadha,&lt;/P&gt;&lt;P&gt;              Please reward points and close the thread if at all your doubt is cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 06:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215452#M134670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T06:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215453#M134671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharadha ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  you can use this function module &lt;/P&gt;&lt;P&gt;in this field "i_time_uom  "  give the unit of measure&lt;/P&gt;&lt;P&gt;H -hours&lt;/P&gt;&lt;P&gt;d- days&lt;/P&gt;&lt;P&gt;s - seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the resultant can be calculated in any of the above mentioned units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Do reward points if useful and close the thread if the doubt is cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kishore Kumar Yerra.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call function 'L_TO_TIME_DIFF'
   exporting
     i_start_date           = i_qmel-strmn
     i_start_time           = i_qmel-strur
     i_end_date             = i_final-budat2
     i_end_time             = i_final-erzet2
     i_time_uom             = 'H'
  importing
    e_time_diff            = ydatdiff
*  EXCEPTIONS
*    INPUT_DATA_EMPTY       = 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.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215453#M134671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215454#M134672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sharadha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this function module .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HR_SGPBS_YRS_MTHS_DAYS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just pass the Two Dates u want to know the difference and it will give the diff in years , months and days .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u r looking for diff between two dates .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;substracting the dates directly  may give u correct answers in a particular year but this does not always reveal exact solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vikky.&lt;/P&gt;&lt;P&gt;&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;Vikky.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 08:23:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215454#M134672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T08:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to find differnece between two dates..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215455#M134673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sharadha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         In ABAP 'd' is the Date Type. &lt;/P&gt;&lt;P&gt;For Eg.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data old type d.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here old is of type date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In orfer to find difference between the dates just use the '-'(minu) operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data old type d. "In format yyyymmdd.
data new type d. "y - year, m - month &amp;amp; d - day
data diff type i."No. of days

OLD = '20060101'. "Date of 8 charecter 
NEW = '20060102'. "Should be assigned in format yyyymmdd.

if(old &amp;gt; new).
 diff = old - new.
else.
 diff = new - old.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maheswaran.B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Maheswaran B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Maheswaran B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2006 09:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-find-differnece-between-two-dates/m-p/1215455#M134673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-20T09:34:29Z</dc:date>
    </item>
  </channel>
</rss>

