<?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 Internal table using Class:cl_salv_table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828096#M1471047</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, acctually &lt;EM&gt;cl_salv_table&lt;/EM&gt; is intended to work as dynamic ALV creator based on delivered table, not a table creator itself.&lt;/P&gt;&lt;P&gt;So basically you pass any table you want (might be that one already created dynamically) and it will create fieldcatalog for it automatically and then generate ALV instance based on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For pure dynamic table creation you should either use &lt;EM&gt;create_dynamic_table&lt;/EM&gt; (the one you already used) or &lt;STRONG&gt;RTTS classes&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Mar 2010 08:01:41 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2010-03-25T08:01:41Z</dc:date>
    <item>
      <title>Create Dynamic Internal table using Class:cl_salv_table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828095#M1471046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to Create a Dynamic Internal table using Class:cl_salv_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previously I have used 'create_dynamic_table' :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
    EXPORTING
      it_fieldcatalog           = i_fieldcat
    IMPORTING
      ep_table                  = g_table
    EXCEPTIONS
      generate_subpool_dir_full = 1
      OTHERS                    = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do we have an option for the same in Class: CL_SALV_TABLE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 04:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828095#M1471046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T04:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Internal table using Class:cl_salv_table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828096#M1471047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, acctually &lt;EM&gt;cl_salv_table&lt;/EM&gt; is intended to work as dynamic ALV creator based on delivered table, not a table creator itself.&lt;/P&gt;&lt;P&gt;So basically you pass any table you want (might be that one already created dynamically) and it will create fieldcatalog for it automatically and then generate ALV instance based on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For pure dynamic table creation you should either use &lt;EM&gt;create_dynamic_table&lt;/EM&gt; (the one you already used) or &lt;STRONG&gt;RTTS classes&lt;/STRONG&gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 08:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828096#M1471047</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-03-25T08:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Dynamic Internal table using Class:cl_salv_table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828097#M1471048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will use the method: CREATE_DYNAMIC_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the suggestions &amp;amp; prompt reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Mar 2010 09:18:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-dynamic-internal-table-using-class-cl-salv-table/m-p/6828097#M1471048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-25T09:18:17Z</dc:date>
    </item>
  </channel>
</rss>

