<?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: Run time error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266822#M780717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program has dumped because it has taken too much time to execute. It is not a syntax problem but a performance issue. Your program is reading too much data or is not tuned properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One question, when you are executing how long before the program goes to dump? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do revert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jan 2008 10:48:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-14T10:48:08Z</dc:date>
    <item>
      <title>Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266819#M780714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Am getting an runtime error in the below code.Its working fine in development if i move it to QUALITY am getting an ru time error in the &lt;/P&gt;&lt;P&gt;''READ TABLE it_mara with key matnr = it_S026-matnr."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZCOP_TEST_O.&lt;/P&gt;&lt;P&gt;TABLES:S026,MARA,T023T,S023.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:IT_S026 TYPE STANDARD TABLE OF S026 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:IT_MARA TYPE STANDARD TABLE OF MARA WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:IT_T023T TYPE STANDARD TABLE OF T023T WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:IT_S023 TYPE STANDARD TABLE OF S023 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:BEGIN OF t_report,&lt;/P&gt;&lt;P&gt;ENMNG TYPE S026-ENMNG,&lt;/P&gt;&lt;P&gt;MATNR TYPE S026-MATNR,&lt;/P&gt;&lt;P&gt;SPTAG TYPE S026-SPTAG,&lt;/P&gt;&lt;P&gt;MATKL TYPE MARA-MATKL,&lt;/P&gt;&lt;P&gt;MCOMP TYPE S026-mcomp,&lt;/P&gt;&lt;P&gt;*WGBEZ TYPE T023T-WGBEZ,&lt;/P&gt;&lt;P&gt;WEMNG TYPE S023-WEMNG,&lt;/P&gt;&lt;P&gt;END OF t_report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:it_report TYPE STANDARD TABLE OF t_report WITH HEADER LINE.&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;P&gt;PARAMETERS:p_werks type S026-WERKS OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:p_sptag FOR S026-SPTAG.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:p_mcomp FOR S026-MCOMP default '60000000' to '60000063' obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*RANGES:p_mcomp for s026-mcomp.&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;P&gt;&lt;/P&gt;&lt;P&gt;DATA:x TYPE ENMNG.&lt;/P&gt;&lt;P&gt;DATA:y TYPE ENMNG.&lt;/P&gt;&lt;P&gt;DATA:z TYPE WEMNG.&lt;/P&gt;&lt;P&gt;DATA:a TYPE WEMNG.&lt;/P&gt;&lt;P&gt;DATA:b TYPE WEMNG.&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;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM S026 INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;IT_S026 WHERE WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN p_sptag AND MCOMP NOT in p_mcomp.&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE IT_MARA&lt;/P&gt;&lt;P&gt;FROM ( MARA AS A&lt;/P&gt;&lt;P&gt;INNER JOIN S026 AS B ON B~MATNR = A~MATNR ).&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;SELECT * FROM s023 INTO&lt;/P&gt;&lt;P&gt;CORRESPONDING FIELDS OF TABLE IT_s023 WHERE&lt;/P&gt;&lt;P&gt;WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN P_SPTAG      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE IT_T023T&lt;/P&gt;&lt;P&gt;FROM ( T023T AS C&lt;/P&gt;&lt;P&gt;INNER JOIN MARA AS D ON D&lt;SUB&gt;MATKL = C&lt;/SUB&gt;MATKL ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_S026.&lt;/P&gt;&lt;P&gt;READ TABLE it_mara with key matnr = it_S026-matnr.&lt;/P&gt;&lt;P&gt;READ TABLE it_t023t with key matKL = it_MARA-matKL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT_REPORT-MATKL =     IT_T023T-MATKL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT_REPORT-ENMNG      = IT_S026-ENMNG .&lt;/P&gt;&lt;P&gt;IT_REPORT-SPTAG      = IT_S026-SPTAG .&lt;/P&gt;&lt;P&gt;IT_REPORT-MATNR      = IT_S026-MATNR .&lt;/P&gt;&lt;P&gt;IT_REPORT-MCOMP      = IT_S026-MCOMP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ADD IT_REPORT-ENMNG TO X.&lt;/P&gt;&lt;P&gt;APPEND IT_REPORT.&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;&lt;/P&gt;&lt;P&gt;LOOP AT IT_S023.&lt;/P&gt;&lt;P&gt;ADD IT_s023-WEMNG TO Z.&lt;/P&gt;&lt;P&gt;IT_REPORT-WEMNG = IT_S023-WEMNG.&lt;/P&gt;&lt;P&gt;APPEND IT_REPORT.&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;&lt;/P&gt;&lt;P&gt;LOOP AT IT_REPORT .&lt;/P&gt;&lt;P&gt;IF IT_REPORT-ENMNG IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;WRITE:/5(10)    IT_REPORT-ENMNG    , 20(10)   IT_REPORT-SPTAG    ,40(20)   IT_REPORT-MATKL  .&lt;/P&gt;&lt;P&gt;*50(10)   IT_REPORT-MATNR, 60(10) IT_REPORT-MCOMP  .&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ 'TOTAL::',x.&lt;/P&gt;&lt;P&gt;WRITE:/ 'Quantity of goods received ::',z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b = x - z.&lt;/P&gt;&lt;P&gt;WRITE:/ 'Process Loss ::' , b .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266819#M780714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266820#M780715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please put "ERROR ANALYSIS" for the dump (by checking ST22) here so that we can analyze and revert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266820#M780715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266821#M780716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi aditya&lt;/P&gt;&lt;P&gt;d below is d runtime analysis.Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  After a specific time, the program is terminated to make the work area&lt;/P&gt;&lt;P&gt;  available to other users who may be waiting.&lt;/P&gt;&lt;P&gt;  This is to prevent a work area being blocked unnecessarily long by, for&lt;/P&gt;&lt;P&gt;  example:&lt;/P&gt;&lt;P&gt;  - Endless loops (DO, WHILE, ...),&lt;/P&gt;&lt;P&gt;  - Database accesses with a large result set&lt;/P&gt;&lt;P&gt;  - Database accesses without a suitable index (full table scan)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The maximum runtime of a program is limited by the system profile&lt;/P&gt;&lt;P&gt;  parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this&lt;/P&gt;&lt;P&gt;   time limit is&lt;/P&gt;&lt;P&gt;  exceeded, the system attempts to cancel any running SQL statement or&lt;/P&gt;&lt;P&gt;  signals the ABAP processor to stop the running program. Then the system&lt;/P&gt;&lt;P&gt;  waits another 60 seconds maximum. If the program is then still active,&lt;/P&gt;&lt;P&gt;  the work process is restarted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266821#M780716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266822#M780717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program has dumped because it has taken too much time to execute. It is not a syntax problem but a performance issue. Your program is reading too much data or is not tuned properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One question, when you are executing how long before the program goes to dump? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do revert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:48:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266822#M780717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266823#M780718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi aditya&lt;/P&gt;&lt;P&gt;Almost it is taking 6 minute.Anyway out from the above code.Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266823#M780718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266824#M780719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You system parameter for runtime dumps, viz. &lt;STRONG&gt;rdisp/max_wprun_time&lt;/STRONG&gt; is set at 600 seconds, i.e. 10 minutes. You might want to consult BASIS and increase this to say 20 minutes. But this is not the solution here. You can optimize your code as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the following block of code:&lt;/P&gt;&lt;P&gt;SELECT * FROM S026 INTO CORRESPONDING FIELDS OF TABLE&lt;/P&gt;&lt;P&gt;IT_S026 WHERE WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN p_sptag AND MCOMP NOT in p_mcomp.&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;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE IT_MARA&lt;/P&gt;&lt;P&gt;FROM ( MARA AS A&lt;/P&gt;&lt;P&gt;INNER JOIN S026 AS B ON B~MATNR = A~MATNR ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM s023 INTO&lt;/P&gt;&lt;P&gt;CORRESPONDING FIELDS OF TABLE IT_s023 WHERE&lt;/P&gt;&lt;P&gt;WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN P_SPTAG .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE IT_T023T&lt;/P&gt;&lt;P&gt;FROM ( T023T AS C&lt;/P&gt;&lt;P&gt;INNER JOIN MARA AS D ON D&lt;SUB&gt;MATKL = C&lt;/SUB&gt;MATKL ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;to&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM S026 INTO TABLE IT_S026 &lt;/P&gt;&lt;P&gt;WHERE WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN p_sptag AND MCOMP NOT in p_mcomp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IT_S026[ ] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT * INTO TABLE IT_MARA&lt;/P&gt;&lt;P&gt;FROM MARA &lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN IT_S026&lt;/P&gt;&lt;P&gt;WHERE MATNR EQ IT_S026-MATNR.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM s023 &lt;/P&gt;&lt;P&gt;INTO TABLE IT_s023 &lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;WERKS = P_WERKS AND&lt;/P&gt;&lt;P&gt;SPTAG IN P_SPTAG .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IT_MARA[ ] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO TABLE IT_T023T&lt;/P&gt;&lt;P&gt;FROM  T023T &lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN IT_MARA&lt;/P&gt;&lt;P&gt;WHERE MATKL EQ IT_MARA-MATKL.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The inner joins impact performance. Also into corresponding clause is very bad for performance. You must not SELECT * instead better to select the required fields. But we shall skip this for now to test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do test and confirm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ ] should be put without the space in above code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 11:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266824#M780719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T11:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266825#M780720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks aditya.got the required output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 11:42:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266825#M780720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T11:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266826#M780721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm glad your program worked, however, like I said there are a lot more aspects where you can improve the performance of your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen you have posted the same doubt elsewhere and some suggestions have been regarding sorting the internal tables, using binary search and also selecting only required fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to incorporate these aspects to make your program even more efficient &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 11:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error/m-p/3266826#M780721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T11:46:54Z</dc:date>
    </item>
  </channel>
</rss>

