<?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: difference between sy-index &amp; sy-tabix in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320654#M509438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Check this Link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=2863826&amp;amp;messageID=2868547" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=2863826&amp;amp;messageID=2868547&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 May 2007 05:18:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-30T05:18:37Z</dc:date>
    <item>
      <title>difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320646#M509430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;Please tell me the difference between sy-index &amp;amp; sy-tabix&lt;/P&gt;&lt;P&gt;Actually my problem is i don't know how to compare for example between first record'field n and second record'field n when u r in loop so i can take particular action based on result&lt;/P&gt;&lt;P&gt;on current recor&lt;/P&gt;&lt;P&gt;if possible send me sample code.&lt;/P&gt;&lt;P&gt;Regards;&lt;/P&gt;&lt;P&gt;Parag Gavkar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320646#M509430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320647#M509431</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;sy-index will give u the number of iteration in the loop.&lt;/P&gt;&lt;P&gt;sy-tabix will give u the number rows filled in an internal table at the moment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320647#M509431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320648#M509432</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;SY-TABIX means Table Index. This signifies the number of table index. Each row of a table has certain index or counter. The value of sy-tabix for the last entry would be equivalent to number of table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-INDEX means the number of Iterations for a loop. bascially DO - ENDDO .&lt;/P&gt;&lt;P&gt;SY-INDEX is not equal to SY-TABIX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-tabix inside loop-endloop, and sy-index inside do-enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the belwo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report tabix_index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 100 times.&lt;/P&gt;&lt;P&gt;wa_tab-index = sy-index.&lt;/P&gt;&lt;P&gt;append wa_tab to itab.&lt;/P&gt;&lt;P&gt;clear wa_tab.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_tab.&lt;/P&gt;&lt;P&gt;write:/1 sy-tabix.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this answers your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~~Guduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320648#M509432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320649#M509433</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;SY-TABIX means Table Index. This signifies the number of table index. Each row of a table has certain index or counter. The value of sy-tabix for the last entry would be equivalent to number of table entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-INDEX means the number of Iterations for a loop. bascially DO - ENDO .&lt;/P&gt;&lt;P&gt;SY-INDEX is not equal to SY-TABIX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the belwo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report tabix_index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 100 times.&lt;/P&gt;&lt;P&gt;wa_tab-index = sy-index.&lt;/P&gt;&lt;P&gt;append wa_tab to itab.&lt;/P&gt;&lt;P&gt;clear wa_tab.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa_tab.&lt;/P&gt;&lt;P&gt;write:/1 sy-tabix.&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;****DO REWARDS IF USEFULL&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;VIJAY&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320649#M509433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320650#M509434</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;SY-INDEX will work for DO..ENDDO..It holds the current row number within the loop..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 10 TIMES.&lt;/P&gt;&lt;P&gt;  WRITE: / SY-INDEX.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-TABIX will work for LOOP..ENDLOOP...It holds the current row within the loop..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:17:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320650#M509434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320651#M509435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;sy-index = gives the number of iterations in the loop.&lt;/P&gt;&lt;P&gt;sy-tabix  =  will give the Table Index of an internal table at that moment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320651#M509435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320652#M509436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SY-TABIX:&lt;/P&gt;&lt;P&gt;Current line in an internal table. With the following statements SY-TABIX is set for index tables. With hashed tables, SY-TABIX is not filled or it is set to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- APPEND sets SY-TABIX to the index of the last table row, that is the total number of entries in the target table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- COLLECT sets SY-TABIX to the index of the existing or appended table row. With hashed tables, SY-TABIX is set to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- LOOP AT sets SY-TABIX to the index of the current table row at the beginning of every loop pass. After leaving a loop, SY-TABIX is set to the value it had before entering the loop. With hashed tables, SY-TABIX is set to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- READ TABLE sets SY-TABIX to the index of the table row read. If no row is found with binary search while reading, SY-TABIX contains the index of the next-highest row or the total number of rows +1. If no row is found with linear search while reading, SY-TABIX is undefined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- SEARCH itab FOR sets SY-TABIX to the index of the table row, in which the search string was found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-INDEX:&lt;/P&gt;&lt;P&gt;SY-INDEX contains the number of loop passes in DO and WHILE loops, including the current loop pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:18:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320652#M509436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320653#M509437</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;Sy-index - &amp;gt; give the index of the record in the loop.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-tabix - &amp;gt; give the number of iterations in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeetha.a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320653#M509437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320654#M509438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Check this Link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=2863826&amp;amp;messageID=2868547" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=2863826&amp;amp;messageID=2868547&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:18:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320654#M509438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320655#M509439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;sy-index is used in do..enddo ,  and other loops

sy-tabix is used when looping at internal tables

loop at itab.
 v_tabix = sy-tabix.
 v_tabix = v_tabix + 1.
 read table itab index v_tabix.   " to read the next record
 *do the calculations herw
 endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320655#M509439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320656#M509440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sy-index is related to the loop,It's represents the Current loop pass.(Do ,While)&lt;/P&gt;&lt;P&gt;Sy-tabix is related to the internal table.it represents current line index.(Looping thru itab affects sy-tabix)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320656#M509440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320657#M509441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Parag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-INDEX will work for DO..ENDDO..It holds the current row number within the loop..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 10 TIMES.&lt;/P&gt;&lt;P&gt;WRITE: / SY-INDEX.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-TABIX will work for LOOP..ENDLOOP...It holds the current row within the loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:21:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320657#M509441</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-30T05:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320658#M509442</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;sy-index is used in do..enddo ,  and other loops and also used as current index of the list.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;sy-tabix is used when looping at internal tables for getting index of the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpfulreward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320658#M509442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320659#M509443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi parag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it's sy-index that we can use in read statement,&lt;/P&gt;&lt;P&gt;or if it's sy-tabix that we can use in loop statement, this can help u to know which record(no) is processing in the loop.&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;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:21:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320659#M509443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: difference between sy-index &amp; sy-tabix</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320660#M509444</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;SY-INDEX - &amp;gt; It is ABAP System field, Initial value will be zero, but when u place in do loop and while loop it is incremented by 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 5 times.&lt;/P&gt;&lt;P&gt;write :  sy-index.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o/p will be 1 2 3 4 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-TABIX - &amp;gt; Current Line of Internal Table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2007 05:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-sy-index-sy-tabix/m-p/2320660#M509444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-30T05:27:16Z</dc:date>
    </item>
  </channel>
</rss>

