<?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: field groups in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186117#M758729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Jan 2009 22:17:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-14T22:17:29Z</dc:date>
    <item>
      <title>field groups</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186115#M758727</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;diff b/n field-symbols and field groups?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kb&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 08:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186115#M758727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T08:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: field groups</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186116#M758728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Field symbols: are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Groups:&lt;/P&gt;&lt;P&gt;A field group is a user-defined grouping of characteristics and basic key figures from the EC-EIS or EC-BP field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field catalog contains the fields that are used in the aspects. As the number of fields grows, the field catalog becomes very large and unclear. To simplify maintenance of the aspects, you can group fields in a field group. You can group the fields as you wish, for example, by subject area or responsibility area. A field may be included in several field groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When maintaining the data structure of an aspect, you can select the field group that contains the relevant characteristics and basic key figures. This way you limit the number of fields offered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A field group combines several existing fields together under one name &lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;FIELD-GROUPS: fg.&lt;/P&gt;&lt;P&gt;then you can use one insert statement to insert values in fields of field-group.&lt;/P&gt;&lt;P&gt;INSERT f1 f2 ... INTO fg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have experience with 'C', then understand this to be similar to a pointer. &lt;/P&gt;&lt;P&gt;It is used to reference another variable dynamically. So this field symbol will simply point to some other variable. and this pointer can be changed at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;FS&amp;gt;. &lt;/P&gt;&lt;P&gt;DATA FIELD VALUE 'X'.&lt;/P&gt;&lt;P&gt;ASSIGN FIELD TO &amp;lt;FS&amp;gt;. &lt;/P&gt;&lt;P&gt;WRITE &amp;lt;FS&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field symbols: are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Groups:&lt;/P&gt;&lt;P&gt;A field group is a user-defined grouping of characteristics and basic key figures from the EC-EIS or EC-BP field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field catalog contains the fields that are used in the aspects. As the number of fields grows, the field catalog becomes very large and unclear. To simplify maintenance of the aspects, you can group fields in a field group. You can group the fields as you wish, for example, by subject area or responsibility area. A field may be included in several field groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When maintaining the data structure of an aspect, you can select the field group that contains the relevant characteristics and basic key figures. This way you limit the number of fields offered. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field Symbols&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/EN/fc/eb387a358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/EN/fc/eb387a358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field Groups&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/EN/9f/db9ede35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/EN/9f/db9ede35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kanagaraja L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 08:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186116#M758728</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2007-12-28T08:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: field groups</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186117#M758729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jan 2009 22:17:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-groups/m-p/3186117#M758729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-14T22:17:29Z</dc:date>
    </item>
  </channel>
</rss>

