<?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: Runtime error analysis in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004323#M1165167</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;Try using IGNORING CONVERSION ERRORS in the OPEN DATASET statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jan 2009 19:54:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-19T19:54:08Z</dc:date>
    <item>
      <title>Runtime error analysis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004322#M1165166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi could someomne explain what this error means.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   At the conversion of a text from codepage '4110' to codepage '4103':

   - a character was found that cannot be displayed in one of the two
   codepages;
   - or it was detected that this conversion is not supported

   The running ABAP program 'ZWELL_UPLOAD' had to be terminated as the conversion
   would have produced incorrect data.

   The number of characters that could not be displayed (and therefore not
   be converted), is 234. If this number is 0, the second error case, as
   mentioned above, has occurred.



rror analysis
   An exception occurred that is explained in detail below.
   The exception, which is assigned to class 'CX_SY_CONVERSION_CODEPAGE', was not
    caught in
   procedure "UPLOAD_AS" "(FORM)", nor was it propagated by a RAISING clause.
   Since the caller of the procedure could not have anticipated that the
   exception would occur, the current program is terminated.
   The reason for the exception is:
   Characters are always displayed in only a certain codepage. Many
   codepages only define a limited set of characters. If a text from a
   codepage should be converted into another codepage, and if this text
   contains characters that are not defined in one of the two codepages, a
   conversion error occurs.

   Moreover, a conversion error can occur if one of the needed codepages
   '4110' or '4103' is not known to the system.

   If the conversion error occurred at read or write of  screen, the file
   name was '/oracle/SBX/sapreorg/zwell/zwell_gz/wmi_nts_extract_20090109_1.txt.gz
   '. (further information about the file: "X 570
    1404683rw-r--r--200901191017522009011214215520090116114917")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 17:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004322#M1165166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T17:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error analysis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004323#M1165167</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;Try using IGNORING CONVERSION ERRORS in the OPEN DATASET statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 19:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004323#M1165167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T19:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error analysis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004324#M1165168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;.gz extension&lt;/STRONG&gt;...I think you are trying to upload a zip file with TEXT MODE addition.&lt;/P&gt;&lt;P&gt;Load text file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 20:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004324#M1165168</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2009-01-19T20:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime error analysis</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004325#M1165169</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;We faced the same error while during upgrade recently. There are two appraoches you can think of.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Use OPEN DATASET command with option IGNORE CONVERSION ERRORS.  When it finds &lt;/P&gt;&lt;P&gt;    character which it does not understand, it will replace it with # character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You can use exception handling by using construct.   TRY....... &lt;/P&gt;&lt;P&gt;    You can check for the exception CX_SY_CONVERSION_CODEPAGE and you can either&lt;/P&gt;&lt;P&gt;    do nothing or replace the character with any other.  By default it replaces with # character.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 20:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-analysis/m-p/5004325#M1165169</guid>
      <dc:creator>nkr1shna</dc:creator>
      <dc:date>2009-01-19T20:27:31Z</dc:date>
    </item>
  </channel>
</rss>

