<?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: Time Out at Modify command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375468#M1642344</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello DJ Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my proposal without redefining table type to a sorted one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if t_getpo always has only ONE record for the given EBELN and EBELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR wa_repord.
  field-symbols: &amp;lt;fs_repord&amp;gt; like wa_repord,
    &amp;lt;fs_po&amp;gt; like wa_po.

  LOOP AT t_repord ASSIGNING &amp;lt;fs_repord&amp;gt;.
    READ TABLE t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; WITH KEY
                  ebeln = &amp;lt;fs_repord&amp;gt;-ebeln
                  ebelp = &amp;lt;fs_repord&amp;gt;-ebelp
                  BINARY SEARCH.
    IF sy-subrc = 0.
      &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If t_getpo may contain MULTIPLE records for the given EBELN and EBELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR wa_repord.
  field-symbols: &amp;lt;fs_repord&amp;gt; like wa_repord,
    &amp;lt;fs_po&amp;gt; like wa_po.
  data: lv_tabix like sy-tabix.

  LOOP AT t_repord ASSIGNING &amp;lt;fs_repord&amp;gt;.
    READ TABLE t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; WITH KEY
                  ebeln = &amp;lt;fs_repord&amp;gt;-ebeln
                  ebelp = &amp;lt;fs_repord&amp;gt;-ebelp
                  BINARY SEARCH.
    IF sy-subrc = 0.
      lv_tabix = sy-tabix + 1.
      &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.
      LOOP AT t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; FROM lv_tabix.
        IF &amp;lt;fs_po&amp;gt;-ebeln NE &amp;lt;fs_repord&amp;gt;-ebeln OR
           &amp;lt;fs_po&amp;gt;-ebelp NE &amp;lt;fs_repord&amp;gt;-ebelp.
         EXIT.
        ENDIF.
        &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.      
      ENDLOOP.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Yuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Nov 2011 09:04:18 GMT</pubDate>
    <dc:creator>yuri_ziryukin</dc:creator>
    <dc:date>2011-11-02T09:04:18Z</dc:date>
    <item>
      <title>Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375463#M1642339</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;Below pasted code is throwing time out dump, complete details are follows,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MODIFY t_getpo FROM wa_po TRANSPORTING labnr&lt;/P&gt;&lt;P&gt;                   WHERE ebeln = wa_repord-ebeln AND&lt;/P&gt;&lt;P&gt;                         ebelp = wa_repord-ebelp.&lt;/P&gt;&lt;P&gt;size of t_getpo is approximately 1million (it is working fine if data is less than .80 million; but some times my delta request contains more than a million records)&lt;/P&gt;&lt;P&gt;type : is STANDARD internal table, all fields are char type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest me how to avoid this time out shortdump? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;DJ Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2011 16:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375463#M1642339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-01T16:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375464#M1642340</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;You should try to use a sorted or hashed table instead of a standard one. Access will be optimized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;Manu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2011 17:47:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375464#M1642340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-01T17:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375465#M1642341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you are in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use FIELD-SYMBOLS and get rid of MODIFY statement and access will be much faster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at t_getpo assigning &amp;lt;fs_getpo&amp;gt;.

       "just change &amp;lt;fs_getpo&amp;gt; with required values, int table itself gets updated

endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Diwakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 02:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375465#M1642341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T02:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375466#M1642342</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;Thank you Manu and Diwakar, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manu - I will try to implement your suggetstion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Diwakar - As per your suggestion Modify is already in loop, as per our client platform guide line we are not supposed to use loop in loop. Please find the below total pice of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR wa_repord.
  LOOP AT t_repord INTO wa_repord.
    CLEAR wa_po.
    READ TABLE t_getpo INTO wa_po WITH KEY
                  ebeln = wa_repord-ebeln
                  ebelp = wa_repord-ebelp
                  BINARY SEARCH.
    IF sy-subrc = 0.
      wa_po-labnr = wa_repord-labnr.
    MODIFY t_getpo FROM wa_po TRANSPORTING labnr
                   WHERE ebeln = wa_repord-ebeln AND
                         ebelp = wa_repord-ebelp.
      ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;DJ Reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;Added code tags&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Nov 2, 2011 1:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 08:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375466#M1642342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T08:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375467#M1642343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello DJ Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason why the MODIFY statement is getting a timeout is that for every iteration of T_REPORD, which has a corres. record in T_GETPO, a full table scan(all the rows of the standard internal tab are checked) is performed on T_GETPO for the MODIFY ... WHERE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use SORTED or HASHED tables, the access to the rows will be done using binary or hash algorithm respectively &amp;amp; hence optimized.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll suggest you try to implement Manu's suggestion &amp;amp; get back to the forums in case you face any problems.&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, 02 Nov 2011 08:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375467#M1642343</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-11-02T08:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375468#M1642344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello DJ Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my proposal without redefining table type to a sorted one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if t_getpo always has only ONE record for the given EBELN and EBELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR wa_repord.
  field-symbols: &amp;lt;fs_repord&amp;gt; like wa_repord,
    &amp;lt;fs_po&amp;gt; like wa_po.

  LOOP AT t_repord ASSIGNING &amp;lt;fs_repord&amp;gt;.
    READ TABLE t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; WITH KEY
                  ebeln = &amp;lt;fs_repord&amp;gt;-ebeln
                  ebelp = &amp;lt;fs_repord&amp;gt;-ebelp
                  BINARY SEARCH.
    IF sy-subrc = 0.
      &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If t_getpo may contain MULTIPLE records for the given EBELN and EBELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR wa_repord.
  field-symbols: &amp;lt;fs_repord&amp;gt; like wa_repord,
    &amp;lt;fs_po&amp;gt; like wa_po.
  data: lv_tabix like sy-tabix.

  LOOP AT t_repord ASSIGNING &amp;lt;fs_repord&amp;gt;.
    READ TABLE t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; WITH KEY
                  ebeln = &amp;lt;fs_repord&amp;gt;-ebeln
                  ebelp = &amp;lt;fs_repord&amp;gt;-ebelp
                  BINARY SEARCH.
    IF sy-subrc = 0.
      lv_tabix = sy-tabix + 1.
      &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.
      LOOP AT t_getpo ASSIGNING &amp;lt;fs_po&amp;gt; FROM lv_tabix.
        IF &amp;lt;fs_po&amp;gt;-ebeln NE &amp;lt;fs_repord&amp;gt;-ebeln OR
           &amp;lt;fs_po&amp;gt;-ebelp NE &amp;lt;fs_repord&amp;gt;-ebelp.
         EXIT.
        ENDIF.
        &amp;lt;fs_po&amp;gt;-labnr = &amp;lt;fs_repord&amp;gt;-labnr.      
      ENDLOOP.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Yuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 09:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375468#M1642344</guid>
      <dc:creator>yuri_ziryukin</dc:creator>
      <dc:date>2011-11-02T09:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375469#M1642345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't mean to introduce any new loop, just wanted to show you to use it with FIELD_SYMBOLS.&lt;/P&gt;&lt;P&gt;Yuri has given the required thing above which should help you. Note that "BINARY SEARCH" mentioned by him is utmost important in your scenario.&lt;/P&gt;&lt;P&gt;Remember to SORT the table on ebeln, ebelp before using Binary search.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note that Loop inside Loop can't be taken as an impossible scenario, there are various unavoidable cases where you will have to use them. There are ways to use them efficiently using binary search/sorted tables etc. Can be searched for more details in forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Diwakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 09:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375469#M1642345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T09:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375470#M1642346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Diwakar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the BINARY SEARCH was already in his original code &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I simply left it there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 09:16:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375470#M1642346</guid>
      <dc:creator>yuri_ziryukin</dc:creator>
      <dc:date>2011-11-02T09:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375471#M1642347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you ALL. for your help, it help me solving the issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 11:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375471#M1642347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-02T11:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375472#M1642348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yuri &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You ca see here Siegfred mentioning parallel cursor method as an outdated solution &lt;SPAN __jive_macro_name="thread" id="1895557"&gt;&lt;/SPAN&gt;, particulary the comment &lt;STRONG&gt;sorts are expensive&lt;/STRONG&gt;. Here its recommended to use sorted tables &lt;SPAN __jive_macro_name="thread" id="1796790"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I add +1 with Manu and Suhas &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any comments ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2011 12:24:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375472#M1642348</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-02T12:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Time Out at Modify command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375473#M1642349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Yuri &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; You ca see here Siegfred mentioning parallel cursor method as an outdated solution &lt;SPAN __jive_macro_name="thread" id="1895557"&gt;&lt;/SPAN&gt;, particulary the comment &lt;STRONG&gt;sorts are expensive&lt;/STRONG&gt;. Here its recommended to use sorted tables &lt;SPAN __jive_macro_name="thread" id="1796790"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I add +1 with Manu and Suhas &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Any comments ? &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Kesav&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;outdated does not mean that it is always worse. Since the introduction of sorted tables, indeed using them makes things easier.&lt;/P&gt;&lt;P&gt;In the above case my intention was to make as little changes to the original code as possible. Maybe changing the definition of the table will require more changes in other places of the program. And in this particular case the usage of "loop at from index" was relatively easy to implement without significant effort.&lt;/P&gt;&lt;P&gt;It did not require any additional sorting as the inner table was already sorted before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Yuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2011 07:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-out-at-modify-command/m-p/8375473#M1642349</guid>
      <dc:creator>yuri_ziryukin</dc:creator>
      <dc:date>2011-11-03T07:59:40Z</dc:date>
    </item>
  </channel>
</rss>

