<?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: data overflow in following code why? urgent help req in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578517#M261201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sanjeev,&lt;/P&gt;&lt;P&gt; try this way out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_OUT.&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = &amp;lt;b&amp;gt; (( T_OUT-WRBTR ) * -1 )&amp;lt;/b&amp;gt;. &lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = &amp;lt;b&amp;gt; (( T_OUT-DMBTR ) * -1 )&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;DATA: TOTAL(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Sep 2006 11:52:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-21T11:52:23Z</dc:date>
    <item>
      <title>data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578513#M261197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the following code when i am executing it is going to dump with message &lt;/P&gt;&lt;P&gt;'VALUE TOO LARGE FOR CALCULATING TOTALS IN INTERNAL TABLE,&lt;/P&gt;&lt;P&gt;FIELD TOO '&lt;/P&gt;&lt;P&gt;i don't know why?&lt;/P&gt;&lt;P&gt;plz check my code and give the solution .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  Z_VENDOR AGEING                                                    *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;  in this repoet I am calculating the vendor ageing&lt;/P&gt;&lt;P&gt;    which is depending on formula &lt;/P&gt;&lt;P&gt;    AGEING = Current Date(or any date entered by user) &amp;#150; Bline Date(BSIK-ZFBDT)                                                                 *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_vendor  NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;                  LINE-SIZE 200&lt;/P&gt;&lt;P&gt;                  LINE-COUNT 65(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : bsik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_out OCCURS 0,&lt;/P&gt;&lt;P&gt;       bukrs LIKE bsik-bukrs,&lt;/P&gt;&lt;P&gt;       saknr LIKE bsik-saknr,&lt;/P&gt;&lt;P&gt;       bldat LIKE bsik-bldat,&lt;/P&gt;&lt;P&gt;       wrbtr LIKE bsik-wrbtr,&lt;/P&gt;&lt;P&gt;       lifnr LIKE bsik-lifnr,&lt;/P&gt;&lt;P&gt;       zfbdt like bsik-zfbdt,&lt;/P&gt;&lt;P&gt;       zbd1t like bsik-zbd1t,&lt;/P&gt;&lt;P&gt;       ageing type i,&lt;/P&gt;&lt;P&gt;       END OF t_out.&lt;/P&gt;&lt;P&gt;parameters : p_date1 type d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_bukrs FOR bsik-bukrs,&lt;/P&gt;&lt;P&gt;                 s_saknr FOR bsik-saknr,&lt;/P&gt;&lt;P&gt;                 s_lifnr FOR bsik-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT bukrs saknr bldat wrbtr lifnr zfbdt zbd1t&lt;/P&gt;&lt;P&gt;       FROM bsik&lt;/P&gt;&lt;P&gt;       INTO  TABLE t_out&lt;/P&gt;&lt;P&gt;       WHERE saknr IN s_saknr&lt;/P&gt;&lt;P&gt;       AND bukrs IN s_bukrs&lt;/P&gt;&lt;P&gt;       AND lifnr IN s_lifnr.&lt;/P&gt;&lt;P&gt;Loop at t_out.&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                   = p_date1&lt;/P&gt;&lt;P&gt;    i_datum_von                   = t_out-zfbdt&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_KZ_EXCL_VON                 = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_KZ_INCL_BIS                 = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_KZ_ULT_BIS                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_KZ_ULT_VON                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_STGMETH                     = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SZBMETH                     = '1'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   E_TAGE                        = t_out-ageing&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;  DAYS_METHOD_NOT_DEFINED       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                        = 2&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;Modify t_out.&lt;/P&gt;&lt;P&gt;Clear t_out.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_OUT.&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-WRBTR * -1.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-DMBTR * -1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;DATA: TOTAL(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE : / t_out-saknr,&lt;/P&gt;&lt;P&gt;            t_out-lifnr,&lt;/P&gt;&lt;P&gt;            t_out-wrbtr,&lt;/P&gt;&lt;P&gt;            t_out-zfbdt,&lt;/P&gt;&lt;P&gt;            T_OUT-DMBTR,&lt;/P&gt;&lt;P&gt;            t_out-ageing.&lt;/P&gt;&lt;P&gt;            &lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;SUM.&lt;/P&gt;&lt;P&gt;WRITE:/ TOTAL.&lt;/P&gt;&lt;P&gt;CLEAR TOTAL.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: sanjeev singh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578513#M261197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578514#M261198</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; Debug the program na u will trace where exactly the error is coming and where it is going into dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;haritha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:48:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578514#M261198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578515#M261199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. U are running the internal table 'LOOP AT t_out.',twice  why i dont understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.Try to change the chracterstics of the varible for which the it is overflowing.Make it Packed decimals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this and let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578515#M261199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578516#M261200</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;REPORT z_vendor NO STANDARD PAGE HEADING&lt;/P&gt;&lt;P&gt;LINE-SIZE 200&lt;/P&gt;&lt;P&gt;LINE-COUNT 65(3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : bsik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_out OCCURS 0,&lt;/P&gt;&lt;P&gt;bukrs LIKE bsik-bukrs,&lt;/P&gt;&lt;P&gt;saknr LIKE bsik-saknr,&lt;/P&gt;&lt;P&gt;bldat LIKE bsik-bldat,&lt;/P&gt;&lt;P&gt;wrbtr LIKE bsik-wrbtr,&lt;/P&gt;&lt;P&gt;lifnr LIKE bsik-lifnr,&lt;/P&gt;&lt;P&gt;zfbdt like bsik-zfbdt,&lt;/P&gt;&lt;P&gt;zbd1t like bsik-zbd1t,&lt;/P&gt;&lt;P&gt;ageing type i,&lt;/P&gt;&lt;P&gt;END OF t_out.&lt;/P&gt;&lt;P&gt;parameters : p_date1 type d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_bukrs FOR bsik-bukrs,&lt;/P&gt;&lt;P&gt;s_saknr FOR bsik-saknr,&lt;/P&gt;&lt;P&gt;s_lifnr FOR bsik-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT bukrs saknr bldat wrbtr lifnr zfbdt zbd1t&lt;/P&gt;&lt;P&gt;FROM bsik&lt;/P&gt;&lt;P&gt;INTO TABLE t_out&lt;/P&gt;&lt;P&gt;WHERE saknr IN s_saknr&lt;/P&gt;&lt;P&gt;AND bukrs IN s_bukrs&lt;/P&gt;&lt;P&gt;AND lifnr IN s_lifnr.&lt;/P&gt;&lt;P&gt;Loop at t_out.&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 = p_date1&lt;/P&gt;&lt;P&gt;i_datum_von = t_out-zfbdt&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_EXCL_VON = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_INCL_BIS = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_ULT_BIS = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_ULT_VON = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_STGMETH = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_SZBMETH = '1'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;E_TAGE = t_out-ageing&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;DAYS_METHOD_NOT_DEFINED = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 2&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;Modify t_out.&lt;/P&gt;&lt;P&gt;Clear t_out.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT T_OUT.&amp;lt;/b&amp;gt;  " &amp;lt;b&amp;gt;where is the end loop&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-WRBTR * -1.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-DMBTR * -1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;DATA: TOTAL(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT t_out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : / t_out-saknr,&lt;/P&gt;&lt;P&gt;t_out-lifnr,&lt;/P&gt;&lt;P&gt;t_out-wrbtr,&lt;/P&gt;&lt;P&gt;t_out-zfbdt,&lt;/P&gt;&lt;P&gt;T_OUT-DMBTR,&lt;/P&gt;&lt;P&gt;t_out-ageing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;SUM.&lt;/P&gt;&lt;P&gt;WRITE:/ TOTAL.&lt;/P&gt;&lt;P&gt;CLEAR TOTAL.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578516#M261200</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-21T11:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578517#M261201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sanjeev,&lt;/P&gt;&lt;P&gt; try this way out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_OUT.&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = &amp;lt;b&amp;gt; (( T_OUT-WRBTR ) * -1 )&amp;lt;/b&amp;gt;. &lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = &amp;lt;b&amp;gt; (( T_OUT-DMBTR ) * -1 )&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;DATA: TOTAL(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:52:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578517#M261201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578518#M261202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry anvera&lt;/P&gt;&lt;P&gt;actually i have used loop at t_out twice but now i have used it once u can check the code i have modified it .&lt;/P&gt;&lt;P&gt;but still data overeflows for total why?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 11:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578518#M261202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T11:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578519#M261203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where is this value - &amp;gt; &amp;lt;b&amp;gt;T_OUT-DMBTR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no field like that in T_OUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578519#M261203</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-21T12:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578520#M261204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;CHECK the below&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change the last LOOP code as below...bold add the line and underline is to delete the line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: TOTAL(18) TYPE P DECIMALS 2.&amp;lt;/b&amp;gt;LOOP AT T_OUT.&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-WRBTR * -1.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-DMBTR * -1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;WRITE : / t_out-saknr,&lt;/P&gt;&lt;P&gt;t_out-lifnr,&lt;/P&gt;&lt;P&gt;t_out-wrbtr,&lt;/P&gt;&lt;P&gt;t_out-zfbdt,&lt;/P&gt;&lt;P&gt;T_OUT-DMBTR,&lt;/P&gt;&lt;P&gt;t_out-ageing.&lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;SUM.&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;WRITE:/ TOTAL.&lt;/P&gt;&lt;P&gt;CLEAR TOTAL.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578520#M261204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578521#M261205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;*DATA: TOTAL(16) TYPE P DECIMALS 2.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; data: total  type TGFMV.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;TOTAL = TOTAL + T_OUT-DMBTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : / t_out-saknr,&lt;/P&gt;&lt;P&gt;t_out-lifnr,&lt;/P&gt;&lt;P&gt;t_out-wrbtr,&lt;/P&gt;&lt;P&gt;t_out-zfbdt,&lt;/P&gt;&lt;P&gt;T_OUT-DMBTR,&lt;/P&gt;&lt;P&gt;t_out-ageing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;SUM.&lt;/P&gt;&lt;P&gt;WRITE:/ TOTAL.&lt;/P&gt;&lt;P&gt;CLEAR TOTAL.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578521#M261205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578522#M261206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Change The Data Type of total if ur values are tooo large.And do Not Declare a Variable inside a Loop .Make at The begining of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ahasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578522#M261206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578523#M261207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i might have forgotten to mention yaar.&lt;/P&gt;&lt;P&gt;u think that t_out dmbtr is there.&lt;/P&gt;&lt;P&gt;and give the possible solution.&lt;/P&gt;&lt;P&gt;i&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578523#M261207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578524#M261208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kishan&lt;/P&gt;&lt;P&gt;what is this TGFMV.&lt;/P&gt;&lt;P&gt;when i used it a message comes that this type doesn't exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578524#M261208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578525#M261209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anurag&lt;/P&gt;&lt;P&gt;for type p only 16 is allowed boss.&lt;/P&gt;&lt;P&gt;so give some other solutions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578525#M261209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578526#M261210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is with the SUM statement..take that out as you need only the total calculated by you rather than all fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578526#M261210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-21T12:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578527#M261211</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;now try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : bsik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_out OCCURS 0,&lt;/P&gt;&lt;P&gt;bukrs LIKE bsik-bukrs,&lt;/P&gt;&lt;P&gt;saknr LIKE bsik-saknr,&lt;/P&gt;&lt;P&gt;bldat LIKE bsik-bldat,&lt;/P&gt;&lt;P&gt;wrbtr LIKE bsik-wrbtr,&lt;/P&gt;&lt;P&gt;lifnr LIKE bsik-lifnr,&lt;/P&gt;&lt;P&gt;zfbdt like bsik-zfbdt,&lt;/P&gt;&lt;P&gt;zbd1t like bsik-zbd1t,&lt;/P&gt;&lt;P&gt;ageing type i,&lt;/P&gt;&lt;P&gt;END OF t_out.&lt;/P&gt;&lt;P&gt;parameters : p_date1 type d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_bukrs FOR bsik-bukrs,&lt;/P&gt;&lt;P&gt;s_saknr FOR bsik-saknr,&lt;/P&gt;&lt;P&gt;s_lifnr FOR bsik-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT bukrs saknr bldat wrbtr lifnr zfbdt zbd1t&lt;/P&gt;&lt;P&gt;FROM bsik&lt;/P&gt;&lt;P&gt;INTO TABLE t_out&lt;/P&gt;&lt;P&gt;WHERE saknr IN s_saknr&lt;/P&gt;&lt;P&gt;AND bukrs IN s_bukrs&lt;/P&gt;&lt;P&gt;AND lifnr IN s_lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at t_out.&lt;/P&gt;&lt;P&gt;&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 = p_date1&lt;/P&gt;&lt;P&gt;i_datum_von = t_out-zfbdt&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_EXCL_VON = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_INCL_BIS = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_ULT_BIS = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_KZ_ULT_VON = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_STGMETH = '0'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;I_SZBMETH = '1'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;E_TAGE = t_out-ageing&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;DAYS_METHOD_NOT_DEFINED = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 2&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;Modify t_out.&lt;/P&gt;&lt;P&gt;Clear t_out.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: TOTAL(16) TYPE P DECIMALS 2.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT T_OUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;IF T_OUT-SHKZG = &amp;#145;H&amp;#146;.&lt;/P&gt;&lt;P&gt;T_OUT-WRBTR = T_OUT-WRBTR * -1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;T_OUT-DMBTR = T_OUT-DMBTR * -1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TOTAL = TOTAL + T_OUT-WRBTR + T_OUT-DMBTR.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;WRITE : / t_out-saknr,&lt;/P&gt;&lt;P&gt;t_out-lifnr,&lt;/P&gt;&lt;P&gt;t_out-wrbtr,&lt;/P&gt;&lt;P&gt;t_out-zfbdt,&lt;/P&gt;&lt;P&gt;T_OUT-DMBTR,&lt;/P&gt;&lt;P&gt;t_out-ageing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT LAST.&lt;/P&gt;&lt;P&gt;WRITE:/ TOTAL.&lt;/P&gt;&lt;P&gt;CLEAR TOTAL.&lt;/P&gt;&lt;P&gt;ENDAT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&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;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 12:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578527#M261211</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-21T12:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578528#M261212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ur issue solved, kindly close the thread after giving points to helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2006 13:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578528#M261212</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-21T13:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578529#M261213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anurag&lt;/P&gt;&lt;P&gt;thanks the problem was with the sum st only.&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 07:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578529#M261213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T07:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: data overflow in following code why? urgent help req</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578530#M261214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u tell me how the problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code will be more help full.&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;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Sep 2006 07:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-overflow-in-following-code-why-urgent-help-req/m-p/1578530#M261214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-22T07:52:44Z</dc:date>
    </item>
  </channel>
</rss>

