<?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 How to performance tune this code ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976822#M71039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Believe this function module is performance tuned, Any suggestions how to improve the code. Any suggestions appreciated..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;BWer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZCPMHIERTEST.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(IOB_NAME) TYPE  C&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HIER_NAME) TYPE  C OPTIONAL&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HIER_OUT) LIKE  ZHIERAR_TAB STRUCTURE  ZHIERAR_TAB&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: hier_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      int_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      text_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      iob_name_cap(30) type C,&lt;/P&gt;&lt;P&gt;      h_itab like hier_out occurs 0 with header line,&lt;/P&gt;&lt;P&gt;      h_wa like h_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iob_name_cap = iob_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;convert to upper case&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TRANSLATE IOB_NAME_cap to UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;find if custom infobject or not&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if iob_name+0(1) = 'Z' or&lt;/P&gt;&lt;P&gt;   iob_name+0(1) = 'z'.&lt;/P&gt;&lt;P&gt;   hier_tab_name = '/BIC/H' + iob_name.&lt;/P&gt;&lt;P&gt;   int_tab_name = '/BIC/J' + iob_name.&lt;/P&gt;&lt;P&gt;   text_tab_name = '/BIC/T' + iob_name.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   hier_tab_name = '/BI0/H' + iob_name.&lt;/P&gt;&lt;P&gt;   int_tab_name = '/BIO/J' + iob_name.&lt;/P&gt;&lt;P&gt;   text_tab_name = '/BIO/T' + iob_name.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get hierarchy table data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select HIEID NODEID IOBJNM NODENAME TLEVEL PARENTID CHILDID NEXTID&lt;/P&gt;&lt;P&gt;       INTERVL from (hier_tab_name)&lt;/P&gt;&lt;P&gt;       into table h_itab&lt;/P&gt;&lt;P&gt;       where OBJVERS = 'A'.&lt;/P&gt;&lt;P&gt;sort h_itab by HIEID NODEID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at h_itab.&lt;/P&gt;&lt;P&gt;  move-corresponding h_itab to h_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill leaf info&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  select single LEAFFROM LEAFTO&lt;/P&gt;&lt;P&gt;       from (int_tab_name)&lt;/P&gt;&lt;P&gt;       into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;       where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODEID = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill text info&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;  if h_wa-CHILDID eq '00000000'.&lt;/P&gt;&lt;P&gt;    select single TXTSH TXTMD TXTLG&lt;/P&gt;&lt;P&gt;         from (text_tab_name)&lt;/P&gt;&lt;P&gt;         into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;         where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODEID = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    select single TXTSH TXTMD TXTLG&lt;/P&gt;&lt;P&gt;         from RSTHIERNODE&lt;/P&gt;&lt;P&gt;         into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;         where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODENAME = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.  &lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;update the output table. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  modify h_itab from h_wa &lt;/P&gt;&lt;P&gt;        transporting LEAFFROM LEAFTO TXTSH TXTMD TXTLG.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jul 2005 16:05:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-12T16:05:36Z</dc:date>
    <item>
      <title>How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976822#M71039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Believe this function module is performance tuned, Any suggestions how to improve the code. Any suggestions appreciated..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;BWer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZCPMHIERTEST.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(IOB_NAME) TYPE  C&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HIER_NAME) TYPE  C OPTIONAL&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HIER_OUT) LIKE  ZHIERAR_TAB STRUCTURE  ZHIERAR_TAB&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: hier_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      int_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      text_tab_name(36) type C,&lt;/P&gt;&lt;P&gt;      iob_name_cap(30) type C,&lt;/P&gt;&lt;P&gt;      h_itab like hier_out occurs 0 with header line,&lt;/P&gt;&lt;P&gt;      h_wa like h_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iob_name_cap = iob_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;convert to upper case&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TRANSLATE IOB_NAME_cap to UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;find if custom infobject or not&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;if iob_name+0(1) = 'Z' or&lt;/P&gt;&lt;P&gt;   iob_name+0(1) = 'z'.&lt;/P&gt;&lt;P&gt;   hier_tab_name = '/BIC/H' + iob_name.&lt;/P&gt;&lt;P&gt;   int_tab_name = '/BIC/J' + iob_name.&lt;/P&gt;&lt;P&gt;   text_tab_name = '/BIC/T' + iob_name.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   hier_tab_name = '/BI0/H' + iob_name.&lt;/P&gt;&lt;P&gt;   int_tab_name = '/BIO/J' + iob_name.&lt;/P&gt;&lt;P&gt;   text_tab_name = '/BIO/T' + iob_name.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get hierarchy table data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select HIEID NODEID IOBJNM NODENAME TLEVEL PARENTID CHILDID NEXTID&lt;/P&gt;&lt;P&gt;       INTERVL from (hier_tab_name)&lt;/P&gt;&lt;P&gt;       into table h_itab&lt;/P&gt;&lt;P&gt;       where OBJVERS = 'A'.&lt;/P&gt;&lt;P&gt;sort h_itab by HIEID NODEID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at h_itab.&lt;/P&gt;&lt;P&gt;  move-corresponding h_itab to h_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill leaf info&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  select single LEAFFROM LEAFTO&lt;/P&gt;&lt;P&gt;       from (int_tab_name)&lt;/P&gt;&lt;P&gt;       into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;       where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODEID = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fill text info&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;  if h_wa-CHILDID eq '00000000'.&lt;/P&gt;&lt;P&gt;    select single TXTSH TXTMD TXTLG&lt;/P&gt;&lt;P&gt;         from (text_tab_name)&lt;/P&gt;&lt;P&gt;         into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;         where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODEID = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    select single TXTSH TXTMD TXTLG&lt;/P&gt;&lt;P&gt;         from RSTHIERNODE&lt;/P&gt;&lt;P&gt;         into corresponding fields of h_wa&lt;/P&gt;&lt;P&gt;         where HIEID = h_wa-HIEID&lt;/P&gt;&lt;P&gt;               and NODENAME = h_wa-NODEID&lt;/P&gt;&lt;P&gt;               and OBJVERS = 'A'.  &lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;update the output table. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  modify h_itab from h_wa &lt;/P&gt;&lt;P&gt;        transporting LEAFFROM LEAFTO TXTSH TXTMD TXTLG.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 16:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976822#M71039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T16:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976823#M71040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does it execute without dumping?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 19:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976823#M71040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-12T19:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976824#M71041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, avoid using INTO CORRESPONDING FIELDS OF, if possible.&lt;/P&gt;&lt;P&gt;you can define some temp structure for store the select result, and set them into your 'H_WA', when you do modify at last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If should be useful to upgrade your performance. &lt;/P&gt;&lt;P&gt;If it is not enough, you can move the select from the LOOP, select all of the entries before LOOP, and just read internal table in the LOOP, in order to reduce the access time to DB.&lt;/P&gt;&lt;P&gt;But effect of this solution is due to the amount of your data. &lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 03:25:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976824#M71041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T03:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976825#M71042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya....instead of using into corresponding fields....if it is possible for you to have the fields of the internal table in the same order as specified in the select query then u can simply use into table....if there are additional fields, they can come at the end....this will lead to a much improved performance of the select query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;PJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 04:41:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976825#M71042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T04:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976826#M71043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi BWer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I a bit confused: should I believe, it is performance tuned (no changes to selects), or make some comments?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, here some comments:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, you can save some time by an optimized access instead of select singles. Instead you can read all relevant entries at once - with 'for all entries'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create 4 additional internal tables: 2 for the where-clause, 2 for the select result.&lt;/P&gt;&lt;P&gt;Collect HIEID NODEID depending on CHILDID into on or the other table.&lt;/P&gt;&lt;P&gt;After endloop, make two selects for the corresponding tables. Fetch in addition HIEID NODEID.&lt;/P&gt;&lt;P&gt;In a new loop, make read table statements instead of select singles. Use internal tables of hashed type -&amp;gt; you can use a key access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if the runtime of the select singles is less then - let's say 15%, forgot the option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 05:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976826#M71043</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2005-07-13T05:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976827#M71044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason I ask is that the statement:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
hier_tab_name = '/BIC/H' + iob_name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;will cause you program to crash. Do you mean to do an addition, or are you trying to concatenate? If you want to concatenate the two fields, the syntax is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
concatenate '/BIC/H' iob_name into hier_tab_name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 17:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976827#M71044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T17:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976828#M71045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i have changed that statement.. and replaced it by concatenate&lt;/P&gt;&lt;P&gt;concatenate '/BIC/H' iob_name into hier_tab_name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 18:46:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976828#M71045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T18:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to performance tune this code ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976829#M71046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more thing - If you move the definition of h_itab to the top include, the data from the last execution of the FM will remain in the table for successive calls to the FM from within a program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if the FM is called multiple times by a program (in a loop, say) you can first check to see if the records you need are already there. If they are, you can get them from the internal table; otherwise, retrieve the records you want and append the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jul 2005 21:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-performance-tune-this-code/m-p/976829#M71046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-13T21:05:28Z</dc:date>
    </item>
  </channel>
</rss>

