<?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: Performance Tuning 'Runtime Error' on Select statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313929#M1393153</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly go to TCODE ST22 and analysis the errors. And which SELECT statement  returns error or all of them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Thien&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Oct 2009 08:54:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-23T08:54:02Z</dc:date>
    <item>
      <title>Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313926#M1393150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Day!&lt;/P&gt;&lt;P&gt;I would like to ask some help regarding a custom program that will encounter 'Runtime Error' on the below codes on how to perform performance tunning especially number 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT A~VBELN A~ERDAT A~AUART A~VKORG A~VTWEG A~SPART A~VDATU
         A~KUNNR B~POSNR B~MATNR B~ARKTX B~ABGRU B~KWMENG B~VRKME
         B~WERKS B~VSTEL B~ROUTE
      FROM VBAK AS A INNER JOIN VBAP AS B ON A~VBELN EQ B~VBELN
                     INNER JOIN VBEP AS C ON A~VBELN EQ C~VBELN
                       AND B~POSNR EQ C~POSNR
        INTO CORRESPONDING FIELDS OF TABLE I_DATA_TAB
          WHERE A~VBELN  IN S_VBELN
            AND A~VKORG  IN S_VKORG
            AND A~AUART  IN S_AUART
            AND A~VTWEG  IN S_VTWEG
            AND A~SPART  IN S_SPART
            AND A~VDATU  IN S_VDATU
            AND A~KUNNR  IN S_KUNNRD
            AND B~MATNR  IN S_MATNR
            AND B~KWMENG IN S_KWMENG
            AND B~VRKME  IN S_VRKME
            AND B~WERKS  IN S_WERKS
            AND C~EDATU  IN S_VDATU.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT VBELN FROM LIKP INTO LIKP-VBELN
              WHERE LFDAT IN S_VDATU
                AND VKORG IN S_VKORG
                AND LFART EQ 'YSTD'
                AND KUNNR IN S_KUNNRP
                AND KUNAG IN S_KUNNRD

    SELECT VBELN POSNR LFIMG MATNR WERKS
       FROM LIPS INTO (LIPS-VBELN, LIPS-POSNR, DISPLAY_TAB-DEL_QTY,
                       LIPS-MATNR, LIPS-WERKS)
             WHERE VBELN EQ LIKP-VBELN
               AND MATNR IN S_MATNR
               AND VTWEG IN S_VTWEG
               AND SPART IN S_SPART
               AND WERKS IN S_WERKS.    

     ENDSELECT.
  ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT DELIVERY POSNR MATNR PODLFIMG FROM T9YPODI INTO
    (T9YPODI-DELIVERY, T9YPODI-POSNR, T9YPODI-MATNR, T9YPODI-PODLFIMG)
                       WHERE MATNR   IN S_MATNR
                         AND PODDATE IN S_VDATU.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Answer's will be a great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Thank You,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Lourd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lourd06 on Oct 23, 2009 10:32 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="green" __jive_macro_name="color"&gt;Moderator message - Welcome to SCN.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please see &lt;SPAN __jive_macro_name="thread" id="1283414"&gt;&lt;/SPAN&gt; before posting. You're in the driver's seat here. It's up to you to do some analysis before expecting that people can halp you. - post locked
And please use code tags.
&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Oct 23, 2009 9:13 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 08:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313926#M1393150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T08:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313927#M1393151</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;After SELECT statement it shuold end with ENDSELECT......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;/P&gt;&lt;P&gt;SELECT A&lt;SUB&gt;VBELN A&lt;/SUB&gt;ERDAT A&lt;SUB&gt;AUART A&lt;/SUB&gt;VKORG A&lt;SUB&gt;VTWEG A&lt;/SUB&gt;SPART A~VDATU&lt;/P&gt;&lt;P&gt;A&lt;SUB&gt;KUNNR B&lt;/SUB&gt;POSNR B&lt;SUB&gt;MATNR B&lt;/SUB&gt;ARKTX B&lt;SUB&gt;ABGRU B&lt;/SUB&gt;KWMENG B~VRKME&lt;/P&gt;&lt;P&gt;B&lt;SUB&gt;WERKS B&lt;/SUB&gt;VSTEL B~ROUTE&lt;/P&gt;&lt;P&gt;FROM VBAK AS A INNER JOIN VBAP AS B ON A&lt;SUB&gt;VBELN EQ B&lt;/SUB&gt;VBELN&lt;/P&gt;&lt;P&gt;INNER JOIN VBEP AS C ON A&lt;SUB&gt;VBELN EQ C&lt;/SUB&gt;VBELN&lt;/P&gt;&lt;P&gt;AND B&lt;SUB&gt;POSNR EQ C&lt;/SUB&gt;POSNR&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE I_DATA_TAB&lt;/P&gt;&lt;P&gt;WHERE A~VBELN IN S_VBELN&lt;/P&gt;&lt;P&gt;AND A~VKORG IN S_VKORG&lt;/P&gt;&lt;P&gt;AND A~AUART IN S_AUART&lt;/P&gt;&lt;P&gt;AND A~VTWEG IN S_VTWEG&lt;/P&gt;&lt;P&gt;AND A~SPART IN S_SPART&lt;/P&gt;&lt;P&gt;AND A~VDATU IN S_VDATU&lt;/P&gt;&lt;P&gt;AND A~KUNNR IN S_KUNNRD&lt;/P&gt;&lt;P&gt;AND B~MATNR IN S_MATNR&lt;/P&gt;&lt;P&gt;AND B~KWMENG IN S_KWMENG&lt;/P&gt;&lt;P&gt;AND B~VRKME IN S_VRKME&lt;/P&gt;&lt;P&gt;AND B~WERKS IN S_WERKS&lt;/P&gt;&lt;P&gt;AND C~EDATU IN S_VDATU.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;SELECT VBELN FROM LIKP INTO LIKP-VBELN&lt;/P&gt;&lt;P&gt;WHERE LFDAT IN S_VDATU&lt;/P&gt;&lt;P&gt;AND VKORG IN S_VKORG&lt;/P&gt;&lt;P&gt;AND LFART EQ 'YSTD'&lt;/P&gt;&lt;P&gt;AND KUNNR IN S_KUNNRP&lt;/P&gt;&lt;P&gt;AND KUNAG IN S_KUNNRD.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT VBELN POSNR LFIMG MATNR WERKS&lt;/P&gt;&lt;P&gt;FROM LIPS INTO (LIPS-VBELN, LIPS-POSNR, DISPLAY_TAB-DEL_QTY,&lt;/P&gt;&lt;P&gt;LIPS-MATNR, LIPS-WERKS)&lt;/P&gt;&lt;P&gt;WHERE VBELN EQ LIKP-VBELN&lt;/P&gt;&lt;P&gt;AND MATNR IN S_MATNR&lt;/P&gt;&lt;P&gt;AND VTWEG IN S_VTWEG&lt;/P&gt;&lt;P&gt;AND SPART IN S_SPART&lt;/P&gt;&lt;P&gt;AND WERKS IN S_WERKS. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;SELECT DELIVERY POSNR MATNR PODLFIMG FROM T9YPODI INTO&lt;/P&gt;&lt;P&gt;(T9YPODI-DELIVERY, T9YPODI-POSNR, T9YPODI-MATNR, T9YPODI-PODLFIMG)&lt;/P&gt;&lt;P&gt;WHERE MATNR IN S_MATNR&lt;/P&gt;&lt;P&gt;AND PODDATE IN S_VDATU.&lt;/P&gt;&lt;P&gt;ENDSELECT.&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;Shankar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 08:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313927#M1393151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T08:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313928#M1393152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What we want to achieve is to have the retrieval/Select statement undergo performance tuning. And I think the suggestions you gave will still cause a 'Runtime Error' in the program. Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lourd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 08:50:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313928#M1393152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T08:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313929#M1393153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly go to TCODE ST22 and analysis the errors. And which SELECT statement  returns error or all of them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Thien&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 08:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313929#M1393153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T08:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313930#M1393154</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;If you can change your code from iNNER JOIN....to FOR ALL ENTRIES.AVOID using ENDSELECT.Even if you need to check for some condition check,always use ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select f1 f2&lt;/P&gt;&lt;P&gt;from VBAK&lt;/P&gt;&lt;P&gt;into table it_vbak&lt;/P&gt;&lt;P&gt;where vbeln in so-vbeln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_vbak is not initial.&lt;/P&gt;&lt;P&gt;select f1 f2&lt;/P&gt;&lt;P&gt;from VBAP&lt;/P&gt;&lt;P&gt;into tble it_vbap&lt;/P&gt;&lt;P&gt;for all entries in it_vbak&lt;/P&gt;&lt;P&gt;where vbeln eq it_vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;thanks &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: p317980 on Oct 23, 2009 10:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 08:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313930#M1393154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T08:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313931#M1393155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you know that this thread will be closed soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime error has a reason please check in ST22, is it wrong or a time-out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check one by one in ST05, see sticky thread above, come back with result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And please never add or read this 'Replace JOIN by FAE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 09:06:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313931#M1393155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T09:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313932#M1393156</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;We've checked the transaction ST22 it is TIME OUT. I really need your help on this the program will dump in number 1 Select statement. Can you help me perform a performance tunning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In transaction ST22&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         TIME_OUT&lt;/P&gt;&lt;P&gt;Date and Time          21.10.2009 08:51:33&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Short text&lt;/P&gt;&lt;P&gt;     Time limit exceeded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What happened?&lt;/P&gt;&lt;P&gt;     The program "ZV0PSR10" has exceeded the maximum permitted runtime without&lt;/P&gt;&lt;P&gt;     interruption and has therefore been terminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What can you do?&lt;/P&gt;&lt;P&gt;     Note down which actions and inputs caused the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     To process the problem further, contact you SAP system&lt;/P&gt;&lt;P&gt;     administrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Using Transaction ST22 for ABAP Dump Analysis, you can look&lt;/P&gt;&lt;P&gt;     at and manage termination messages, and you can also&lt;/P&gt;&lt;P&gt;     keep them for a long time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis&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 1200 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;P&gt;&lt;/P&gt;&lt;P&gt;~Thank you &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lourd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lourd06 on Oct 23, 2009 11:22 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lourd06 on Oct 23, 2009 11:33 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 09:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313932#M1393156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T09:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313933#M1393157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Siegfried said, this will probably be closed, because you should &lt;SPAN __jive_macro_name="thread" id="1283414"&gt;&lt;/SPAN&gt;  also search for existing similar discussions here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your selections contain all necessary key fields, BUT depending on how the S_... selection options are filled, you will see a completely different response time. E.g. fill one single value in S_VBELN, and your first select will be lightning quick, I bet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 09:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313933#M1393157</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2009-10-23T09:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Tuning 'Runtime Error' on Select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313934#M1393158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Siegfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why would you not use a FAE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have just coded a program for SD module,using the same set of TABLES,it works just fine...Please advice &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2009 11:52:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-tuning-runtime-error-on-select-statement/m-p/6313934#M1393158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-23T11:52:55Z</dc:date>
    </item>
  </channel>
</rss>

