<?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 point to dynamical internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437531#M545375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a dynamic internal table A holding some data based on an ddic-structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have a second table B - self defined - that should in one column hold kind of a pointer ( or better the row data ) to a row of table A. how to achieve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know this is quite special, but if anyone has some hint for me to go for i will reward generously!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jun 2007 07:59:25 GMT</pubDate>
    <dc:creator>former_member5350</dc:creator>
    <dc:date>2007-06-20T07:59:25Z</dc:date>
    <item>
      <title>point to dynamical internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437531#M545375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a dynamic internal table A holding some data based on an ddic-structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i have a second table B - self defined - that should in one column hold kind of a pointer ( or better the row data ) to a row of table A. how to achieve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know this is quite special, but if anyone has some hint for me to go for i will reward generously!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 07:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437531#M545375</guid>
      <dc:creator>former_member5350</dc:creator>
      <dc:date>2007-06-20T07:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: point to dynamical internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437532#M545376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one approach would be declare a column of type string in table B and then concatenate row data from table A and update it in table B string column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other approach would be to declare table B also at runtime and have a column which is a deep structure of type table A line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 08:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437532#M545376</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-06-20T08:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: point to dynamical internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437533#M545377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &amp;amp; thanks, that sound good...but how can i do that if i do not know the name/structure of table A  before runtime ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you give me some sample code for that ? i would appreciate it very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 08:26:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437533#M545377</guid>
      <dc:creator>former_member5350</dc:creator>
      <dc:date>2007-06-20T08:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: point to dynamical internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437534#M545378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i guess you are talking about the first option (of have a string column in table B)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use field symbols to read dynamic itabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you search the forum for reading dynamic itab or updating dynamic itab you will get lot of code samples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 08:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/point-to-dynamical-internal-table/m-p/2437534#M545378</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-06-20T08:44:12Z</dc:date>
    </item>
  </channel>
</rss>

