<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152314#M749647</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;STRONG&gt;SY_TFILL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL is filled with the row number of the addressed internal table. &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-DBCNT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQL statements set the content of SY-DBCNT to the number of database lines processed. With SELECT loops in Open SQL, SY-DBCNT is set after the ENDSELECT statement. In Native SQL, SY-DBCNT is set after the ENDEXEC statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        DELETE sets SY-DBCNT to the number of lines deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        FETCH sets SY-DBCNT to the number of lines already read by the current cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        INSERT sets SY-DBCNT to the number of lines inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        UPDATE sets SY-DBCNT to the number of lines changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plzz reward points if it helps.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Dec 2007 08:37:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-19T08:37:43Z</dc:date>
    <item>
      <title>DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152310#M749643</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;         can anyone tell me the exact difference between sy-dbcnt and sy-tfill. if u could explain me with two typical scenarios it will be of good use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful points will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Karthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:22:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152310#M749643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152311#M749644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sy-dbcnt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will have the no.of records fetched/processed/affected while using the Open SQL statements with DDIC objects....(select, insert, delete.. in dbtab)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-tfill&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will have the no.of records fetched/processed/affected while using internal table commands (read, insert,delete .....table itab)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:31:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152311#M749644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152312#M749645</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-tfill for  number of filled lines of the table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement determines some properties of the internal table itab and assigns them to the specified variables. The various additions enable you to determine the table type, the number of currently filled rows and the initial memory requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition, the system fields sy-tfill and sy-tleng are filled with the current number of table rows and the length of a table row in bytes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For detailed information about an internal table, you should use the methods of RTTS instead of the statement DESCRIBE TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without the specification of an addition, the statement DESCRIBE TABLE only sets the system fields sy-tfill and sy-tleng. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current number of table rows of the internal table itab is determined and is assigned to the data object lin.The data type i is expected for the data object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As of release 6.10, the current number of rows of an internal table can also be determined using the in-built function lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-dbcnt number of records retrived&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152312#M749645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152313#M749646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: itab type table of spfli WITH HEADER LINE .&lt;/P&gt;&lt;P&gt;data: wa type spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*the following code will fill the sy-dbcnt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from spfli into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ sy-dbcnt, sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*the following code will fill the sy-tfill&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH TABLE KEY carrid = 'AY'.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ sy-dbcnt, sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output will be....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-dbcnt = 22   &lt;/P&gt;&lt;P&gt;sy-tfill = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then, after read statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-dbcnt = 22   &lt;/P&gt;&lt;P&gt;sy-tfill = 7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:34:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152313#M749646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152314#M749647</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;STRONG&gt;SY_TFILL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL is filled with the row number of the addressed internal table. &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-DBCNT.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQL statements set the content of SY-DBCNT to the number of database lines processed. With SELECT loops in Open SQL, SY-DBCNT is set after the ENDSELECT statement. In Native SQL, SY-DBCNT is set after the ENDEXEC statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        DELETE sets SY-DBCNT to the number of lines deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        FETCH sets SY-DBCNT to the number of lines already read by the current cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        INSERT sets SY-DBCNT to the number of lines inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        UPDATE sets SY-DBCNT to the number of lines changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plzz reward points if it helps.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152314#M749647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152315#M749648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;     do u mean that after the read statement in 7th row the specific record wil be read i.e. carrid = 'ay' is read only after seven lines. so the variable sy-tfill = 7.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;karthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152315#M749648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152316#M749649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-DBCNT&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL statements set SY-DBCNT to the number of table entries processed. In an Open SQL SELECT loop, SY-DBCNT is not set until after the ENDSELECT statement. In Native SQL, SY-DBCNT is not set until after the ENDEXEC statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE sets SY-DBCNT to the number of deleted lines. &lt;/P&gt;&lt;P&gt;FETCH sets SY-DBCNT to the number of lines read by the corresponding cursor. &lt;/P&gt;&lt;P&gt;INSERT sets SY-DBCNT to the number of lines inserted. &lt;/P&gt;&lt;P&gt;MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;UPDATE sets SY-DBCNT to the number of lines changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should take particular care when programming the WHERE clause to ensure that you do not delete the wrong lines. For example, if you specify an empty internal table in a dynamic WHERE clause, all of the lines in the table are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If at least one line is deleted, the system sets SY-SUBRC to 0, otherwise to 4. SY-DBCNT contains the number of lines deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-TFILL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL contains the number of lines in the relevant internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152316#M749649</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2007-12-19T08:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152317#M749650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-DBCNT&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL statements set SY-DBCNT to the number of table entries processed. In an Open SQL SELECT loop, SY-DBCNT is not set until after the ENDSELECT statement. In Native SQL, SY-DBCNT is not set until after the ENDEXEC statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE sets SY-DBCNT to the number of deleted lines. &lt;/P&gt;&lt;P&gt;FETCH sets SY-DBCNT to the number of lines read by the corresponding cursor. &lt;/P&gt;&lt;P&gt;INSERT sets SY-DBCNT to the number of lines inserted. &lt;/P&gt;&lt;P&gt;MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;UPDATE sets SY-DBCNT to the number of lines changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should take particular care when programming the WHERE clause to ensure that you do not delete the wrong lines. For example, if you specify an empty internal table in a dynamic WHERE clause, all of the lines in the table are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If at least one line is deleted, the system sets SY-SUBRC to 0, otherwise to 4. SY-DBCNT contains the number of lines deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-TFILL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL contains the number of lines in the relevant internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152317#M749650</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2007-12-19T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152318#M749651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Subramanian&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-DBCNT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQL statements set the content of SY-DBCNT to the number of database lines processed. With SELECT loops in Open SQL, SY-DBCNT is set after the ENDSELECT statement. In Native SQL, SY-DBCNT is set after the ENDEXEC statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        DELETE sets SY-DBCNT to the number of lines deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        FETCH sets SY-DBCNT to the number of lines already read by the current cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        INSERT sets SY-DBCNT to the number of lines inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        UPDATE sets SY-DBCNT to the number of lines changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SY-TFILL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL is filled with the row number of the addressed internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plzz Reward if useful,&lt;/P&gt;&lt;P&gt;Mahi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152318#M749651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152319#M749652</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;Please see the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sy-tfill will keep on varying when we put in loop like loop ..endloop,select..endselect,do..enddo..ect.&lt;/P&gt;&lt;P&gt;but sy-dbcnt will not keep on varying if we put in loop also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-tfill just gives information what is the present no of recs fetched from database with the above stmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:itab1 LIKE vbak OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA:itab2 LIKE mara OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM vbak INTO TABLE itab1 UP TO 10 ROWS.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'Material info',  20 'DBCNT value',  32 'TFILL value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE:/ itab1-vbeln,sy-dbcnt,sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:/ 'Material info', 40 'SY-DBCNT value', 65 'TFILL value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM mara INTO itab2 UP TO 10 ROWS  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE:/ itab2-matnr,sy-dbcnt,sy-tfill.&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;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152319#M749652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152320#M749653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sy-dbcnt - no.of records read from database table..for eg.u can use this after SELECT statement to determine the no.of records read.&lt;/P&gt;&lt;P&gt;sy-tfill - no of lines filled in an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 08:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152320#M749653</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-12-19T08:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: DIFFERENCE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152321#M749654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SY-TFILL&lt;/P&gt;&lt;P&gt;With the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL is filled with the row number of the addressed internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-DBCNT&lt;/P&gt;&lt;P&gt;SQL statements set the content of SY-DBCNT to the number of database lines processed. With SELECT loops in Open SQL, SY-DBCNT is set after the ENDSELECT statement. In Native SQL, SY-DBCNT is set after the ENDEXEC statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        DELETE sets SY-DBCNT to the number of lines deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        FETCH sets SY-DBCNT to the number of lines already read by the current cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        INSERT sets SY-DBCNT to the number of lines inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        MODIFY sets SY-DBCNT to the number of lines processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        UPDATE sets SY-DBCNT to the number of lines changed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 09:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference/m-p/3152321#M749654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T09:21:22Z</dc:date>
    </item>
  </channel>
</rss>

