<?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: Nested structure to internal table data transfer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/13806296#M2030401</link>
    <description>&lt;P&gt;I want to move contents from &amp;lt;fs_it&amp;gt; table any to internal table LT-einarecord. how to do that&lt;/P&gt;</description>
    <pubDate>Sun, 25 Aug 2024 13:45:08 GMT</pubDate>
    <dc:creator>Guruvayurappan</dc:creator>
    <dc:date>2024-08-25T13:45:08Z</dc:date>
    <item>
      <title>Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509397#M2003891</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;I have a deep structure and using a Method , the data is getting populated inside the structure. Now i want to move this data from the deep structure into table. Could you please help me to solve this?&lt;/P&gt;
  &lt;P&gt;Example of deep structure:(nesting)&lt;BR /&gt;declare with table type—-&amp;gt; component with type structure—-&amp;gt;component with type structure—-&amp;gt;component with type table&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 15:17:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509397#M2003891</guid>
      <dc:creator>kunal1812</dc:creator>
      <dc:date>2022-04-19T15:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509398#M2003892</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Sorry but i dont understand your requirement.&lt;/P&gt;&lt;P&gt;Which component do you need to move to a new table? The deep structure? &lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 16:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509398#M2003892</guid>
      <dc:creator>lemoreno</dc:creator>
      <dc:date>2022-04-19T16:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509399#M2003893</link>
      <description>&lt;P&gt;i want to move the components of the last table&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 17:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509399#M2003893</guid>
      <dc:creator>kunal1812</dc:creator>
      <dc:date>2022-04-19T17:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509400#M2003894</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;Try this. &lt;/P&gt;&lt;P&gt;- Create an internal table with the same type that the last table.&lt;/P&gt;&lt;P&gt;- Append the records in that temporal table.&lt;/P&gt;&lt;P&gt;- When you are ready to pass the last table to the structure do this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: ti_last_table_tmp TYPE tp_last_table,. " Same type that the last table
      st_last_table     LIKE LINE OF ti_last_table_tmp.

st_last_table-field1 = 'A'.
.
.
.
APPEND st_last_table TO ti_last_table_tmp.

APPEND LINES OF ti_last_table_tmp TO st_structure1-st_structure2-ti_last_table.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Esteban&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509400#M2003894</guid>
      <dc:creator>lemoreno</dc:creator>
      <dc:date>2022-04-19T18:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509401#M2003895</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;This from table to structure, i want exact opposite procedure: from deep structure to table&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:41:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509401#M2003895</guid>
      <dc:creator>kunal1812</dc:creator>
      <dc:date>2022-04-19T18:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509402#M2003896</link>
      <description>&lt;P&gt;Hi again, &lt;/P&gt;&lt;P&gt;You have to create an internal table with type table of the first structure. When you are ready to pass the structure data to the deep internal table, you have to append the structure to that internal table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;APPEND st_structure1 TO ti_deep_table.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Apr 2022 18:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509402#M2003896</guid>
      <dc:creator>lemoreno</dc:creator>
      <dc:date>2022-04-19T18:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509403#M2003897</link>
      <description>&lt;P&gt;It seems very easy, but I don't get what your issue is. If you post your code, it will be easier to answer. &lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2022 19:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/12509403#M2003897</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-04-19T19:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/13806296#M2030401</link>
      <description>&lt;P&gt;I want to move contents from &amp;lt;fs_it&amp;gt; table any to internal table LT-einarecord. how to do that&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 13:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/13806296#M2030401</guid>
      <dc:creator>Guruvayurappan</dc:creator>
      <dc:date>2024-08-25T13:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Nested structure to internal table data transfer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/13807265#M2030431</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;LI-CODE lang="abap"&gt;TYPES ty_table TYPE REF TO data.
DATA lt_einarecord TYPE TABLE OF ty_table.
FIELD-SYMBOLS &amp;lt;fs_it&amp;gt; TYPE ANY TABLE.

APPEND INITIAL LINE TO lt_einarecord ASSIGNING FIELD-SYMBOL(&amp;lt;fs_table&amp;gt;).
GET REFERENCE OF &amp;lt;fs_it&amp;gt; INTO &amp;lt;fs_table&amp;gt;.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 12:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/nested-structure-to-internal-table-data-transfer/m-p/13807265#M2030431</guid>
      <dc:creator>rkenjiibmsuser</dc:creator>
      <dc:date>2024-08-26T12:05:17Z</dc:date>
    </item>
  </channel>
</rss>

