<?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: UC_OBJECTS_NOT_CONVERTIBLE Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925628#M1484941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your code ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Apr 2010 11:45:03 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2010-04-26T11:45:03Z</dc:date>
    <item>
      <title>UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925626#M1484939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the following dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UC_OBJECTS_NOT_CONVERTIBLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to move the contents of the field symbol to a varibale of type char1024 or type of string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can move the entire contents of the Field-symbol to string? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:- Its a Unicode system&lt;/P&gt;&lt;P&gt;Field symbol is a dynamic work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help on this will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Mayank agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 11:42:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925626#M1484939</guid>
      <dc:creator>mayank_agarwal7</dc:creator>
      <dc:date>2010-04-26T11:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925627#M1484940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Show us what you have tried and please check the forum rules once. Phrases such as "Any help on this will be rewarded." are prohibited.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 11:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925627#M1484940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-26T11:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925628#M1484941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share your code ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 11:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925628#M1484941</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-04-26T11:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925629#M1484942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;   &amp;lt;fs_all_data&amp;gt; TYPE ANY TABLE,&lt;/P&gt;&lt;P&gt;   &amp;lt;fs_wa_all_data&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;   l_string TYPE string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(wa_tables-tabname) - is any table name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT *&lt;/P&gt;&lt;P&gt;      INTO TABLE &amp;lt;fs_all_data&amp;gt;&lt;/P&gt;&lt;P&gt;      FROM (wa_tables-tabname).&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      LOOP AT &amp;lt;fs_all_data&amp;gt; ASSIGNING &amp;lt;fs_wa_all_data&amp;gt;.&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;move &amp;lt;fs_wa_all_data&amp;gt; to l_string.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here i want to move the Field symbol to a variable of type string. &lt;/P&gt;&lt;P&gt;I am getting UC_OBJECTS_NOT_CONVERTIBLE  dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Mayank Agarwal on Apr 26, 2010 2:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 12:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925629#M1484942</guid>
      <dc:creator>mayank_agarwal7</dc:creator>
      <dc:date>2010-04-26T12:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925630#M1484943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any updates plz?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 17:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925630#M1484943</guid>
      <dc:creator>mayank_agarwal7</dc:creator>
      <dc:date>2010-04-26T17:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: UC_OBJECTS_NOT_CONVERTIBLE Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925631#M1484944</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;This is because in a Unicode environment the types I, P, F cannot be converted to string. I feel the structure must have components which cannot be converted to string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways why do you want to move the field-symbol to a string variable?&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>Mon, 26 Apr 2010 17:57:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uc-objects-not-convertible-error/m-p/6925631#M1484944</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-04-26T17:57:54Z</dc:date>
    </item>
  </channel>
</rss>

