<?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 Structure inside internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441961#M1053793</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way for reading a record from structure inside an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Hagit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Sep 2008 12:22:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-17T12:22:12Z</dc:date>
    <item>
      <title>Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441961#M1053793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way for reading a record from structure inside an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Hagit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441961#M1053793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441962#M1053794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The best way for reading a single record from a internal tables is like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;READ TABLE it_internal into wa_internal WITH KEY field1 = my_field1
field2 = my_field2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there is a structure uinside the record yo can access with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"wa_internal-structure-field".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;was this what you where looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew83.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Andrew83 on Sep 17, 2008 2:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441962#M1053794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441963#M1053795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; plz expalin in detail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441963#M1053795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441964#M1053796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let itab be a internal table, let struc be the structure inside it having fields a, b, c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u can read it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;wrtite: itab-struc-a. " to read field a of struc in itab&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441964#M1053796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441965#M1053797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;structure does not contain any record.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441965#M1053797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441966#M1053798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi how it will be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Deepika Reddy wrote:
structure does not contain any record.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 12:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441966#M1053798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T12:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441967#M1053799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes Structure does not Hold data, but if you have populated the structure and you want to move its values into the internal table then:&lt;/P&gt;&lt;P&gt;Case1 : if the stucture has same no of fields with same name and type as the Internal table then &lt;/P&gt;&lt;P&gt;             APPEND &amp;lt;structure&amp;gt; TO int_tab.&lt;/P&gt;&lt;P&gt;Case2: if the structure and int table have different structures then&lt;/P&gt;&lt;P&gt;           MOVE-CORRESPONDING &amp;lt;structure&amp;gt; TO &amp;lt;int table work area&amp;gt;&lt;/P&gt;&lt;P&gt;           APPEND &amp;lt;int table work area&amp;gt; TO int_tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 13:16:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441967#M1053799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T13:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Structure inside internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441968#M1053800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;by using read statements we can retrieving a record is the best process.&lt;/P&gt;&lt;P&gt;if there arebulk of records looping is the best process...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2008 14:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/structure-inside-internal-table/m-p/4441968#M1053800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-17T14:36:52Z</dc:date>
    </item>
  </channel>
</rss>

