<?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 avoid embedded loops? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820372#M1588926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sort lt_table1.
sort lt_table2.

loop at lt_table1 into wa_table1.
  read table lt_table2 transporting no fields with key field = wa_table1-field binary search.
  if sy-subrc EQ 0
    l_tabix = sy-tabix.
  end if.

  loop at lt_table2 into wa_table2 from l_tabix.  " loop using index is much faster than using where conditions
    if  wa_table2-field NE wa_table1-field.  "exit condition
      exit. 
    end if.
  endloop.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more information read about parallel cursors...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards sebastiá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 May 2011 14:41:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-24T14:41:40Z</dc:date>
    <item>
      <title>how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820370#M1588924</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;I am not an expert and dealing with a performance issue. When a debugged the code I figured that a embedded loop was causing the performance issue and I am looking for analternative way to write that piece of the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at SOURCE_PACKAGE assigning &amp;lt;source_fields&amp;gt;.&lt;/P&gt;&lt;P&gt;  loop at i_t_d032 into i_l_d032 where&lt;/P&gt;&lt;P&gt;         /bic/zfield1 = &amp;lt;source_fields&amp;gt;-/bic/zfield1 and&lt;/P&gt;&lt;P&gt;         /bic/zfield2 =  &amp;lt;source_fields&amp;gt;-/bic/zfield2 and&lt;/P&gt;&lt;P&gt;          /bic/zfield3 =  &amp;lt;source_fields&amp;gt;-/bic/zfield3 and&lt;/P&gt;&lt;P&gt;          /bic/zfield4 &amp;lt;= &amp;lt;source_fields&amp;gt;-/bic/zfield4 .&lt;/P&gt;&lt;P&gt;    delete SOURCE_PACKAGE.&lt;/P&gt;&lt;P&gt;    exit.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI - I_t_d032 has 30 million records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I apprciate your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 13:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820370#M1588924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-24T13:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820371#M1588925</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;First check that i_t_d032 is fetched only once for entire LUW ( per one instance) i.e. the same select query to fill this internal table i_t_d032  shouldnt be repeated for every data package -source package for a particuklar load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second Declare i_t_d032  type sorted table with non unique key as /bic/zfield1 /bic/zfield2 /bic/zfield3 /bic/zfield4.&lt;/P&gt;&lt;P&gt;Then instead of loop you use read table with table key. This might improve 30 % of time taken usually without sorted table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at SOURCE_PACKAGE assigning &amp;lt;source_fields&amp;gt;.&lt;/P&gt;&lt;P&gt;Read table i_t_d032 into i_l_d032 with table key  /bic/zfield1 = &amp;lt;source_fields&amp;gt;-/bic/zfield1                                                                                &lt;/P&gt;&lt;P&gt;/bic/zfield2 = &amp;lt;source_fields&amp;gt;-/bic/zfield2                                                                                &lt;/P&gt;&lt;P&gt;/bic/zfield3 = &amp;lt;source_fields&amp;gt;-/bic/zfield3                                                                                &lt;/P&gt;&lt;P&gt;/bic/zfield4 &amp;lt;= &amp;lt;source_fields&amp;gt;-/bic/zfield4 .&lt;/P&gt;&lt;P&gt;If sy-subrc eq 0.&lt;/P&gt;&lt;P&gt; delete SOURCE_PACKAGE.&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;Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 14:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820371#M1588925</guid>
      <dc:creator>former_member213275</dc:creator>
      <dc:date>2011-05-24T14:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820372#M1588926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this way :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sort lt_table1.
sort lt_table2.

loop at lt_table1 into wa_table1.
  read table lt_table2 transporting no fields with key field = wa_table1-field binary search.
  if sy-subrc EQ 0
    l_tabix = sy-tabix.
  end if.

  loop at lt_table2 into wa_table2 from l_tabix.  " loop using index is much faster than using where conditions
    if  wa_table2-field NE wa_table1-field.  "exit condition
      exit. 
    end if.
  endloop.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more information read about parallel cursors...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards sebastiá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 14:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820372#M1588926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-24T14:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820373#M1588927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your suggestion. To answer your question I am including the select statement tht fills he itab. And yes it looks like every package is filling the itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SOURCE_PACKAGE IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT /BIC/zfield1&lt;/P&gt;&lt;P&gt;         /BIC/zfield2&lt;/P&gt;&lt;P&gt;         /BIC/zfield3&lt;/P&gt;&lt;P&gt;         /BIC/zfield4&lt;/P&gt;&lt;P&gt;    FROM /BIC/AZXX_D03200 INTO CORRESPONDING FIELDS OF&lt;/P&gt;&lt;P&gt;TABLE i_t_d032&lt;/P&gt;&lt;P&gt;  FOR ALL ENTRIES IN SOURCE_PACKAGE WHERE&lt;/P&gt;&lt;P&gt;          /BIC/Zfield1 =  SOURCE_PACKAGE-/BIC/zfield1&lt;/P&gt;&lt;P&gt;AND&lt;/P&gt;&lt;P&gt;          /BIC/Zfield2 =  SOURCE_PACKAGE-/BIC/Zfield2&lt;/P&gt;&lt;P&gt;AND&lt;/P&gt;&lt;P&gt;          /BIC/zfield3 =  SOURCE_PACKAGE-/BIC/Zfield3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my question is if I fill he internal table from the active table at once, wouldn't hit th memory? We will be keeping 30 million records in memeory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 14:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820373#M1588927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-24T14:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820374#M1588928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you I will try this too!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 May 2011 14:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820374#M1588928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-24T14:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820375#M1588929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sebastiu00E1n Wrote:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
for more information read about parallel cursors...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am totally disagree with you. Parallel cursor is old technique. You have to used sorted table insted of parallel cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can define internal table &lt;STRONG&gt;lt_table2&lt;/STRONG&gt;  as sorted table.  It will avoid first read statement inside the loop or index handlling overhead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details read Link:[sorted table|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/7247] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Rgds&lt;/P&gt;&lt;P&gt;Ravi Lanjewar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 09:24:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820375#M1588929</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2011-05-25T09:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820376#M1588930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make clear, what you actually want!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the SELECT, just above the LOOP? So the SELECT fills everything and then a lot must be deleted.&lt;/P&gt;&lt;P&gt;Make that clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is this DELETE supposed to do?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at i_t_d032 into i_l_d032 where
/bic/zfield1 = &amp;lt;source_fields&amp;gt;-/bic/zfield1 and
/bic/zfield2 = &amp;lt;source_fields&amp;gt;-/bic/zfield2 and
/bic/zfield3 = &amp;lt;source_fields&amp;gt;-/bic/zfield3 and
/bic/zfield4 &amp;lt;= &amp;lt;source_fields&amp;gt;-/bic/zfield4 .
delete SOURCE_PACKAGE.
exit.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;People recommending SORTED tables should be aware that it will not work as there is the '&amp;lt;=' condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overall, I guess that there is solution but not in the way proposed. You must start completely different!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 10:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820376#M1588930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-25T10:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820377#M1588931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;People recommending SORTED tables should be aware that it will not work as there is the '&amp;lt;=' condition&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello Siegfried,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per the SAP documentation: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;To enable the logical expression of the WHERE condition to be mapped to a key access, the expression must use (in the case of sorted key accesses) AND comparisons with the operator = (or EQ) to cover an initial part of the key consisting of at least one component. &lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;STRONG&gt;An AND association with further comparisons is possible&lt;/STRONG&gt;&lt;/SPAN&gt;. Optimization may not be possible if the boolean operator NOT is used. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; Source: [http://help.sap.com/abapdocu_702/en/abenitab_where_optimization.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if i define the table &lt;EM&gt;i_t_d032&lt;/EM&gt; as SORTED with key fields as &lt;EM&gt;/bic/zfield1&lt;/EM&gt;, &lt;EM&gt;/bic/zfield2&lt;/EM&gt;, &lt;EM&gt;/bic/zfield3&lt;/EM&gt;, then the &lt;EM&gt;LOOP ... WHERE&lt;/EM&gt; will be optimised even if the there is a '&amp;lt;=' condition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me if my understanding is incorrect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 11:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820377#M1588931</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-05-25T11:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820378#M1588932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at least in releases &amp;lt; 7.02 this was not the case. I haven't follow up to 7.02 yet.&lt;/P&gt;&lt;P&gt;It might have been optimized... .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 12:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820378#M1588932</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-05-25T12:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820379#M1588933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hermann,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP documentation from Release 701: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;While with standard tables all rows of the internal table are checked for the logical expression of the WHERE- addition, with sorted tables and hash tables (as of Release 7.0) you can achieve optimized access by checking that at least the beginning part of the table key in sorted tables and the entire table key in hash tables is equal in the logical expression through queries linked with AND. &lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;STRONG&gt;Optimization also takes effect if the logical expression contains other queries linked with AND with arbitrary operators.&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried this in one of my programs. I had used all the KEYs and addition to that i had used a couple of non-KEY fields with '&amp;lt;=' &amp;amp; '&amp;gt;=' operators.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Code Inspector had not given warning regd. sequential reads on SORTED TABLES either!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 15:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820379#M1588933</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-05-25T15:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid embedded loops?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820380#M1588934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i again checked some docs and found:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A LOOP WHERE on sorted tables is optimized if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- All conditions are linked with an AND &lt;/P&gt;&lt;P&gt;- No parentheses are used &lt;/P&gt;&lt;P&gt;- At least one condition has the form k = v &lt;/P&gt;&lt;P&gt;- At least a leading part of the table key is covered by conditions of the form k1 = v1 ... kn = vn. &lt;/P&gt;&lt;P&gt;- none of the conditions entered is negated (NOT &amp;lt;field&amp;gt; &amp;lt;operator&amp;gt; &amp;lt;value&amp;gt;)   (Note that you can use the 'NE' / '&amp;lt;&amp;gt;' operator!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is in other words what the docu says.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i remember right it was not always like this (maybe in 6.40 4.6C then....). Your tests showed &lt;/P&gt;&lt;P&gt;that it was optimized i guess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So coming back to the topic: The DELETE WHERE should be optimized by the kernal on a sorted table no matter if we have 3 or 4 key fields or the &amp;lt;= condition on a field that is not on the leading part of the key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hermann&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Hermann Gahm on May 26, 2011 10:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 16:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-embedded-loops/m-p/7820380#M1588934</guid>
      <dc:creator>HermannGahm</dc:creator>
      <dc:date>2011-05-25T16:47:13Z</dc:date>
    </item>
  </channel>
</rss>

