<?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 Symbol Declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872343#M930774</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;do this way  ..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-symbols : &amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE STANDARD TABLE OF FINT_FRANGE_T. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 May 2008 11:24:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-19T11:24:03Z</dc:date>
    <item>
      <title>Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872341#M930772</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;&lt;/P&gt;&lt;P&gt;I declared a field symbol in the Global Definition in the Field Symbols tab: &amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE FINT_FRANGE_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure of FINT_FRANGE_T is:&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF fint_frange_t,&lt;/P&gt;&lt;P&gt;        fieldname    LIKE rsdstabs-prim_fname,&lt;/P&gt;&lt;P&gt;        fieldtype(1) TYPE c,&lt;/P&gt;&lt;P&gt;        selopt_t     TYPE fint_selopt_t,&lt;/P&gt;&lt;P&gt;       END OF fint_frange_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Initialization tab of Global Definition I have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: lc_save_selections(31) TYPE c VALUE '(RFINTITAR)GT_SAVE_SELECTIONS[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (lc_save_selections) TO &amp;lt;fs_save_selections&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I execute the program, an runtime error occurs: You attempted to assign a field to a typed field symbol,&lt;/P&gt;&lt;P&gt;but the field does not have the required type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I correct this? Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:18:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872341#M930772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872342#M930773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GT_SAVE_SELECTIONS[] is a table, but your field-symbol is a structure. &lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE STANDARD TABLE OF FINT_FRANGE_T.&lt;/P&gt;&lt;P&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:21:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872342#M930773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872343#M930774</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;do this way  ..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-symbols : &amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE STANDARD TABLE OF FINT_FRANGE_T. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:24:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872343#M930774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872344#M930775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add the occurs n addition to your types definition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF fint_frange_t &lt;STRONG&gt;OCCURS 10&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;fieldname LIKE rsdstabs-prim_fname,&lt;/P&gt;&lt;P&gt;fieldtype(1) TYPE c,&lt;/P&gt;&lt;P&gt;selopt_t TYPE fint_selopt_t,&lt;/P&gt;&lt;P&gt;END OF fint_frange_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see if it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872344#M930775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872345#M930776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Smartforms:&lt;/P&gt;&lt;P&gt;When I declare the field symbol in the  Global Definition -&amp;gt; Field Symbol tab: &amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE STANDARD TABLE OF FINT_FRANGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An error is occuring: "," exepected after "TABLE".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:34:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872345#M930776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872346#M930777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare&lt;/P&gt;&lt;P&gt;&amp;lt;FS_SAVE_SELECTIONS&amp;gt; TYPE TABLE OF &lt;/P&gt;&lt;P&gt;FINT_FRANGE_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As u are accessing a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872346#M930777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872347#M930778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swastik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An error is occuring: "," exepected after "TABLE".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:39:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872347#M930778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872348#M930779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: gv_ref type ref to data.&lt;/P&gt;&lt;P&gt;Field-symbols: &amp;lt;fs&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA gv_ref TYPE STANDARD TABLE OF '(RFINTITAR)GT_SAVE_SELECTIONS[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN gv_ref-&amp;gt;* to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure with this one... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-salem-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Salem_ M on May 19, 2008 1:59 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 11:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872348#M930779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T11:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Field Symbol Declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872349#M930780</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;go to this link &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb3860358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb3860358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb3860358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb3860358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;/P&gt;&lt;P&gt;snehi chouhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 12:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-declaration/m-p/3872349#M930780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T12:02:47Z</dc:date>
    </item>
  </channel>
</rss>

