<?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 any conversion error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245798#M1828749</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok but what type is variable wt_final-fld?&lt;/P&gt;&lt;P&gt;If it's a numeric type then your dump is normal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, your field symbol is &lt;STRONG&gt;NOT&lt;/STRONG&gt; of type any at the dump moment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2014 10:45:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-05-09T10:45:30Z</dc:date>
    <item>
      <title>field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245792#M1828743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; a field symbol &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols:&amp;lt;wf_file&amp;gt; TYPE &lt;SPAN style="color: #ff0000;"&gt;any. &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,and the table&amp;nbsp; WT_file like&amp;nbsp; alsmex_tabline &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;(data : WT_file like&amp;nbsp; alsmex_tabline&amp;nbsp; occurs ) &lt;SPAN style="font-size: 10pt;"&gt;the field&amp;nbsp; wt_file-value&amp;nbsp; is of type CHAR 50 . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Later in a code&amp;nbsp; i have loop in&amp;nbsp; the table wt_file&amp;nbsp; moving the values to field&amp;nbsp; symbol&lt;/P&gt;&lt;P&gt;at the moment when wt_file-value = /1.3831&amp;nbsp; I have short dump because of the conversion issue .&lt;/P&gt;&lt;P&gt;Bach slash is there because&amp;nbsp; later is used as operand for division with 1.3831. &lt;/P&gt;&lt;P&gt;I am surprised because&amp;nbsp; field symbol is declared as&amp;nbsp; TYPE ANY . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could i solve it if i declare field simbol as the same type as the table&amp;nbsp; &lt;SPAN style="color: #1f497d;"&gt;wt_file&lt;/SPAN&gt; is ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krsto &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;LOOP AT wt_file.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; wv_cnt = wt_file-col.&lt;BR /&gt; CONCATENATE 'WT_FINAL-FLD' wv_cnt INTO wlv_name.&lt;BR /&gt; ASSIGN (wlv_name) TO &amp;lt;wf_file&amp;gt;.&lt;BR /&gt; &lt;SPAN style="background: yellow;"&gt;MOVE : wt_file-value TO &amp;lt;wf_file&amp;gt;.&amp;nbsp;&amp;nbsp; " short dump when /1.3831 &lt;/SPAN&gt;&lt;BR /&gt; AT END OF row.&lt;BR /&gt; APPEND wt_final.&lt;BR /&gt; CLEAR&amp;nbsp; wt_final.&lt;BR /&gt; CLEAR&amp;nbsp; wv_cnt.&lt;BR /&gt; ENDAT.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d;"&gt;&lt;BR /&gt; ENDLOOP.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 09:26:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245792#M1828743</guid>
      <dc:creator>k_gjergja</dc:creator>
      <dc:date>2014-05-09T09:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245793#M1828744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krsto,&lt;/P&gt;&lt;P&gt;You should :&lt;/P&gt;&lt;P&gt;CONCATENATE 'FLD' wv_cnt INTO wlv_name.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT wlv_name OF STRUCTURE wt_final TO &amp;lt;wf_file&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Archer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 09:50:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245793#M1828744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T09:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245794#M1828745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krsto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try by&amp;nbsp; ASSIGN statment instead of moving the value. It shoudl work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 09:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245794#M1828745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T09:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245795#M1828746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="color: #1f497d;"&gt;ASSIGN (wlv_name) TO &amp;lt;wf_file&amp;gt;.&lt;BR /&gt;&lt;SPAN style="background: yellow;"&gt;MOVE : wt_file-value TO &amp;lt;wf_file&amp;gt;.&amp;nbsp;&amp;nbsp; " short dump when /1.3831 &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should always check if the assignment is successful by checking the SY-SUBRC (or IS ASSIGNED, my personal choice).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 09:57:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245795#M1828746</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-05-09T09:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245796#M1828747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krsto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it won't be of type any after the assign, so what type was field wt_final-fld... at the moment of short dump and what value was in wt_file-value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Edgar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 09:58:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245796#M1828747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T09:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245797#M1828748</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;The value was /1.3831&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 10:31:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245797#M1828748</guid>
      <dc:creator>k_gjergja</dc:creator>
      <dc:date>2014-05-09T10:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245798#M1828749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok but what type is variable wt_final-fld?&lt;/P&gt;&lt;P&gt;If it's a numeric type then your dump is normal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, your field symbol is &lt;STRONG&gt;NOT&lt;/STRONG&gt; of type any at the dump moment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 10:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245798#M1828749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T10:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245799#M1828750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;wt_final-value&amp;nbsp; is &lt;/SPAN&gt;char 50&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 10:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245799#M1828750</guid>
      <dc:creator>k_gjergja</dc:creator>
      <dc:date>2014-05-09T10:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245800#M1828751</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;If you are using same field symbol in two places, did you un assign first after the use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue may be due to that. Just athought.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 10:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245800#M1828751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T10:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245801#M1828752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's irrelevant Krsto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's when you assign the variable that you typify it:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12px;"&gt;ASSIGN (wlv_name) TO &amp;lt;wf_file&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this moment wlv_name is the name of the variable '&lt;SPAN style="color: #1f497d; font-size: 12px;"&gt;WT_FINAL-FLD' and some number.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12px;"&gt;What type is this variable? It's not the same as WT_FINAL-VALUE.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Edgar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 11:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245801#M1828752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245802#M1828753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 11:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245802#M1828753</guid>
      <dc:creator>gaurab_banerji</dc:creator>
      <dc:date>2014-05-09T11:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245803#M1828754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you declared the field symbol &amp;lt;wf_file&amp;gt; with TYPE ANY or any numeric data type?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It probably got type casted to Numeric and thats why it cannot accept&amp;nbsp; a character one (due to the slash /) now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 11:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245803#M1828754</guid>
      <dc:creator>gaurab_banerji</dc:creator>
      <dc:date>2014-05-09T11:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245804#M1828755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Please read the post before posting a solution. The problem says:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #1f497d; font-size: 12px; background-color: #ffff00;"&gt; " short dump when /1.3831 &lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the code there was no check after the ASSIGN statement that's what i was pointing out. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 12:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245804#M1828755</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-05-09T12:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245805#M1828756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I prefer to check sy-subrc. Semantically IS ASSIGNED would be better, but consider:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (this) TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (that) TO &amp;lt;fs&amp;gt;. &amp;lt;------------ this could fail&lt;/P&gt;&lt;P&gt;IF &amp;lt;fs&amp;gt; IS ASSIGNED. &amp;lt;--------- but if the first one assign worked, then this will be true&lt;/P&gt;&lt;P&gt; do stuff.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 12:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245805#M1828756</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2014-05-09T12:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245806#M1828757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 12:22:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245806#M1828757</guid>
      <dc:creator>gaurab_banerji</dc:creator>
      <dc:date>2014-05-09T12:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245807#M1828758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Valid point, but i have this habit of UNASSIGNing the field-symbol before every assignment (maybe an overkill)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (this) TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UNASSIGN &amp;lt;fs&amp;gt;. &amp;lt;------- &lt;SPAN style="color: #0000ff;"&gt;Unassign the FS&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (that) TO &amp;lt;fs&amp;gt;. &amp;lt;------------ this could fail&lt;/P&gt;&lt;P&gt;IF &amp;lt;fs&amp;gt; IS ASSIGNED. &amp;lt;--------- but if the first one assign worked, then this will be true&lt;/P&gt;&lt;P&gt;do stuff.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 12:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245807#M1828758</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-05-09T12:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245808#M1828759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I definitely think sy-subrc is more useful. Anyway Krsto assigned some points to himself so I think he finally understood his error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 12:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245808#M1828759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-09T12:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245809#M1828760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fortunately you cannot assign points to yourself, as this would result in SY-SUBRC = 4 or even a non-catchable IMMODEST_BEHAVIOUR short dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 13:27:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245809#M1828760</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2014-05-09T13:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245810#M1828761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the problem solved? kindly let us know. &lt;SPAN __jive_emoticon_name="silly" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/silly.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 14:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245810#M1828761</guid>
      <dc:creator>gaurab_banerji</dc:creator>
      <dc:date>2014-05-09T14:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: field symbol  type any conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245811#M1828762</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;Not yet , I sent proposal . The program is not in&amp;nbsp; my ownership. I will let you know .&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 14:17:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-symbol-type-any-conversion-error/m-p/10245811#M1828762</guid>
      <dc:creator>k_gjergja</dc:creator>
      <dc:date>2014-05-09T14:17:45Z</dc:date>
    </item>
  </channel>
</rss>

