<?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: dump in tablecontrol in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763353#M330209</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE TBCTRL_GET_LINES OUTPUT.
DATA: LINES TYPE I.
DESCRIBE TABLE YOUR_TABLE LINES LINES.
G_TBCTRL_LINES = LINES..
ENDMODULE. "TBCTRL_get_lines OUTPUT 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way, you always assign the number of lines in your internal table to the Table Control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2006 13:55:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-20T13:55:13Z</dc:date>
    <item>
      <title>dump in tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763352#M330208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i am displaying some data in a tablecontrol...it's working fine if the data that's displayed is in one page of the tablecontrol..now, i have created some additional records so that my first material alone has some 17 records and then i have records for another material...when i execute, it's going to dump stating that a conversion error occured...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;008210   MODULE TBCTRL_GET_LINES OUTPUT.                           &lt;/P&gt;&lt;P&gt;008220     G_TBCTRL_LINES = sy-loopc.                              &lt;/P&gt;&lt;P&gt;     -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;   ENDMODULE.                    "TBCTRL_get_lines OUTPUT    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  should we do any checking for the lines of the tablecontrol, page down, etc. and things like that? i have created it using wizard...any responses will be highly appreciated &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 11:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763352#M330208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T11:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: dump in tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763353#M330209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE TBCTRL_GET_LINES OUTPUT.
DATA: LINES TYPE I.
DESCRIBE TABLE YOUR_TABLE LINES LINES.
G_TBCTRL_LINES = LINES..
ENDMODULE. "TBCTRL_get_lines OUTPUT 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way, you always assign the number of lines in your internal table to the Table Control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 13:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763353#M330209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T13:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: dump in tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763354#M330210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In the PBO of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should use this line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE YOUR_TABLE LINES LINES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 13:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763354#M330210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T13:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: dump in tablecontrol</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763355#M330211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign this way...&lt;/P&gt;&lt;P&gt;MODULE TBCTRL_GET_LINES OUTPUT.&lt;/P&gt;&lt;P&gt;DATA: LINES TYPE I.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE YOUR_TABLE LINES LINES.&lt;/P&gt;&lt;P&gt;G_TBCTRL_LINES = LINES..&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 13:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-in-tablecontrol/m-p/1763355#M330211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T13:56:26Z</dc:date>
    </item>
  </channel>
</rss>

