<?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 type problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687194#M1292471</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Aug 2009 04:58:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-19T04:58:37Z</dc:date>
    <item>
      <title>Field symbol type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687190#M1292467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deal All,&lt;/P&gt;&lt;P&gt;i am using field symbol here,while trying to assign the character value into field smybol.&lt;/P&gt;&lt;P&gt;It is generating the error.cannot be converted into number ..so wht should be the type of the field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbol : &amp;lt;RATING&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;   CONCATENATE 'wa_final1-f' V_COUNT INTO V_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CONDENSE V_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ASSIGN (V_FIELD) TO &amp;lt;RATING&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WRITE WA_FINAL-RATING1 TO V_PAK .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &amp;lt;RATING&amp;gt; = V_PAK.     "ERROR GENERATING HERE WHILE ASSIGNING VALUE OF V_PAK         TO      &amp;lt;RATING&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALUE OF V_PAK = 'DME' ( I.E CHARACTER FIELD).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 04:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687190#M1292467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-04T04:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687191#M1292468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The statement ASSIGN (V_FIELD) TO &amp;lt;RATING&amp;gt; will assign the type of whatever you have in V_field to the field-symbol. Incase it is an integer it will be of type i. So you will get an error while passing a character value to an integer field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to keep the variables of the same type only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 05:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687191#M1292468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-04T05:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687192#M1292469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;field-symbol : &amp;lt;RATING&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;CONCATENATE 'wa_final1-f' V_COUNT INTO V_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONDENSE V_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (V_FIELD) TO &amp;lt;RATING&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE WA_FINAL-RATING1 TO V_PAK .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;UNASSIGN &amp;lt;RATING&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ASSIGN V_PAK TO &amp;lt;RATING&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vijetasap on Jun 4, 2009 7:11 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 05:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687192#M1292469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-04T05:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687193#M1292470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wa_final1-fxx  and V_PAK  are to be of same type..&lt;/P&gt;&lt;P&gt;a v_pak is of type char...wa_final1-fxx  have t be of sae type...&lt;/P&gt;&lt;P&gt;I guess wa_final1-fxx  is of type int...so the problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jun 2009 05:12:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687193#M1292470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-04T05:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Field symbol type problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687194#M1292471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 04:58:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-problem/m-p/5687194#M1292471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-19T04:58:37Z</dc:date>
    </item>
  </channel>
</rss>

