Special characters not shown in OBIEE report

Hi
We are facing an issue with column values containing special characters in the reports(OBIEE 11G, 11.1.1.6.5). In-spite of actual column values i.e. special characters, NULL is displayed/shown. It would be very helpful if any work-around/pointer is provided for the resolution of this issue.
Thanks

Hi,
Go with Dhar suggestion, While installing the database itself we have the options "unicode type" for special characters.
Now Create one more instance and install the database use the unicode option to resolve.
i faced for arabic character i found this mode.
for more reference http://mkashu.blogspot.com
regards
VG

Similar Messages

  • Special Characters in charts with web reports

    Hello, we are facing a problem to display special characters in charts on web reports (it comes out badly).
    The only sap note found about this problem is note n°1036745, but it is for NW 2004s, but should be solved in NW04s BIJava SP 12, and we are currently with SP 15.
    Has anyone faced this problem with BI 7.0?
    Thanks,
    Philippe

    hi Philippe
    I did not faced this issue. Nevertheless there is another note dealing with the issue. Note 1088411.
    Take into account that your basis should synchronise the level of BI JAVA SP the famous Java Stacks and BI SP (ABAP support package).
    You say that you are SP 15 I guess it is ABAP SP as SPS for 15 is not already shipped,
    if this is not the case please ask your basis to check tihs note 1013369.
    Hope this could help you
    regards
    Boujema

  • Kazakh characters not shown correctly in BO reports

    Context :
    While doing a project in KZ we make use of Business objects (BO XI R3 SP1) to generate reporting.
    The language used for the reporting is Russian, but some client identification data of the company, which contains Kazakh characters,  should be shown in the reports. 
    Problem :
    KZ characters are not shown correctly in the BO reports  (majority of time '?' is shown)
    Details :
    As I understand BO doesn't support the KZ language.  We get the following message  (CS : invalid native charset).
    NLS_LANG :  Russian : .CL8MSWIN1251  --> works
    NLS_LANG :  Kazakh : .CL8RK1048  -->  not supported by BO.  (This is though supported by the Oracle client and functions when we use SQL Plus)
    Is there a workaround available to show KZ characters correctly in BO  ?
    Thanks

    See my comments in this post:
    client_get_file_name do not go to specified folder

  • Reports with output to excel - special characters not displayed correctly.

    Hi,
    I have a portal with data from 5 continents. In many places special or national characters are used in names. My portal can show most of these characters correctly and so can my version of Microsoft Office Excel. When text with these characters are copy/pasted from the screen to an excel sheet, they are also shown correctly in excel. The problem arises in portal reports, where output is set to Excel, then special characters are often displayed as strange double characters, for example á is shown as á . Does anybody have a solution to that?
    Thanks
    Arne

    No answers have been posted yet and now I have found a solution myself. The portal report is run and output set to Excel. The resulting file is opened, and a new row is inserted in the top of the sheet. In the first field in this row is written the characters *\xEF\xBB\xBF*. It is called a UTF-8 BOM, and when written in the start of a text file, it will tell the program that opens it, that UTF-8 encoding is used.<br><br>
    The file is saved with the file type CSV (semicolon separated) (*.csv) and excel is closed. When you click on the CSV-file, it is opened by excel, and now all characters with accents, circumflexes and umlauts are shown correctly.<br><br>
    The solution was found here: http://www.roosmaa.net/importing-utf-8-csvs-in-excel/

  • Special characters in CLOB are making report fail

    Hi-
    I am working on a report which is refering CLOB column from database. If the CLOB had special characters like & or <, the report is returning error 'Expected name instead of .' I created a view and stored CLOB as varchar2 and refered the view in query and the report works fine, but the drawback of this is varchar2 max limit is 4000 chars and the text i intend to show is more than 4000 chars.
    Can someone share any ideas on how to get around this error?
    Thanks in advance.

    Hmm, thought I'd dig a little to see what you guys mean. Indeed XML Publisher Data Template doesn't translate CLOB special characters and so BIP chokes!
    My advice - log a bug and write XML output in PL/SQL.
    Here's my working for reference (note spaces added after & to preserve special chars!):
    CREATE TABLE test_clob (
    id            NUMBER(15)
    , file_name     VARCHAR2(1000)
    , file_contents CLOB
    , timestamp     DATE
    insert into test_clob
    (id,file_name, file_contents)
    values
    (3,'Greeting = <Hello, world>','Greeting = <Hello, my funky file contents>');
    ed gg.sql
    select '<?xml version="1.0" encoding="UTF-8" ?>'
    from dual;
    select xmlelement("row",
                      xmlelement("file_name", file_name),
                      xmlelement("file_contents", file_contents))
    from   test_clob
    where  id = 3;
    :q
    set serverout off termout off echo off verify off head off trimspool on
    set lines 300 pages 0 long 20000
    spool gg.xml
    @gg
    spool off
    exit
    cat gg.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <row><file_name>Greeting = & lt;Hello, world& gt;</file_name><file_contents>Greeting = & lt;Hello, my funky file contents& gt;</file_contents></row>
    OKAY: both fields translated! Let's try using dataTemplate
    <?xml version = '1.0' encoding = 'utf-8'?>
    <dataTemplate name="XXV8_CLOB" description="$Header$" defaultPackage="" Version="1.0">
    <parameters>
    </parameters>
    <properties>
    <property name="include_parameters" value="true" />
    <property name="include_null_Element" value="true" />
    <property name="include_rowsettag" value="false" />
    <property name="scalable_mode" value="on" />
    <property name="debug_mode" value="off" />
    </properties>
    <dataQuery>
    <sqlStatement name="Q_LOBS">
    <![CDATA[
    select file_name, file_contents
    from   test_clob
    where  id = 3
    ]]>
    </sqlStatement>
    </dataQuery>
    </dataTemplate>
    OUTPUT:
    <?xml version="1.0" encoding="UTF-8"?>
    <XXV8_CLOB>
    <LIST_Q_LOBS>
    <Q_LOBS>
    <FILE_NAME>Greeting = & lt;Hello, world& gt;</FILE_NAME>
    <FILE_CONTENTS>
    Greeting = <Hello, my funky file contents></FILE_CONTENTS>
    </Q_LOBS>
    </LIST_Q_LOBS>
    </XXV8_CLOB>
    CHOKE:
    Post-processing of request 2805016 failed at 18-MAR-2008 22:59:19 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Error message in OPP output processor:
    Template code: XXV8_CLOB
    Template app:  XXV8
    Language:      en
    Territory:     US
    Output type:   PDF
    [3/18/08 10:59:18 PM] [UNEXPECTED] [752315:RT2805016] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Expected name instead of ,.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.XMLReader.scanNameChars(XMLReader.java:1056)
         at oracle.xdo.parser.v2.XMLReader.scanQName(XMLReader.java:1768)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttr(NonValidatingParser.java:1444)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttributes(NonValidatingParser.java:1394)
         at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1225)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 moreAs you can see the varchar special characters are "escaped" or translated or whatever you want, but not the CLOB!
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • German Special Characters not displayed correctly in RTF  using code

    Hi ,
    In my code we are using webdynpro method
    WDResourceFactory.createResource(
    byte[] data, String resourceName,WDWebResourceType
    Type)
    Here in our code we are implementing this as
    ITemplateElement templateEl = wdContext.currentTemplateElement();
    WDResourceFactory.createResource(
    templateEl.getReportData(),
    reportName.substring(0, reportName.lastIndexOf('.')),
    WDWebResourceType.RTF); reportName.lastIndexOf('.')),
    Here templateEl.getReportData() returns a set of bytes which has some
    german special characters.
    We are generating the Bytes using String.getByes(),Just before
    String text = new String(in);
    collector.putBusinessObject(boName, bo);
    reportDocTemplateParser(collector, text);
    collector.removeBusinessObject(boName);
    String generatedText = collector.generateRTF();
    out = (null != generatedText) ? generatedText.getBytes() : null;
    The out put is the if i am giving a word with german special characters for eg:
    Betriebsübersichten it first gets converted to bytes and then passes through method WDResouseFactory.createResourse(.....) which creates an RTF file and finally in the RTF file it appears as Betriebsbbersichten the special character is not displayed correctly.
    i came to knw that while converting into bytes we have to make it RTF supported encoding.ie for eg generatedText.getBytes('cp1252').i even tried with other charactersets like ISO-8859,cp1253 and so on but none of them worked.
    It would be really great if you could suggest the needful.
    Thanks and Regards
    Neeta

    I soved this by using get_data function of response object. Then converting this into ISO-8859-1 charset.
    See code below.
    DATA :  lv_encoding   TYPE abap_encoding,
              lv_conv       TYPE REF TO cl_abap_conv_in_ce,
              lv_x_string   type xstring.
      lv_x_string = pv_http_client->response->get_data( ).
        lv_encoding = '1100'.
        lv_conv = cl_abap_conv_in_ce=>create(
                              encoding = lv_encoding
                                 input = lv_x_string ).
        lv_conv->read( IMPORTING data = pv_result ).

  • Some vendors' data is not shown in Aging Report

    Hi, Experts,
    We are using SAP B1 2007A.
    Our aging report only shown several vendors' data, eventhough we selected 'All' vendors.
    Each vendor's aging report is all right, but we could not show 'All' vendors' aging together.
    We tried to select 'Display Vendors with Zero Balances' or/and 'Display Reconciled Transactions'; tried to select the range of the 1st vendor to the last vendor. - - - all of these do not work.
    Please help! Thanks!
    Lorrie

    Hi,
    If I am not wrong you are using the 2007A version and the patch level is below 38.
    You are trying to run the Backdated Aging report and all your Business Partners are not appearing in the report.
    Please check Note No. : [1178854|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1178854].
    Regards,
    Jitin
    SAP Business One Forum Team

  • EMployee not shown in PNP report

    I have a PNP report in which a spicific employee is not shown and triggerd by the getpernr, in PA20 the employee is shown normally, is there a way to find out why this person is not triggered by getpernr??
    Thks RIchard

    Hi,
        Can you write your  here as your problem is unique.
    We use Get Pernr after spacifying Infotypes statement Like.
    INFOTYPES : 0000, 0001, 0002, 0006, 0009, 0021, 0185, 0587.
    After that in between START-OF-SELECTION and END-OF-SELECTION WE USE
    GET PERNR Event>
    START-OF-SELECTION.
       GET     pernr.
    END-OF-SELECTION
    Now we use Provide and Endprovide for  processing. In between that all the Pernr will come.
    So Kindly write your code here for better understanding.
    Regards,
    Himanshu

  • German special characters not displaying on page instead of that Question marks displayed

    when i submit form,i need to send a mail with filled data.Here Suppose user entered german special characters.I am getting Question marks instead of ä,Ä,ö,Ö,ü,Ü,ß. I have used meta tag like
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />.But i am getting fine characters with IE and Chrome.I am using FireFox 3.6.16 english.

    Hello core team,
    Thanks a lot!!!!
    i m not only the person to use html form.So many non technical persons using the same. how can i tell to all persons regarding changing character encoding. i need some permenant solution,

  • Special Characters Not Displaying at Logon Screen

    Hello, my daughter set her password on her iPad using special characters and has been able log in  by holding down a certain letter on the keyboard and choosing a latin character.  This is no longer working as the popup menu doesn't appear when holding down on letters anymore.  She recently updated it to iOS8, but claims that she was able to log in at least a few time since the update.
    Is there any trick to making these special character menus appear again?  Thanks so much.

    Hello Paul,
    I once used hexadecimal coded characters like &xnnn; and they were not transformed. When coding them in decimal, everthing worked fine.
    Hth
    J�rg

  • Webservice: Special characters not displayed correctly

    Hi,
    I'm facing a problem when retrieving informations via a webservice. I'm able to use it and data is retrieved but when there are special characters into the response they are not displayed correctly. Repsonse of the webservice is XML formatted.
    It seems to be a charcter set problem, strange thing is that the response is ISO-8859-1 formatted, this charset should normally display special characters like (é à ...) correctly.
    In my code I simply use an if_http_client object to use the webservice.
    pv_result = pv_http_client->response->get_cdata( ).
    Xml repsonse :
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <![CDATA[Eetcaf�/Steakhuis Baskent]]>
    Should be Eetcafé
    How can I specify a charset for the response object?
    I did the same in .NET, where I can bypass this issue specifying the charset like this.
    Dim reader As New StreamReader(oResponse.GetResponseStream(), System.Text.Encoding.Default)
    Thanks a lot for your help.
    Edited by: dom___35 on Dec 21, 2009 3:30 PM

    I soved this by using get_data function of response object. Then converting this into ISO-8859-1 charset.
    See code below.
    DATA :  lv_encoding   TYPE abap_encoding,
              lv_conv       TYPE REF TO cl_abap_conv_in_ce,
              lv_x_string   type xstring.
      lv_x_string = pv_http_client->response->get_data( ).
        lv_encoding = '1100'.
        lv_conv = cl_abap_conv_in_ce=>create(
                              encoding = lv_encoding
                                 input = lv_x_string ).
        lv_conv->read( IMPORTING data = pv_result ).

  • Special characters not showing

    Hello, I am having a strange problem with showing special characters in the browser when I upload the site. (its fine when I view it on localserver)
    For example on my website: http://www.reese-test2.co.uk/
    if you do a search for example: 3GLG534WW - instead of seeing the degree symbol there is a �
    it should read 35° beam angle not  35� beam angle
    I know i could go through all 500 products and change the beam angle character on my SQL database to:   35&deg;
    But surely there is an easier way? This being a lighting website for my work I have other special characters that will also show up weird, so would be good if there was an easy fix to this. I am using WAMP, and DW CS6.
    Is there a line of code I can add to my results.php page that will force the characters to show properly?
    thanks
    Sara

    Hi Just thought I would update this post. My server provider said they cannot change the character set due to how they were set up, so had to do a find/replace in PHPmyAdmin - (SQL tab) instead.
    Ken thanks for your idea. This didnt initially work for me, so googled it and had to make a couple of changes to the code, but this then worked. "Replace" needs to be in caps and the brackets removed.
    Original:
    update [table_name] set [field_name] = replace([field_name],'[° ]','[&deg;]');
    Correct:
    UPDATE productsearch SET description = REPLACE (  description,  ‘°’,  ‘&deg;’);
    thanks for your help Ken Binney
    Sara

  • Using XML with special characters - not rendering

    Hello,
    I am using xml to populate the content of a Flash file, but
    we have localized content for different global regions. So, when
    the content contains special characters like "é" they do not
    show up at all in the flash. I tried using &eacute; but that
    just renders the actual code...
    Is there a workaround for this?
    Thanks

    Hi Rothrock, thanks for your reply...
    Flash Version: 8, but the swf was published to be 7+
    compatible.
    The font is Meta Normal, it is embedded, and it does include
    the character.
    I am retrieving the xml by using this script in the html
    page:
    <script type="text/javascript">
    // <![CDATA[
    var fo = new FlashObject("/templates/flash/index.swf" +
    cKiller, "ad-flash", "710", "351", "7", "#FFFFFF");
    fo.addVariable("xmlURL", "/flash_content/products.xml");
    fo.write("ad");
    // ]]>
    </script>
    I am creating the XML using Macromedia Homesite, with the
    encoding declaration <?xml version="1.0" encoding="UTF-8" ?>
    The XML is being read fine, only the special characters don't
    show up... so it will cut off the word, or just have an empty space
    where the character should be.
    I am not sure how to specifiy Extended Latin charset in the
    document... could you tell me how to do that?
    Thanks

  • Vertical Line is not shown in 11g Report.

    Hi All,
    I have some vertical lines (as column separators) in my reports( which I call from form through web.show_document),
    which are neither shown in screen nor in printing.
    But these lines are shown when run report from Report Builder.
    Please guide !
    Thanks.
    Dass.

    Hi,
    I am not sure about 11g Report, but generally , pl try to delete the line , create new line - check font of the line as well, some times this will solve your issue.
    dassdhan wrote:
    Hi All,
    I have some vertical lines (as column separators) in my reports( which I call from form through web.show_document),
    which are neither shown in screen nor in printing.
    But these lines are shown when run report from Report Builder.
    Please guide !
    Thanks.
    Dass.

  • Special Characters not presenting properly

    All of a sudden my (not so) Special Characters are not being rendered properly.  Much of the website is in German, hence a lot of umlauts.
    With yesterday's upload the umlauts now look like this:
    Zurück, instead of Zurück,
    für, instead of für,
    Schömberg, instead of Schömberg, etc.
    Ignore the Link highlighting.
    Here is a Link to a sample:
    http://www.schembs.com/TEST_jds_4.html
    Thanks for your help.
    jds

    Have a look at the following
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta name="generator" content="HTML Tidy, see www.w3.org" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="Generator" content="Microsoft FrontPage 4.0" />
    <title>DIE HERRNSHEIMER #1 SCHEMBS</title>
    </head>
    <body link="blue" vlink="purple">
    <div id="content-box-900px">
    <div id="main_paragraph">
    <dl>
    <dt><a href="../und_1/2_3_j_heinrich.htm#Joh. Heinrich Sch&auml;mbs (1675-1743)"> Zur&uuml;ck zu den Eltern von Joh. Heinrich Sch&auml;mberg (*1713)</a></dt>
    </dl>
    <h1 align="center">Kapitel C</h1>
    <h2 style='font-weight: bold' align="center">DIE HERRNSHEIMER SCHNEIDER</h2>
    <dl>
    <dt class="type_16">Vorbemerkung:<br /><br />
    Heinrich Sch&auml;mberg (*30.03.1729 Monzernheim, +11.07.1809 Brooklyn, NY<br />
    <br />
    Heinrich heiratete im 1774 in New York City Crescentia "Mary" K&auml;mmerer (06.1829)<br />
    <br /></dt>
    </dt>
      <dd style="font-weight: bold"><u>LINKS:</u></dd>
      <dd class="col_0">Klick Hier f&uuml;r <a href="herrnsl_1b.htm">Die HERRNSHEIMER #1 SCHNEIDER - weiter</a><br /><br /></dd>
      <dd class="col_0">Klick Hier f&uuml;r <a href="../einl/0_vorwort.htm">VORWORT und INHALTSVERZEICHNIS</a><br /><br /></dd>
      <dd class="col_0">Klick Hier f&uuml;r <a href="../../index.htm">Zacharias Sch&auml;mberg WELTSEITE</a><br /><br /></dd>
      <dd class="col_0">Klick Hier f&uuml;r <a href="http://familytreemaker.genealogy.com/users/s/c/h/James-D/index.html"> Zacharias Sch&auml;mberg STAMMBAUM</a><br />
      <br /><br /><br /><br /><br /></dd>
    <!-- THIS IS /dl TURNING OFF THE DEFINITION LISTS -->
    </dl>   
    <!-- THIS IS /div TURNING OFF THE MAIN PARAGRAPH CALLOUT "main-paragraph" -->
    </div>
    <!-- THIS IS /div TURNING OFF THE MAIN CONTENT CONTAINER "content-box-900px" -->
    </div>
    </body>
    </html>
    We need to use escape characters for HTML to interpret special characters. These can be easily found in the insert bar under text as follows
    Gramps

Maybe you are looking for