XMLP is unable to parse German Character(ü) in PDF Output.

Hi friends,
The problem i'm facing..like in XML output i'm getting German Character(ü) however i can not get the output in PDF preview .
So as per suggestion i have checked the steps :
Under $COMMON_TOP/util/java/1.4/j2sdk1.4.2_04/jre/lib/fonts path the necessary ttf files are present. Those Files are
1. ALBANYWT.ttf - "single-byte" characters only
2. ALBANWTJ.ttf - Unicode font with Japanese
3. ALBANWTK.ttf - Unicode font with Korean Han
4. ALBANWTS.ttf - Unicode font with Simplified Chinese
5. ALBANWTT.ttf - Unicode font with Traditional Chinese Han Ideographs
6. ADUO.ttf and ADUOB.ttf (Support German Font)
Below is the OPP LOG..
Caused by: java.io.UTFDataFormatException: 6-byte UTF8 encoding not supported.
at oracle.xdo.parser.v2.XMLUTF8Reader.readUTF8Char(XMLUTF8Reader.java:237)
     at oracle.xdo.parser.v2.XMLUTF8Reader.fillBuffer(XMLUTF8Reader.java:120)
     at oracle.xdo.parser.v2.XMLByteReader.saveBuffer(XMLByteReader.java:450)
     at oracle.xdo.parser.v2.XMLReader.fillBuffer(XMLReader.java:2229)
     at oracle.xdo.parser.v2.XMLReader.skipWhiteSpace(XMLReader.java:1974)
     at oracle.xdo.parser.v2.NonValidatingParser.parseMisc(NonValidatingParser.java:331)
     at oracle.xdo.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:300)
     at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:280)
     at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
     ... 17 more
please Suggest...what to do next

Hi Tim,
Thanks a lot for the reply. I just generate the data file (XML data) without attaching the Template with concurrent report program. I don't know the set up for UTF8 (6-Byte) character.
Can i change it from 6-byte to 8 or 16 byte UTF8..?
Thanks and Regards,
Swain

Similar Messages

  • XMLP unable to parse Spanish Character "¿" ?

    Hi Friends,
    The report is completed with status warning as it is unable to parse the character "¿".
    Setup at profile
    FND: NATIVE CLIENT ENCODING : "WE8ISO8859P1"
    ICX: Client IANA Encoding : "Unicode (UTF-8)"
    please help me..
    Regards,
    Swain

    Hi,
    Goto MS-WORD application
    1. Open MSWord and use Insert->Symbol.
    2. Now find the font you want
    there are special characters also ... chk out that also .
    It will solve the issue... even in case of checkbox case you use this way.
    Its due to font was not applied on your MS-Word application.
    regards
    Ratnesh

  • Chinese character in PDF output file ?

    I have trouble to display Chinese characters (traditional Chinese) on PDF output file. Is there anyone can help ?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Rene Kello ([email protected]):
    From 'Reports 6i Release Notes'...
    Reports supports PDF 1.1.
    The Adobe Acrobat Reader cannot read .PDF report files generated by Report Builder if the report contains certain types of non- English character set languages (typically multi-byte) or Unicode character set.
    Same with reports 6.
    Install Acrobat Reader 4.X. Print to Acrobat Distiller printer. Works for Baltics.
    cheers,
    Rene.<HR></BLOCKQUOTE>
    It works ! Thank you !

  • Unable to parse control character using regular expression & Pattern class

    I am trying to parse the Ctrl-X character from a string using the Pattern class but for some or the other reason it is not finding it.
    Here is the code that I wrote,
    Pattern p=Pattern.compile("\\cX");
    Matcher m=p.matcher(str);
    System.out.println(str+": "+m.find());
    the result is prop^Xau,bu,ca,en,fe,fi,ge,hj,ma,pe,re,sh,sr,tr^Yto^Xym^Yfmt^Xh : false
    where, str= prop^Xau,bu,ca,en,fe,fi,ge,hj,ma,pe,re,sh,sr,tr^Yto^Xym^Yfmt^Xh
    Thanks,
    Arunraj

    arunraj.nair wrote:
    I am trying to parse the Ctrl-X character from a string using the Pattern class but for some or the other reason it is not finding it.
    Here is the code that I wrote,
    Pattern p=Pattern.compile("\\cX");
    Matcher m=p.matcher(str);
    System.out.println(str+": "+m.find());
    the result is prop^Xau,bu,ca,en,fe,fi,ge,hj,ma,pe,re,sh,sr,tr^Yto^Xym^Yfmt^Xh : false
    where, str= prop^Xau,bu,ca,en,fe,fi,ge,hj,ma,pe,re,sh,sr,tr^Yto^Xym^Yfmt^XhWhat does str.length() give you? And posting, and trying with, a (much) shorter String might help you and others here to more easily see the problem.
    db

  • PO output medium as 'External Send' for Language BG giving '#' instead of character in PDF output

    Hi Experts,
    When we maintain the PO output medium as ‘External Send’ for Language ‘BG’, the PO pdf is showing # instead of character.
    But, if the output medium is PRINT and language is ‘BG’, the PO pdf prints correctly in BG language.I have checked the output type
    NEU and find that same smartform is maintained for both the case.
    Also it is working fine in the Quality as well as in development server.. issue is coiming only in PRD.
    Thanks in advance!!
    Regards
    Mrinal

    Hi,
    PLease review the steps from SAP note 191470.
    Best Regards,
    Arminda Jack

  • Unable to display Crystal Reports 2008 PDF output on smart phones

    Hi Folks,
    I'm not sure if this is the proper forum, but here goes. I am just finishing a large ASP.NET web app which makes extensive use of Crystal Reports 2008 and a CrystalReportViewer control.  My users routinely e-mail the reports in PDF format. This works great, except now they tell me that when the recipient of the e-mail tries to open the PDF on an iPhone or Blackberry, it will not open. The PDF's open fine on desktop computers.
    Here is the code which generates the PDF and attaches it to the e-mail msg.
    //  export to PDF, then mail that
    SmtpClient client = new SmtpClient();
    MailAddress from = new MailAddress(ConfigurationManager.AppSettings["ReportMailFrom"].ToString());
    MailMessage message = new MailMessage();
    message.From = from;
    message.SubjectEncoding = System.Text.Encoding.UTF8;
    message.Subject = "E-mail BackOffice report: " + strReportName;
    MemoryStream memStream = (MemoryStream)rptDoc.ExportToStream(ExportFormatType.PortableDocFormat);
    Attachment data = new Attachment(memStream, MediaTypeNames.Application.Pdf);
    ContentDisposition disposition = data.ContentDisposition;
    disposition.CreationDate = DateTime.Now;
    disposition.ModificationDate = DateTime.Now;
    disposition.FileName = strReportName + ".pdf";
    disposition.DispositionType = DispositionTypeNames.Attachment;
    message.Attachments.Add(data);
    client.Send(message);
    Any ideas on what is happening here and how to make these PDF's visible to smart phones?
    Thanks.
    Dan

    Hi Dan,
    What happens if you export from Crystal Reports designer?
    I just tried if and BlackBerry tells me I am about to download a file that cannot be viewed on the phone. It doesn't say why though.
    Going through the Platforms file it doesn't mention smart phones so it would indicate we don't support them in that format.
    HTML worked but not pretty. You'll have to see what Blackberry does support. I found this one kbase article from them:
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB11245&sliceId=SAL_Public&dialogID=206744335&stateId=1%200%20206742756
    I'm testing more but I believe this is a blackberry limit and not CR.
    Seems they do support it but very limited.
    Thank you
    Don

  • $POSITION field prints a character on PDF output

    I have a $POSITION field on JFMain page.  A subform on Page2 is laid down at the $POSITION field on JFMain.  Target output is PDF only.  $POSITION field is formatted for No Print, positioned at X=0.  When generating preview a $ appears on the left at the margin on the output PDF.  This also happens on one other template only a capital M prints instead of a $.  The same type subform is on many other templates and it does not occur on those templates.  Any ideas on how to correct this are greatly appreciated.

    hi Joshua, i would tend to agree with the person on your team that feels it's a font issue. if you're scheduling an export on the server to pdf then that server has to have any fonts used on the reports. there are lots of articles on this process like this one here.
    if you export to ms word format in a schedule or publication from the same server you should see the same issue.
    -jamie

  • Some of Chinese character is not displaying correctly in PDF output

    Hi all
    I'm involved in the 1st Peoplesoft project in Korea and having a difficulty with displaying Chinese character in PDF output.
    Usually Koreans can translate their name in Chinese and that Chinese name is displayed in personal information in their company as well as Korean name.
    With Oracle BI Publisher I made rtf template that includes employees' Chinese name and tried to export to PDF output.
    Most of Chinese character was fine but '李' character that was ok in HTM output was crashed in PDF output.
    So I researched and tested some solutions.
    Here's what I did.
    I downloaded and installed five fonts(ALBANWTS.ttf, ALBANWTT.ttf, ALBANWT.ttf, ALBANWTK.ttf, ALBANWTJ.ttf) in client machine(c:\windows\fonts\) and did mapping job with xdo.cfg configuration file.
    After that I previewed PDF output in the rtf template and checked embeded fonts in the PDF file.
    I can see the newly installed font was embeded but still '李' character is crashed.
    My problem is little bit different from others becuase only one Chinese character is crashed by for now.
    The Chinese character '李' is very common last name in Korea and I believe Simplified Chinese character font have in it.
    Please let me know if you have any solutions or experiance.
    Thanks and best regards
    Kwangbock.

    Hi James
    Oh~ It perfectly works!!
    I've been tried to solve this problem for a long time and
    I really appreciate for your help~
    Thanks~
    Kwangbock.

  • Unable to parse query when using dblink in forms 4.5

    Hi,
    I have created a query that uses a DBlink because I need to do query on a table located on another dbase. I've used the query on creating my report using Reports 6i. The report needs to be called from a menu on our system, which was developed under Developer 2000 (forms 4.5). The problem is, when I tried to access the report from the menu, it returns the error 'unable to parse query'. What I did after getting error was to create a dummy module using Forms 6i, and call my report from there. It worked fine.
    By the way, the table that I'm accessing using the dblink is under Oracle 9i dbase, and the dbase of the system that I've been working at is Oracle 8i.
    I don't have any idea on what's causing this error. Is there a compatibility issue when using a dblink located in Oracle 9i database with forms 4.5?
    Thanks!

    Hello,
    Not sure if it is the good answer, but I know that Forms does not recognize dblink and owner.object syntax. You have to create a simple synomym that point to the distant object and use this synonym within Forms.
    Francois

  • Portal Runtime Error: Unable to parse template

    Hi!
    I integrated SAP BW system with SAP Portal. All the connection tests (Sap Web AS connection, ITS connection, Connection Test for connectors) run successfully.
    I also installed a BI add on u201CBI Administratoru201D on Portal and performed all the steps on SAP BI system.
    When I try to access one of the functions of BI Administrator I get Portal Runtime Exception on all the windows in Portal (bellow, in the middle, etc.).
    BI System Selection  
    Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 12:26_20/01/09_0013_21754250
    Refer to the log file for details about this exception.
    I have looked into log file for Portal and detected the following error text:
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException:
    Exception in SAP Application Integrator occured: Unable to parse template &\#39;&lt;System.Access.WAS.protocol&gt;://&lt;System.Access.WAS.hostname&gt;
    /sap/bw/BEx?sap-client=&lt;System.client&gt;&amp;sap-language=&lt;Request.Language&gt;&amp;accessibility=&lt;User.Accessibility
    [SAP_BOOL]&gt;&amp;style_sheet=&lt;LAF.StylesheetUrl[url_ENCODE]&gt;&amp;&lt;TrayInformation[IF_true PROCESS_RECURSIVE]&gt;&amp;&lt;Authentication&gt;&amp;&lt;Report&gt;&amp;&lt;BusinessParameters&gt;&\#39;; the problem occured at position 82. Cannot process expression &lt;System.client&gt; because Invalid System Attribute:
    System:    &amp;\#39;SAP_LocalSystem&amp;\#39;,
    Attribute: &amp;\#39;client&amp;\#39;.
    Question:
    How can I correct this error?
    Any helpful information will be very appreciated!
    Axel

    Hi Alex,
    It seems that the iview (of the type Application intergrator) cannot read or interperet the "client" parameter from your system object.
    I can also see that the systemobject-alias that is reffered to is "SAP_LocalSystem".
    Find the System Object called SAP_BW and see if all settings to connect to the backend are correct.
    In addition in the iview try to set the system-alias from SAP_LocalSystem to SAP_BW and retry.
    Good Luck.
    Benjamin

  • Unable to parse operation - BIP against JDE E1 with DAS

    Hi to all,
    I am in the following scenario:
    BI Publisher 10.1.3.4.1 integrated with JdEdwards E1 through DAS (Data Access Server).
    Then, using the connection that uses DAS, when I try tu use an outer join I get the following error:
    Unable to parse the operation [SELECT ..... WHERE AN8=AN8()]
    In the text editor where the query builder builds the query the '+' appears correctly...
    If I launch the query without the outer join then it works correctly!!
    This is quite urgent so any help would be appreciated.
    Many thanks in advance,
    Víctor.

    Hello Victor,
    you had the chance to fix the error?
    me doing the same,
    I'm also connected to a base JDE E1.
    my query is:
    Select     
    TO_DATE (substr(F0411.DGJ,2,6),'yydd') as DGJ,
    F0411.KCO as KCO,
         F0411.DOC as DOC,
         F0411.DCT as DCT,
         F0411.AN8 as AN8,
         F0411.PYE as PYE,
         F0411.SNTO as SNTO,
         F0411.AAP as AAP,
         F0411.AG as AG,
         F0411.SFX as SFX,
         F0101.ALPH as ALPH
    from     JDE.F0101 F0101,
         JDE.F0411 F0411
    where F0411.AN8=F0101.AN8
    and      F0411.DOC between :Doc_desde and :Doc_hasta
    and F0411.DGJ between TO_NUMBER(TO_CHAR(:Fecha_Desde, 'YYYYDDD' )) - 1900000
    and TO_NUMBER(TO_CHAR(:Fecha_Hasta, 'YYYYDDD' )) – 1900000
    error is:
    Unable to parse operation [select     
             TO_DATE(substr(DGJ,2,6),'yydd') as DGJ,
             F0411.KCO as KCO,
          F0411.DOC as DOC,
          F0411.DCT as DCT,
          F0411.AN8 as AN8,
          F0411.PYE as PYE,
          F0411.SNTO as SNTO,
          F0411.AAP as AAP,
          F0411.AG as AG,
          F0411.SFX as SFX,
          F0101.ALPH as ALPH
    from      JDE.F0101 F0101,
          JDE.F0411 F0411
    where   F0411.AN8=F0101.AN8
      and       F0411.DOC between ? and ?
      and    F0411.DGJ between TO_NUMBER(TO_CHAR(?, 'YYYYDDD' )) - 1900000
             AND               TO_NUMBER(TO_CHAR(?, 'YYYYDDD' )) - 1900000].
    why ??
    is the version of the drivers connecting ??
    thanks
    JC

  • I have a Nikon D600 and D800 and I shoot everything in Raw. I use Photoshop Elements 9 for processing but I have been unable to convert any RAW files to open in PSE. Says unable to parse the file. What does this mean and how do I fix it?

    I have a Nikon D600 and D800 and I shoot everything in Raw. I use Photoshop Elements 9 for processing but I have been unable to convert any RAW files to open in PSE. Says unable to parse the file. What does this mean and how do I fix it?

    Since pse 9 can only use up to camera raw 6.5 and the d600 needs at least 7.3 and the d800 needs at least 6.7, you can use the
    8.6 adobe dng converter to convert those files to dng copies, which then pse 9 should open.
    8.6 dng converter
    windows
    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.6
    mac
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 8.6
    Note:
    If you have windows xp or vista or mac os x 10.6, then you'll need to use the 8.3 dng converter instead
    windows
    Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.3
    mac
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 8.3
    how to use the dng converter
    Camera Raw: How to use Adobe DNG Converter - YouTube
    more info on supported cameras and camera raw plugins required
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications

  • I am running Photoshop CS6 on a Mac OS X 10.9.3 and every time I save a large eps I can not open it again. I get this message when I try. "Could not complete your request because Photoshop was unable to parse the PostScript."

    I am running Photoshop CS6 on a Mac OS X 10.9.3 and every time I save a large eps I can not open it again. I get this message when I try. "Could not complete your request because Photoshop was unable to parse the PostScript."

    Oh, dear.
    If you use PSE as your external editor for iphoto, you need to save the images back to iphoto by using Save, not Save As and not changing anything like the name or format that would bring up the Save As window. (You may need to adjust the editor prefs>saving files>on first save to save over existing.)
    OR you can export the photos from iphoto to the desktop, use file>open in the editor and then change whatever you want and either import the saved image to the organizer or import it back to iphoto as a new file. What you are doing is extremely risky, particularly to the iphoto library which you may easily damage by your workflow.
    I would start the organizer holding down the shift key, then create a new catalog and switch to the new one. Then try opening the editor without opening an image and see if you get any farther.
    PSE and iphoto are not designed to be used as you've been doing. You are trying to write to the iphoto library from outside iphoto, which is the fastest known way to corrupt the library and lose all your photos.

  • JMS Adapter: Unable to parse the scema error in step 7

    Hi
    I get unable to parse the schema error in step 7 of JMS Adapter partner link definition (in Type Chooser window). I am using RosettaNet 3b2 Schema converted from DTD by Tibco tools.
    Any help greatly appreciated.

    forwarded to the JMS adapter team. It would be nice if you could provide more context around the input you provided in the first 6 step (could you please post the schema or if there are a set of them, zip them up, rename the file .zap and email to collaxa_support_us at oracle.com). Thank you. -Edwin

  • ERROR ITMS-9000: "Unable to parse opf file: content.opf" at Book (MZItmspBookPackage)

    Hello,
    Here an itunes producer error for my new ibook:
    ERROR ITMS-9000: "Unable to parse opf file: content.opf" at Book (MZItmspBookPackage)
    Any help?
    Best!

    https://discussions.apple.com/message/17782799#17782799
    I thinks this link will help solve your issues. It worked for mine.

Maybe you are looking for

  • Bw publish and connections not based on the sap bw mdx query driver

    Dear experts, we are currently facing a problem with transporting reports that are based on multiple database connections and joined using the cross database join feature of crystal reports. One connection is based on the SAP BW MDX driver, the other

  • What does it mean @ in the permit status of a file?

    I have never seen the @ symbol in the status of a file. This is an excerpt of a directory listing in my iMac: ~$ ls -ltr | grep @ -rw-r--r--@ 1 casianorodriguezleon staff 12107 14 nov 10:58 object-design.png -rw-r--r--@ 1 casianorodriguezleon staff 1

  • Aperture not importing Jpegs

    My canon 5D is set to shoot both a CR2 file and a jpeg for each shot, when I import them into Aperture I can't see the jpegs. They are, however stored, on my hard disc. Why can't I see them in Aperture? I found that I can drag and drop them into aper

  • Slow render problem

    I have a question. I have a 2.33 Intel Duo Core IMac with 3 GB of ram. I have a 42 minute video to render. Should it take 12 hours to render ? If so, this is really going to slow down my process because I have 3 videos to render and need to do other

  • I lost my ipad

    Hi ,  Now I have lost my ipad. I was find with (find my iphone), but I can't find it. I can remember iphone serial number. Please can you give adavice , can I use serial number and find it ?....