<?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: Keep getting this error when I run a program   UC_OBJECTS_NOT_CONVERTIBLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837968#M356434</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am encountering the same problem.  Is this something that has changed when working in an ECC system?  This coding always worked for me in the past.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, what has replaced C_T_DATA?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Feb 2007 19:27:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-14T19:27:49Z</dc:date>
    <item>
      <title>Keep getting this error when I run a program   UC_OBJECTS_NOT_CONVERTIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837966#M356432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a project via CMOD for a modification to a BW extractor.  It is pretty simple coding but when I try and execute the extractor via RSA3 I get the following error.  I've attached the code as well and it is something with line 17.  can you please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;    Data objects in Unicode programs cannot be converted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happened?&lt;/P&gt;&lt;P&gt;    Error in the ABAP Application Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    The current ABAP program "SAPLXRSA" had to be terminated because&lt;/P&gt;&lt;P&gt;    come across a statement that unfortunately cannot be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis&lt;/P&gt;&lt;P&gt;    The statement&lt;/P&gt;&lt;P&gt;       "MOVE src TO dst"&lt;/P&gt;&lt;P&gt;    requires that the operands "dst" and "src" are convertible.&lt;/P&gt;&lt;P&gt;    Since this statement is in a Unicode program, the special conver&lt;/P&gt;&lt;P&gt;    rules for Unicode programs apply.&lt;/P&gt;&lt;P&gt;    In this case, these rules were violated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;    Program                                 SAPLXRSA&lt;/P&gt;&lt;P&gt;    Include                                 ZXRSAU01&lt;/P&gt;&lt;P&gt;    Row                                     17&lt;/P&gt;&lt;P&gt;    Module type                             (FUNCTION)&lt;/P&gt;&lt;P&gt;    Module Name                             EXIT_SAPLRSAP_001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    1 *&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;    2 *&amp;amp;  Include           ZXRSAU01&lt;/P&gt;&lt;P&gt;    3 *&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;    4&lt;/P&gt;&lt;P&gt;    5 TABLES: VTTK.&lt;/P&gt;&lt;P&gt;    6 DATA: L_MCCOMVTTS LIKE MCCOMVTTS,&lt;/P&gt;&lt;P&gt;    7       L_TABIX LIKE SY-TABIX.&lt;/P&gt;&lt;P&gt;    8&lt;/P&gt;&lt;P&gt;    9&lt;/P&gt;&lt;P&gt;   10&lt;/P&gt;&lt;P&gt;   11 CASE I_DATASOURCE.&lt;/P&gt;&lt;P&gt;   12&lt;/P&gt;&lt;P&gt;   13  WHEN '2LIS_08TRTLP'.&lt;/P&gt;&lt;P&gt;   14&lt;/P&gt;&lt;P&gt;   15 *FIND TDLNR &amp;amp; VSART IN THE SHIPMENT HEADER TABLE&lt;/P&gt;&lt;P&gt;   16&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;  LOOP AT C_T_DATA INTO L_MCCOMVTTS.&lt;/P&gt;&lt;P&gt;   18   L_TABIX = SY-tabix.&lt;/P&gt;&lt;P&gt;   19   SELECT SINGLE * FROM VTTK WHERE TKNUM = L_MCCOMVTTS-TKNUM.&lt;/P&gt;&lt;P&gt;   20&lt;/P&gt;&lt;P&gt;   21 *FILL FIELDS WITH DATA FROM VTTK(SHIPMENT HEADER TABLE)&lt;/P&gt;&lt;P&gt;   22   IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;   23    L_MCCOMVTTS-Z_TDLNR = VTTK-TDLNR.&lt;/P&gt;&lt;P&gt;   24    L_MCCOMVTTS-Z_VSART = VTTK-VSART.&lt;/P&gt;&lt;P&gt;   25    MODIFY C_T_DATA FROM L_MCCOMVTTS INDEX L_TABIX.&lt;/P&gt;&lt;P&gt;   26   ENDIF.&lt;/P&gt;&lt;P&gt;   27  ENDLOOP.&lt;/P&gt;&lt;P&gt;   28 ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 13:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837966#M356432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T13:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Keep getting this error when I run a program   UC_OBJECTS_NOT_CONVERTIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837967#M356433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ra you sure the &lt;/P&gt;&lt;P&gt;table C_T_DATA and the work area L_MCCOMVTTS have the smae fileds with same data element .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think somewhere ther is adifference that why systerm is umable to populate the table data in to work area..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;i have observed that C_T_DATA is not defined any format..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure u have the same structure for the work area as well&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Close this thread.. when u r problem ise solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Naresh Reddy K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Naresh Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 14:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837967#M356433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T14:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Keep getting this error when I run a program   UC_OBJECTS_NOT_CONVERTIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837968#M356434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am encountering the same problem.  Is this something that has changed when working in an ECC system?  This coding always worked for me in the past.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, what has replaced C_T_DATA?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 19:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/keep-getting-this-error-when-i-run-a-program-uc-objects-not-convertible/m-p/1837968#M356434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T19:27:49Z</dc:date>
    </item>
  </channel>
</rss>

