<?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 Short dump SAPSQL_SELECT_TAB_TOO_SMALL when using dynamic table in select in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397986#M192617</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;I am working on a 4.6C system, where it is not possible to create dynamic tables with CREATE DATA lrt_table TYPE TABLE OF (strucname).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of this, I am using the ALV function LVC_TABLE_CREATE, which creates table definitions in a subroutine pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I get the short dump SAPSQL_SELECT_TAB_TOO_SMALL, when I create the table using the mentioned function module and selecting the data after that from the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         SELECT * FROM (iv_table)&lt;/P&gt;&lt;P&gt;           CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;           INTO TABLE et_data UP TO iv_rows ROWS&lt;/P&gt;&lt;P&gt;           WHERE (lt_where_condition).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The short dump says, that the internal table is only 208 bytes wide instead of 224.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This happens only for the table AUSP. Does anyone have a suggestion, why this happens? Maybe the floating point numbers in the transparent table AUSP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fabian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 14:38:29 GMT</pubDate>
    <dc:creator>Fabian_Kegel</dc:creator>
    <dc:date>2006-06-29T14:38:29Z</dc:date>
    <item>
      <title>Short dump SAPSQL_SELECT_TAB_TOO_SMALL when using dynamic table in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397986#M192617</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;I am working on a 4.6C system, where it is not possible to create dynamic tables with CREATE DATA lrt_table TYPE TABLE OF (strucname).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of this, I am using the ALV function LVC_TABLE_CREATE, which creates table definitions in a subroutine pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I get the short dump SAPSQL_SELECT_TAB_TOO_SMALL, when I create the table using the mentioned function module and selecting the data after that from the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         SELECT * FROM (iv_table)&lt;/P&gt;&lt;P&gt;           CLIENT SPECIFIED&lt;/P&gt;&lt;P&gt;           INTO TABLE et_data UP TO iv_rows ROWS&lt;/P&gt;&lt;P&gt;           WHERE (lt_where_condition).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The short dump says, that the internal table is only 208 bytes wide instead of 224.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This happens only for the table AUSP. Does anyone have a suggestion, why this happens? Maybe the floating point numbers in the transparent table AUSP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fabian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397986#M192617</guid>
      <dc:creator>Fabian_Kegel</dc:creator>
      <dc:date>2006-06-29T14:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump SAPSQL_SELECT_TAB_TOO_SMALL when using dynamic table in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397987#M192618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please add INTO CORRESPONDING FIELDS OF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INTO CORRESPONDING FIELDS OF TABLE et_data&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397987#M192618</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T14:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump SAPSQL_SELECT_TAB_TOO_SMALL when using dynamic table in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397988#M192619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;s we need to declare like &lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF TABLE et_data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ramesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 14:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397988#M192619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Short dump SAPSQL_SELECT_TAB_TOO_SMALL when using dynamic table in select</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397989#M192620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM (iv_table)
CLIENT SPECIFIED
INTO &amp;lt;b&amp;gt;corresponding fields of&amp;lt;/b&amp;gt; TABLE et_data UP TO iv_rows ROWS WHERE (lt_where_condition).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Thu, 29 Jun 2006 14:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/short-dump-sapsql-select-tab-too-small-when-using-dynamic-table-in-select/m-p/1397989#M192620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T14:46:16Z</dc:date>
    </item>
  </channel>
</rss>

