<?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: Create dynamic table from dynamic tablefield in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906183#M683675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's OK.&lt;/P&gt;&lt;P&gt;Thanks for your link.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2007 10:03:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-22T10:03:43Z</dc:date>
    <item>
      <title>Create dynamic table from dynamic tablefield</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906181#M683673</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 want to create a dynamic table from dynamics tablefields.&lt;/P&gt;&lt;P&gt;It's on SAP 4.6 and I use this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
  EXPORTING
    I_STRUCTURE_NAME = STRUCTURE_NAME
  CHANGING
    CT_FIELDCAT = t_fieldcat
  EXCEPTIONS
    INCONSISTENT_INTERFACE = 1
    PROGRAM_ERROR = 2
    OTHERS = 3.

IF SY-SUBRC &amp;lt;&amp;gt; 0.
  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ELSE.
  DELETE t_fieldcat
  WHERE INTTYPE &amp;lt;&amp;gt; 'C'.

  l_colonne = 1.
  LOOP AT t_fieldcat INTO x_fieldcat.
    append x_fieldcat-fieldname to t_columns.
    x_fieldcat-col_pos = l_colonne.
    l_colonne = l_colonne + 1.
    append x_fieldcat to t_fieldcat2.
  ENDLOOP.

  if not t_columns[] is initial.

    CALL METHOD CL_ALV_TABLE_CREATE=&amp;gt;CREATE_DYNAMIC_TABLE
      EXPORTING
        IT_FIELDCATALOG = T_FIELDCAT2
      IMPORTING
        EP_TABLE = o_handle
      EXCEPTIONS
        GENERATE_SUBPOOL_DIR_FULL = 1
        OTHERS = 2.

    IF SY-SUBRC &amp;lt;&amp;gt; 0.
    ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's ok but after 36 times, the exceptions GENERATE SUBPOOL DIR FULL appear.&lt;/P&gt;&lt;P&gt;I can't use the CREATE DATA method because I don't have a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 12:35:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906181#M683673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T12:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create dynamic table from dynamic tablefield</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906182#M683674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="477753"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 06:41:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906182#M683674</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-10-22T06:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create dynamic table from dynamic tablefield</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906183#M683675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's OK.&lt;/P&gt;&lt;P&gt;Thanks for your link.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 10:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-table-from-dynamic-tablefield/m-p/2906183#M683675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T10:03:43Z</dc:date>
    </item>
  </channel>
</rss>

