<?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: Help on Field String in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156495#M119004</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2006 23:13:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-02T23:13:58Z</dc:date>
    <item>
      <title>Help on Field String</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156492#M119001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;Could any one of give me some information on FIELD STRINGS, Please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 20:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156492#M119001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T20:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Field String</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156493#M119002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure that I know what they are.  I'm guessing they are like structures.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Field Strings:&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Compatible: &lt;/P&gt;&lt;P&gt;Component by Component. &lt;/P&gt;&lt;P&gt;Non-Compatible Field Strings and Elementary Fields: &lt;/P&gt;&lt;P&gt;System first converts all the field strings concerned to type C fields and then performs the conversion between the two remaining elementary fields. &lt;/P&gt;&lt;P&gt;Field Strings with Internal Tables as Components: &lt;/P&gt;&lt;P&gt;Field strings which contain internal tables as components are convertible only if they are compatible.&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;structures&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure is a sequence of any other data types from the ABAP Dictionary, that is, data elements, structures, table types, or database tables. When you create a structure in the ABAP Dictionary, each component must have a name and a data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In an ABAP program, you can use the TYPE addition to refer directly to a structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you define a local data type in a program by referring to a structure as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES &amp;lt;t&amp;gt; TYPE &amp;lt;structure&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the construction blueprint of the structure is used to create a local structure &amp;lt;t&amp;gt; in the program. The predefined Dictionary data types of the domains used by the data elements in the structure are converted into the corresponding ABAP types. The semantic attributes of the data elements are used for the corresponding components of the structure in the program. The components of the local structure &amp;lt;t&amp;gt; have the same names as those of the structure in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To ensure compatibility with previous releases, it is still possible to use the LIKE addition in an ABAP program to refer to a structure in the ABAP Dictionary (except in classes).&amp;lt;/i&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 20:34:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156493#M119002</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T20:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Field String</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156494#M119003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Field String is sort of an older name for what most people now call a "structure" (defined within an ABAP program).  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types: begin of field_string,
         fld1 type d,
         fld2 type c,
       end of field_string.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A structure defined in the Dictionary is only called "Structure" (not field string).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;James Gaddis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 21:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156494#M119003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T21:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Field String</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156495#M119004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 23:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-field-string/m-p/1156495#M119004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T23:13:58Z</dc:date>
    </item>
  </channel>
</rss>

