<?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: unicode conversion error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608992#M1086103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey this error is shown because there is a type difference in your database table and the internal table.&lt;/P&gt;&lt;P&gt;create a structure of your database &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of &amp;lt;is_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include structure &amp;lt;database tablename&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : end of &amp;lt;is_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a work area for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_tab type is_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign all the values from your internal table to this new work area and from then you update the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Midhun Abraham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Midhun Abraham on Oct 11, 2008 9:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Oct 2008 07:02:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-11T07:02:03Z</dc:date>
    <item>
      <title>unicode conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608989#M1086100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using this statement in SE37 but it gives error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO ZBATCH VALUES TO_CHVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error message is &lt;/P&gt;&lt;P&gt;Function Module ZFIND_PRDORD_FOR_BATCH.&lt;/P&gt;&lt;P&gt;The type of of database table work area (or internal table )&lt;/P&gt;&lt;P&gt;"to_chvw" are not unicode convertable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what shld i do to remove this error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2008 06:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608989#M1086100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-11T06:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: unicode conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608990#M1086101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the type declartion of  &lt;STRONG&gt;TO_CHVW&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2008 07:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608990#M1086101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-11T07:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: unicode conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608991#M1086102</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;i assume ZBATCH is a DB table and you are inserted values from work area - TO_CHVW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in such a case the work area TO_CHVW has to be declared as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: TO_CHVW TYPE ZBATCH
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;because the length of TO_CHVW must be the same as ZBATCH including the field MANDT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have TO_CHVW of some other structure, then create a temp. structure TO_CHVW_TEMP TYPE ZBATCH and &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING TO_CHVW to TO_CHVW_TMP.&lt;/P&gt;&lt;P&gt;then insert the temp structure into ZBATCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2008 07:01:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608991#M1086102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-11T07:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: unicode conversion error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608992#M1086103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey this error is shown because there is a type difference in your database table and the internal table.&lt;/P&gt;&lt;P&gt;create a structure of your database &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of &amp;lt;is_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include structure &amp;lt;database tablename&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : end of &amp;lt;is_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a work area for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_tab type is_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign all the values from your internal table to this new work area and from then you update the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Midhun Abraham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Midhun Abraham on Oct 11, 2008 9:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2008 07:02:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion-error/m-p/4608992#M1086103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-11T07:02:03Z</dc:date>
    </item>
  </channel>
</rss>

