<?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 Help regarding structures in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348231#M518178</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;I am working on dynamic internal tables,&lt;/P&gt;&lt;P&gt;and i am unable to understand this part of code under the DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      is_x030l  TYPE x030l,&lt;/P&gt;&lt;P&gt;      it_dfies  TYPE TABLE OF dfies,&lt;/P&gt;&lt;P&gt;      is_dfies  TYPE dfies,&lt;/P&gt;&lt;P&gt;      it_fdiff  TYPE TABLE OF field_dif,&lt;/P&gt;&lt;P&gt;      is_fdiff  TYPE field_dif.&lt;/P&gt;&lt;P&gt;kindly give some description about these structures and what exact purpose do they serve&lt;/P&gt;&lt;P&gt;TIA&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;Ravish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Jun 2007 13:26:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-15T13:26:05Z</dc:date>
    <item>
      <title>Help regarding structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348231#M518178</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;I am working on dynamic internal tables,&lt;/P&gt;&lt;P&gt;and i am unable to understand this part of code under the DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      is_x030l  TYPE x030l,&lt;/P&gt;&lt;P&gt;      it_dfies  TYPE TABLE OF dfies,&lt;/P&gt;&lt;P&gt;      is_dfies  TYPE dfies,&lt;/P&gt;&lt;P&gt;      it_fdiff  TYPE TABLE OF field_dif,&lt;/P&gt;&lt;P&gt;      is_fdiff  TYPE field_dif.&lt;/P&gt;&lt;P&gt;kindly give some description about these structures and what exact purpose do they serve&lt;/P&gt;&lt;P&gt;TIA&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;Ravish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jun 2007 13:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348231#M518178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-15T13:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348232#M518179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;X030I --&amp;gt; it is a table type structure, you can define/create the Dynamic tables using the this structres&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DFIES --&amp;gt; You can create the Internal table fields Dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jun 2007 13:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348232#M518179</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-15T13:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348233#M518180</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;is_xxxx are structure&lt;/P&gt;&lt;P&gt;it_xxxx are table ( without header line )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as the tables have not header line you need a structure to store the data when you read it :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_xxxx into is_xxxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is_xxxx-yyyy = &lt;/P&gt;&lt;P&gt;modify table it_xxxx from is_xxxx.&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;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jun 2007 13:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348233#M518180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-15T13:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help regarding structures</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348234#M518181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudheer, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you also throw some light on the table FIELD_DIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jun 2007 13:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-regarding-structures/m-p/2348234#M518181</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-15T13:37:56Z</dc:date>
    </item>
  </channel>
</rss>

