<?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: dynamic Internal Table synatax Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038914#M1350552</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most likely there is just a problem with the writing of the method call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
  lt_fcat    TYPE lvc_t_fcat,
  ldo_itab  TYPE REF TO data.

"... fill fieldcatalog
CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
  IMPORTING
    it_fieldcatalog = lt_fcat
  EXPORTING
   ep_table          = ldo_itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This coding should be syntactically correct. Perhaps you just need to add the following statement to your report (at the beginning):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CLASS cl_alv_table_create DEFINITION LOAD.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On 4.6c the system is not always able to do this itself. You need to explicitly make the class known.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2009 08:20:47 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2009-08-17T08:20:47Z</dc:date>
    <item>
      <title>dynamic Internal Table synatax Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038912#M1350550</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;I am creating the Dynamic Internal table by using the method:cl_alv_table_create=&amp;gt;create_dynamic_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are using the 4.6 version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is showing an error that 'Statemant cl_alv_table_create=&amp;gt;create_dynamic_table ( is not defined, Please check your spelling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the same thing , working in ecc 6.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 07:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038912#M1350550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T07:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic Internal Table synatax Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038913#M1350551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check whether the class cl_alv_table_create exists in SE24 in 4.6 version.&lt;/P&gt;&lt;P&gt;I suppose in 4.6 version this class does not exists.&lt;/P&gt;&lt;P&gt;So you cannot use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 07:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038913#M1350551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T07:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic Internal Table synatax Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038914#M1350552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Most likely there is just a problem with the writing of the method call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:
  lt_fcat    TYPE lvc_t_fcat,
  ldo_itab  TYPE REF TO data.

"... fill fieldcatalog
CALL METHOD cl_alv_table_create=&amp;gt;create_dynamic_table
  IMPORTING
    it_fieldcatalog = lt_fcat
  EXPORTING
   ep_table          = ldo_itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This coding should be syntactically correct. Perhaps you just need to add the following statement to your report (at the beginning):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CLASS cl_alv_table_create DEFINITION LOAD.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On 4.6c the system is not always able to do this itself. You need to explicitly make the class known.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 08:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-internal-table-synatax-problem/m-p/6038914#M1350552</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-08-17T08:20:47Z</dc:date>
    </item>
  </channel>
</rss>

