<?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: Pointer to table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702157#M307721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That ideally should not be a problem with the version, as I remember myself writing similar code in 4.6C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Nov 2006 12:12:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-24T12:12:15Z</dc:date>
    <item>
      <title>Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702151#M307715</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;   I have the next code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS so_table FOR DD02L-TABNAME OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA i_dd02l TYPE DD02L OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;  DATA p_pointer_table TYPE REF TO DATA. &lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS &amp;lt;fs_table&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM DD02L&lt;/P&gt;&lt;P&gt;    INTO TABLE i_dd02l&lt;/P&gt;&lt;P&gt;    WHERE TABNAME IN so_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_dd02l.&lt;/P&gt;&lt;P&gt;    CLEAR p_punt_table.&lt;/P&gt;&lt;P&gt;    CREATE DATA p_pointer_table TYPE TABLE OF (gt_dd02l-tabname).&lt;/P&gt;&lt;P&gt;    ASSING p_pointer_table-&amp;gt;* TO &amp;lt;fs_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT * FROM (gt_dd02l-tabname)&lt;/P&gt;&lt;P&gt;      INTO TABLE &amp;lt;fs_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the next error appears when I check it:&lt;/P&gt;&lt;P&gt;"The type specification of TABLE is incomplete"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have previously used this on SAP 5.0. Now I am on a SAP 4.6C. &lt;/P&gt;&lt;P&gt;How can i solve the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 09:16:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702151#M307715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T09:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702152#M307716</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;May be you would have missed out the Table statement before the select-options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:DD02L&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds.&lt;/P&gt;&lt;P&gt;Hemanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702152#M307716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702153#M307717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs_table&amp;gt; TYPE &amp;lt;i&amp;gt;&amp;lt;b&amp;gt;ANY&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt; TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the change highlighted above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note  - Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 10:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702153#M307717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T10:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702154#M307718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;fs_table&amp;gt; TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have changed what you said on definition of field-symbol but error continues. In addition if i make this change, another error occurs. I use function WS_DOWNLOAD with field-symbol &amp;lt;fs_table&amp;gt; as DATA_TAB parameter and when I check the source code, the next error appears:&lt;/P&gt;&lt;P&gt;"&amp;lt;FS-TABLE&amp;gt; is not a STANDARD TABLE. Non-standard tables can only be passed to IMPORTING,EXPORTING or CHANGING parameters"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So is mandatory in definition of &amp;lt;fs_table&amp;gt; to write TYPE TABLE or TYPE STANDARD TABLE. On both cases initial error persists, so has anybody have any other idea?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 11:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702154#M307718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T11:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702155#M307719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the following blogs, they do the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/ravikumar.allampallam/blog/2005/05/31/expand-the-list-of-columns-in-a-report-dynamically&lt;/P&gt;&lt;P&gt;/people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ravikumar Allampallam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 11:39:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702155#M307719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T11:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702156#M307720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravikumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked the blogs you posted, and I have make a test with code of Scenario 2 of second blog (posted by Subramanian Venkateswaran). I have copied the code in a program, I have checked it and the same error appears again. I think the reason could be my SAP version (4.6C), but I'm not sure. In case the problem were SAP version, is there any other way to make that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702156#M307720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702157#M307721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That ideally should not be a problem with the version, as I remember myself writing similar code in 4.6C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:12:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702157#M307721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702158#M307722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then i am absolutely missed. I'm sure I have copied the code of the blog correctly. Any other way of make that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 12:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702158#M307722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T12:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pointer to table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702159#M307723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Having the same error here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any news on how you dealt with the issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Lauro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 11:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pointer-to-table/m-p/1702159#M307723</guid>
      <dc:creator>former_member495263</dc:creator>
      <dc:date>2014-02-13T11:43:46Z</dc:date>
    </item>
  </channel>
</rss>

