Formula to show non english characters from clob in crystal report

Hi
I am using the database Oracle 11g with a field clob in one of the table that i want to show in the crystal report
But the problem is when i put the clob field in crystal report it is outputting the results perfectly for English characters but not for the Arabic ones and returning the string like (¿¿¿¿ ¿¿¿¿ ¿¿¿ ¿¿¿¿ ¿¿¿¿ ¿¿¿ ¿ ¿¿¿¿¿ ¿¿¿)
so is there any way to show the arabic (non english) characters perfectly on crystal report with clob field

Hi Azeem,
Make sure the arabic font should install in your system.
Try this:
Create a text field in your Crystal Report (a label).
Place Arabic characters into that field (just by typing them into it on the report definition).
Run the report. If they display correctly then its probably not Crystal, but rather would point to an issue in the data retrieval and supply to Crystal via your dataset (or whatever datasource you are using).
If they don't display - then its definitely Crystal.

Similar Messages

  • Removing non-English characters from data.

    Ours is global system with some data with non-English characters. We want to download file by removing this non-English characters.
    Any suggestions how we can remove these non-English characters from file..?

    The FM u said
         Replace non-standard characters with standard characters
       Functionality
         SCP_REPLACE_STRANGE_CHARS processes a text so that it only contains
         simple characters. Special characters and national characters are
         replaced in such a way that the text remains reasonably legible.
         The character set 1146 is used by default. In this case the following
         replacements are made, for example:
          Æ ==> AE        (AE)
          Â ==> A         (Acircumflex)
          Ä ==> Ae        (Adieresis)
          £ ==> L         (sterling)
         Note that the new text can be longer than the old.
    So i dont think it ll be useful for eliminating the sp. chars.
    U have to check each and every alphabet with std 26 alphabets
    Thanks & Regards
    vinsee

  • How to retrieve non-english characters from a query

    Hello,
    My apologies if this post is not in its proper place, but I was a bit confused where to add it.
    I'm running a query using SQL Developer on a table which contains several companies names from many different countries, and one of the checks I need to make to ensure data consistency is to search for all rows which the name of company contains special or non-english characters (like ç, ã, ä as example).
    I don't know what can I use to do this. I tried to collate using NLS_SORT but it didn't work.
    Is there someway to select only the rows that contain these special or non-english characters, excluding from the results the rows that only have english characters? Please have in mind that we have many languages in this table.
    The field I would like to make the conditions on is VARCHAR2.
    Please let me know if there is any extra information I should provide you so that you can help me.
    Thank you in advance for the help.
    Regards,
    Luís

    Hi Luis,
    My apologies if this post is not in its proper place, but I was a bit confused where to add it.This is the Forum for the SQL Developer Data Modeler product.
    I suggest you try using the SQL and PL/SQL Forum: PL/SQL
    David

  • Parsing Non English characters from OPEN DATASET

    Hi Team,
    I'm try to download the .txt file using the OPEN DATASET in the windows environment from application server, system language is set up for English.
    The problem is, in the .txt file some times I will be getting the non-English characters (Spanish). When I try to download the data into SAP it's not downloading properly eg: ñ when it downloaded into sap it took something like A+_.
    My goal is I need to download the Spanish characters properly into sap.
    Please advice how to solve this problem.
    Thanks,
    Selvaraj

    Hi Selvaraj!
    I haven't checked the situation for 4.5B, nor can I predict exact behavior, but you can give following statement a try:
    SET LOCALE LANGUAGE lg.
    This should even change content of sy-lange for whole role area (internal session), so change the value back afterwards.
    Regards,
    Christian

  • PDF generation for Non English Characters from ADF

    Hi
    We are using below piece of code to generate pdf from ADF Managed bean. It works fine. However for non English Characters(eg. Japanese,Vietnamese,Arabic)  it puts
    I got few blogs
    https://blogs.oracle.com/BIDeveloper/entry/non-english_characters_appears
    However we are not using BI Publisher product . We are using its API's
    Can anyone tell where do we need to setup fonts within ADF or Weblogic or Server ?
    Input Parameters are
    a)xml Data
    b)InputStream  ie rtf Template
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.template.FOProcessor;
    import oracle.apps.xdo.template.RTFProcessor;
        public static byte[] genPdfRep(String pOutFileType,byte[] pXmlOut ,InputStream pTemplate)
            byte[] dataBytes = null;
            try {
                //Process RTF template to convert to XSL-FO format
                RTFProcessor rtfp = new RTFProcessor(pTemplate);
                ByteArrayOutputStream xslOutStream = new ByteArrayOutputStream();
                rtfp.setOutput(xslOutStream);
                rtfp.process();
                //Use XSL Template and Data from the VO to generate report and return the OutputStream of report
                ByteArrayInputStream xslInStream = new ByteArrayInputStream(xslOutStream.toByteArray());
                FOProcessor processor = new FOProcessor();
                ByteArrayInputStream dataStream = new ByteArrayInputStream((byte[])pXmlOut);  
                processor.setData(dataStream);
                processor.setTemplate(xslInStream);
                ByteArrayOutputStream pdfOutStream = new ByteArrayOutputStream();
                processor.setOutput(pdfOutStream);
                byte outFileTypeByte = FOProcessor.FORMAT_PDF;
                processor.setOutputFormat(outFileTypeByte); //FOProcessor.FORMAT_HTML
                processor.generate();
                dataBytes = pdfOutStream.toByteArray();
            } catch (XDOException e) {
                e.printStackTrace();
            return dataBytes;
    Appreciate your help.
    Thanks,
    Abhijit

    Fonts are defined in the template you use to generate the pdf. Your application add the data and both is processed yb the FOP processor. Now there are two possible causes of the '???' :
    1. the data you sent to the template contains the '???' already
    2. the template can't digest the data (the special characters) and puts '???' in the pdf.
    Before going on you have to find out which one is your problem. The 2nd is the problem you better ask this in a FOP forum as you have to solve it by changing the template.
    Timo

  • Removing non english characters from my string input source

    Guys,
    I have problem where I need to remove all non english (Latin) characters from a string, what should be the right API to do this?
    One I'm using right now is:
    s.replaceAll("[^\\x00-\\x7F]", "");//s is a string having chinese characters.
    I'm looking for a standard Solution for such problems, where we deal with multiple lingual characters.
    TIA
    Nitin

    Nitin_tiwari wrote:
    I have a string which has Chinese as well as Japanese characters, and I only want to remove only Chinese characters.
    What's the best way to go about it?Oh, I see!
    Well, the problem here is that Strings don't have any information on the language. What you can get out of a String (provided you have the necessary data from the Unicode standard) is the script that is used.
    A script can be used for multiple languages (for example English and German use mostly the same script, even if there are a few characters that are only used in German).
    A language can use multiple scripts (for example Japanese uses Kanji, Hiragana and Katakana).
    And if I remember correctly, then Japanese and Chinese texts share some characters on the Unicode plane (I might be wrong, 'though, since I speak/write neither of those languages).
    These two facts make these kinds of detections hard to do. In some cases they are easy (separating latin-script texts from anything else) in others it may be much tougher or even impossible (Chinese/Japanese).

  • [Solved]output of `watch` doesn't show non-english characters

    Using `watch`, the output can only show English characters in Archlinux, but in Ubuntu, it works well.
    I've googled webs and searched the ArchWiki but to find nothing.
    Following is the result in my laptop with Archlinux.
    [six@localhost /tmp]$ uname -a
    Linux localhost 3.12.6-1-ARCH #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013 x86_64 GNU/Linux
    [six@localhost /tmp]$ cat tmpfile
    English: alpha
    Greek: α
    Chinese: 阿尔法
    [six@localhost /tmp]$ watch "cat tmpfile"
    Every 2.0s: cat tmpfile Wed Jan 8 21:40:32 2014
    English: alpha
    Greek:
    Chinese:
    Following is the result in my PC with Archlinux.
    [six@eskibear /tmp]$uname -a
    Linux eskibear.info 3.12.6-1-ARCH #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013 x86_64 GNU/Linux
    [six@eskibear /tmp]$cat tmpfile
    English: alpha
    Greek: α
    Chinese: 阿尔法
    [six@eskibear /tmp]$watch "cat tmpfile"
    Every 2.0s: cat tmpfile Wed Jan 8 21:42:24 2014
    English: alpha
    Greek:
    Chinese:
    Following is the result in Ubuntu.
    cit@cit-HP-Z220-SFF-Workstation:~$ uname -a
    Linux cit-HP-Z220-SFF-Workstation 3.8.0-32-generic #47-Ubuntu SMP Tue Oct 1 22:35:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
    cit@cit-HP-Z220-SFF-Workstation:/tmp$ cat tmpfile
    English: alpha
    Greek: α
    Chinese: 阿尔法
    cit@cit-HP-Z220-SFF-Workstation:/tmp$ watch "cat tmpfile"
    Every 2.0s: cat tmpfile Wed Jan 8 21:45:20 2014
    English: alpha
    Greek: α
    Chinese: 阿尔法
    I cannot figure out why. Looking forward to your help
    Last edited by eskibear (2014-02-01 00:36:11)

    karol wrote:
    /usr/bin/watch is owned by procps-ng 3.3.9-1
    What application and what version is it for Ubuntu?
    I use apt-show-version and dpkg, and following is the output.
    cit@cit-HP-Z220-SFF-Workstation:~$ apt-show-versions -p procps
    procps/raring-updates uptodate 1:3.3.3-2ubuntu5.3
    cit@cit-HP-Z220-SFF-Workstation:~$ dpkg -s procps
    Package: procps
    Status: install ok installed
    Priority: important
    Section: admin
    Installed-Size: 628
    Maintainer: Ubuntu Developers <[email protected]>
    Architecture: amd64
    Multi-Arch: foreign
    Version: 1:3.3.3-2ubuntu5.3
    Provides: watch
    Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libncursesw5 (>= 5.6+20070908), libprocps0 (>= 1:3.3.2-1), libtinfo5, upstart-job, lsb-base (>= 3.0-10), initscripts
    Recommends: psmisc
    Breaks: guymager (<= 0.5.9-1), open-vm-tools (<= 2011.12.20-562307-1), xmem (<= 1.20-27.1)
    Conflicts: pgrep (<< 3.3-5), w-bassman (<< 1.0-3)
    Conffiles:
    /etc/init/procps.conf 96170a339d08797dc90d69b01d6bf610
    /etc/sysctl.conf d1cb9fea7a813e02111874f040cfc04b
    /etc/sysctl.d/README c20074b9b11a5202758c69d7bcb6996f
    /etc/sysctl.d/10-ipv6-privacy.conf e9473d12b4a7069d6a3ca8b694511ddf
    /etc/sysctl.d/10-zeropage.conf 8d7193abcc4dfedaf519dd03016a5e59
    /etc/sysctl.d/10-kernel-hardening.conf 5c1388f00011a287cdeba60208c674e1
    /etc/sysctl.d/10-network-security.conf 4ac7258f5336e7eeaf448c05ab668d3c
    /etc/sysctl.d/10-link-restrictions.conf 8568316f2baa8db06554dab91f93a161
    /etc/sysctl.d/10-ptrace.conf 47f40494b2fc698e15549e0a4a79e81c
    /etc/sysctl.d/10-console-messages.conf 154f6f5c5810d10bb303fb6a8e907c6a
    /etc/sysctl.d/10-magic-sysrq.conf b3059f2835f17c97265433fdfdee358f
    Description: /proc file system utilities
    This package provides command line and full screen utilities for browsing
    procfs, a "pseudo" file system dynamically generated by the kernel to
    provide information about the status of entries in its process table
    (such as whether the process is running, stopped, or a "zombie").
    It contains free, kill, pkill, pgrep, pmap, ps, pwdx, skill, slabtop,
    snice, sysctl, tload, top, uptime, vmstat, w, and watch.
    Homepage: http://gitorious.org/procps
    Original-Maintainer: Craig Small <[email protected]>

  • Download none-English characters from tables

    Hi guys,
    I use apex 4.1.1 multilingual - with oracle xe 11g R2.. with listener 1.1.3 deployed on Glassfish 3.1.1
    I have Arabic data stored in my tables. if I go to Object Browser and try to download it, I get question marks instead of the letters....
    I have the same problem if I want to download the data of IR...
    Can you help please ??
    Regards,
    Fateh

    The FM u said
         Replace non-standard characters with standard characters
       Functionality
         SCP_REPLACE_STRANGE_CHARS processes a text so that it only contains
         simple characters. Special characters and national characters are
         replaced in such a way that the text remains reasonably legible.
         The character set 1146 is used by default. In this case the following
         replacements are made, for example:
          Æ ==> AE        (AE)
          Â ==> A         (Acircumflex)
          Ä ==> Ae        (Adieresis)
          £ ==> L         (sterling)
         Note that the new text can be longer than the old.
    So i dont think it ll be useful for eliminating the sp. chars.
    U have to check each and every alphabet with std 26 alphabets
    Thanks & Regards
    vinsee

  • Removing non-english characters

    Hi,
    I'm trying to define a regular expression that helps me to replace non-english characters from a string.
    For example:
    BESANÇON
    and I need to get something like: BESANCON, or BESAN*ON.
    Could any one give me some hints?
    Max A.

    You can use the convert function:
    SELECT CONVERT('BESANÇON','US7ASCII')
    FROM dual;
    CONVERT(
    BESANCON
    1 row selected.

  • How to add non English characters

    I install weblogic 10.3.3.0, SOA Suite 11.1.1.2, and SOA Suite 11.1.1.3 on Windows 2008 (English version). The Location of Regional and language option is set to local place. I also add non-Unicode.
    I can add new holiday rules using non English characters in the BPM workspace. Then, I shutdown my computer as normal. However, after I restart my computer and weblogic domain as well as SOA Suite 11g. The non English characters become ??????
    How to configure Weblogic domain and SOA Suite to show non English characters?

    is both English and Korean letters are in the same column without any space gab or any separator, ? Pl re check

  • I have non English characters showing up.

    This morning I wanted to make a change in my Security &amp; Privacy settings and when prompted to authenticate the dialogue box contained non-English characters.  Even the OK button appeared to be in Chinese are the like.
    Any ideas welcome.  OS X 10.8.1

    I'ts not all of the text though.  It's just the authentication popup that asks you for your password when you want to unlock the padlock to make changes. It comes up with "System Preferences" then two lines of non-english characters followed by "Type your password to allow this".  Then of course you have the Name and Password text fields.  The Cancel button is normal and the what would normally be the OK button, is in non-english text.
    Everything else system-wide is fine.
    It's got me...

  • Non English characters conversion issue in LSMW BAPI Inbound IDOCs

    Hi Experts,
    We have some fields in customer master LSMW data load program which can
    contain non-English characters. We are facing issues in LSMW BAPI
    method with non-English characters Conversion. LMSW steps read and
    conversion are showing the non-English characters properly with out any
    issue. While creating inbound IDOCs most of the non-English characters
    replaced with '#' and its causing issues in creating customer master data in
    system. In our scenario customer data with non-English characters in
    the first name, last name and address details. Any specific setting
    needs to be done from our side? Please suggest me to resolve this issue.
    Thanks
    Rajesh Yadla

    If your language is a unicode tehn you need to change the options  like IN SAP you need to change it to unicode  in the initial screen Customize local layout(ALT F12) options 118  --> Encoding ....

  • Non english characters in DN cannot be retrieved

    We are using Netscape directory server 4, protocal V3. We have a problem related to non-english characters appearing in RDN.
    We publish to Ldap entries using the values from database. For example, we have pubulished an entry to Ldap, based on DB values, the entry should have a DN like: ou=Liege BELGIUM ... LGG1a, <other components of DN>. However, when we call netscape search API (search against uid attribute which does not have non-english characters), the search return the entry, but when further call getDN() method on the returned Ldap Entry, it only returns Li, instead of the complete DN value.
    It seems the entry is corrupted in Ldap. I wanted to delete the corrupted entry and re create new one to test. I tried many ways, but none of them worked, I think it is because DN is corrupted, there is no key value to identify the Ldap entry for any operation(modify, delete).
    You help and insights are much appreciated.
    Thanks.
    Han Shen

    LDAP uses the UTF8 encoding. You must store data in the directory using the UTF8 encoding. This includes DN values. This also means that if you want to be able to view the values in your native character set and font, you must use an application that can convert the UTF8 LDAP data back to the native character encoding. The directory console by default should work for LATIN-1 (ISO 8859) languages if the LOCALE is set correctly.

  • Encoding non english characters with utf 8 on jsp (Critical!!)

    I am inserting hebrew characters from JSP into oracle db and everything is fine until this point. But when I try to retrieve the information from the database, the characters are not displayed properly (I get some garbage characters). I am sure that the data stored in the database is correct, but not sure why there is a problem in displaying the data in the JSP.
    I came across a thread on TSS
    http://www.theserverside.com/discussions/thread.tss?thread_id=28944
    and followed the suggestions given there like having
    <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
    <META http-equiv="Content-Type" content="text/html; charset=UTF-8">and also this
    <%
    //Some JDBC and sql statement query UTF-8 data and then ...
    String str = rs.getString("utf8_data");
    str = new String(str.getBytes("ISO-8859-1"),"UTF-8");
    %>
    <%= str %>Now, the data getting displayed is partly correct, I mean to say, some characters are still coming as squares.
    Any ideas will be of great help.

    even i doubt the database charset for this issue. But what I dont understand is how only certain hebrew characters are getting stored properly and why others are corrupted?
    Also, can anyone let me know how i can view the Non-English characters present in the database directly, as TOAD is not able to display them

  • Only VBA does not recognize non-English characters

    Hello guys,
    I have a new laptop with Windows 8.1 bought in the USA and I'm having a difficulties with Excel VBA (Office 365 University-64x bought in the Czech Republic - Central Europe). The VBA does not recognize non-English characters (particularly "ř" and
    "ů") which causes me problem when running some codes that I wrote earlier on my previous laptop (Windows 7, bought in the Czech Republic with the same Office). 
    The problem with non-English characters has occurred only in VBA so far, otherwise I can use these characters normally in Excel cells, Word... I tried to install both English and Czech version of the Office with no change, I also installed Czech proofreading
    tools and set everything to Czech in the Office. The location and language preferences in the Windows are also set up to Czech. And it is not a problem of a font. I also mentioned that when I tried to look up these characters, using Ctrl+F, it changes
    original ř to r after a search and again this is only an issue of the VBA.   
    Thank you very much for any help.
    Tom

    Hi Tom,
    VBA for Excel can only recognize ASCII code from 0 to 255, if you use other special characters like "ř" or "ů", it will returns 63(?) to you. To use this kind of characters, you have to utilize ChrW function to parse a decemal to the
    character.
    http://msdn.microsoft.com/en-us/library/ee177465.aspx
    for example, the hex code and dec code for these two characters are as below:
      Hex   Dec
    ř 159   345
    ů 016F  367
    So to get these two characters in VBA, you could code as below:
    ChrW(&H159) or ChrW(345)
    ChrW(&H16F) or ChrW(367)
    You can get the hex code of the character by searching in the system character map(in the Win8.1 start view, search "character map"), then convert the hex code to decimal code by yourself.
    Range("A1").Value = ChrW(&H159) & ChrW(&H16F)
    Range("A1").Value = ChrW(345) & ChrW(367)
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Goods Issue Stock To Asset Via Movement Type 241

    Hello SAP friends, I have a requirement that requires the material purchased into the plant storage location as stock qty. Following that the material will be issued out from the storage location to asset via movement type 241 using the moving averag

  • Can I use my phone as a modem for my laptop with its wifi?

    If so, how can I do this exactly?? Windows xp professional (if that is of any help)

  • Print in foreground for 4 alv using splitter

    hi All, I have created a program which displays 4 different alvs on a single screen . I have used one container and 4 splitters to display the alv. after the program is executed ,there is a button (print) through which all 4 alvs should be sent to a

  • CS5 Mac Installation Problem

    I am installing Adobe Design Premium CS5 on my MacBook Pro and it keeps wanting me to close Safari to complete installation, but it is closed.  What should I do?

  • Cannot get version 11.1 downloaded

    Get an error saying "Errors occurred while installing the updates.  If the problem persists, choose Tools>Download only and try installing manually." I chose Tools and Download only.  And all it did was open a window with programs.  I don't know what