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

Similar Messages

  • Charting with Web Analysis

    I've got a combo bar / area chart built with Web Analysis which shows the vertical bars overlayed on top of the area graph. The problem is that the bars are really wide and I would like to make them a bit smaller so I can see a bit more of the area graph and I can't seem to figure out how to do this. I recall with previous versions of web analysis there was a property that you set which specified the amount of space between the bars but I can't seem to find anything like that.
    Is there a way to specify the width of the bars on a bar chart with Web Analysis?
    Thanks!

    Hi,
    pls. try to give admin user more rights (Provision to "Report Designer" or "BIPlus Administrator" - I dont know exactly which roles are available concerning BI Plus suite).
    Kind regards
    André

  • What is the right sdk api to work with webi reports in BOXI Release 4?

    Hello,
    I just read in the omg model for rebean (sdk for working with webi report documents) that all functions to access the report structur and layout are no longer availabe beginning with Release 4.
    Can anyone confirm, that this is the case?
    Are those functions moved to a different SDK component?
    Thanks in advance,
    Bernd
    Dokumentation about rebean _omd
    u2022 The object model shows many funtions , classes in red which means:
    Note: The Classes, Interfaces, and Methods marked in red are no longer functional from the SAP
    BusinessObjects Business Intelligence Platform 4.0 release onwards.
    u2022 Among those functions are all !! We need to analyze the report layout
    u2022 No longer supported: DocumentInstance.getDictionary() , DocumentInstance.getOpenDocumentInfo(), DocumentInstance.getResourceManager(), DocumentInstance.getStructure()
    u2022 Classes no longer supported: ReportElement, ReportDictionary, Query, QuerySorts, DataSourceObject(s), SQLDataProvider,QueryNode, DPExpression, QueryContainer, Link,
    u2022 Classes no longet supported: ReportBody, ReportContainer, ReportStructure, ReportBlock, Graph, *Table
    u2022 Classes no longer supported: Cell, PageHeaderFooter

    Thank you for the information srrachna !
    Well, the point with the report engine sdk is a surprise. What is the sense of new functionality when you cannot use it (spoken for the api processing), and in addition when the new functionality eliminate functionality which was available before in the sdk.
    In my view this cut is to hard. The .pdf speaks from deprecated, but the blog and the information in the report engine api speaks a different language. The functionality is not just deprecated but no longer available.
    Hope SAP will address that before relase 4 becomes GA in May 2011.

  • Links with special characters work on the web, but are broken in RSS feed

    Hi everyone,
    I've been searching the forum, but haven't found anything relevant.
    Here is my problem. Most embedded links on my blog posts work fine. However, sometimes I use links with embedded special characters. Here's an example link to a YouTube video:
    http://www.youtube.com/watch?v=ugiY9t6fzo4
    When I go to my blog on the web and click on the link, the link works fine. BUT, when I look at my RSS feed from the blog, the link gets transformed into:
    http://www.youtube.com/watch%253Fv%253DugiY9t6fzo4
    ... which doesn't work.
    Something (I presume iWeb?) replaces the "?v=" with "%253Fv%253D"
    Obviously, I get a lot of e-mail from my RSS subscribers telling me about broken links.
    What can I do? Does anyone else have this issue?

    I followed the topic concerning the Firefox photoalbum problem but I´m using Safari and the albums will not show up on the web !!!! I also exchanged the detailview and headercontrol *js which worked fine for opening the photoalbum on my harddisk with firefox. But when its uploaded to the server it won´t display and that in Safari!!!! On the published folder on my harddisk everything works fine
    www.voyage64.com
    just cklick on "photoalben" no album apears. Does anyone have the same problem with safari ???
    regards,
    David

  • 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

  • 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/

  • How can I change the color of chart in webi report

    Hi :
      I create one Webi report including one table and chart  In BO 4.0.
    The chart  display  the relationship between sales-amount and profit amount . I do not want to use the default color but want to specify the red color for sales-amount and yellow color for profit amount . How can I do it ??
    Thanks Very Much
    Emily MA

    Hi,
    You can change the color very easily. It's simple & straight forward which I found it couple of days back. (Sometimes simple things are hard to find :-p )
    Select the area in the Chart that you want to change color, then go to Format > Style > Background color. Now select the color that you want. In the attached picture, I have selected Yellow color for a piece of pie chart.

  • Scheduling Error occurred with WebI Reports on SAP BO Edge BI XI 3.1 STD

    Hello..
    I'm using SAP BO Edge BI XI 3.1 STD.
    When I schedule the webI Report on Infoview..
    Everytime, it failed..
    And setting the date for scheduling, it is needed to reset the data by calendar( ie. 2009. 07. 20.  -> 2009.07.20.)
    What is the reason of failing schedule in WebI report?
    I know it was a bug on BOE XI 3.1 and had fixed with FP 1.x.
    But SAP BO Edge BI XI 3.1 has no FP yet...
    How can I solve this?
    We must use the schedule on WebI reports for start production service on Aug...
    Please let me know...
    Regards..
    Edited by: Choi Min Il on Jul 21, 2009 9:18 AM

    Thans for reply...
    The error message is as follows..
    Object could not be scheduled within the specified time interval.
    Thanks...

  • Link from WEBI chart to WEBI report

    All, how can I link a WEBI chart (column) chart to an detail WEBI report. Appreciate any inputs.
    Thanks,
    Ann

    Hi Ann,
    You can use the chart bars as reportfilter (much like the dropdown box filter effect),
    It is actually implemented as an input control, so you can control a detail table below the chart by clicking on a chart bar.
    However hyperlink from the table is not possible in BI40 (yet).
    (Right click the table, Linking, Add element link).
    So you either have to use the data in the same report option, or use the hyperlink option from a table cell...
    (Right click the cell, Linking, Add hyperlink).
    As I noticed you are using BICS, before jumping to using dashboards (FKA excelsius), be aware that the BICS connectivity in there is still the version running on BW, so unlike a WebI report, you have to publish the dashboard in BW and access it via an SAP portal environment, you cannot run it directly from within BI launchpad (in BI41 this will change). So to link from the portal environment to the BI launchpad for the WebI document you would need some portal integration work too.
    Hope this helps,
    Marianne

  • Publication with WebI report including all transactions from last run

    Hi,
    using BOE XI R3 FixPack 4.
    I want to create a WebI report that should include all data newer than last run time for the publication.
    How do I get last run date for a publication or WebI report?

    Hai,
    Along with Java version you can also take of refreshing data properly.After modification remove everything from the report and again drag data from data tab into the report.

  • Dashboard with Webi Report link  - Cannot access external data

    Dear Gurus,
    I've a  dashboard with access to WEBI report for Language setting.
    All works fine for the group: Administrators.
    If I take the Users out of the Adminstrators group and assign them normal power user group, I get the message that the external data cannot be accessed. No Error # or so is displayed.
    Even if I grant the usergroup Full Control / Power User on the
    Universe,
    the Connection
    Dashboard itself,
    WEBI Application
    Webservices
    Still it does not work.
    As far as I can see is, that it can't be a Network (Firewall)-Problem, because it works for the memebers of the Adminstration groups - What else can it be?
    I've attached the screen shot for your reference
    Cannot find service name=WS_Lang_Pref or you do not have the rights to view this service.

    Hi Guys,
    This error is fixed by maintaining the security profile for
    "Web Service Query"
    Regards,
    -Ahmed Baseer

  • Calculations with Web Report results

    Hello, I'm just getting started with SAP BW and Web Reporting and that’s why I need some help. I have created a Web Report that shows the query results in a table. Now I want to make further calculations within the report. Therefore I have to access the results of the web report and I just don’t know how to do this. Maybe there are some javascript functions for that problem?

    A basic form of web report is to show the Bex report in Web table form, for that we assign the query to the table in the web table item.
    if further calculations need to be done using the already present keyfigures, then you can use the Calculated Key figure.
    Depending on the scenario you can also define the cell calculations, if you have structures both in the rows and columns.
    Refer to Web Table API to manipulate the cells of  the web table. This article using Web Table API could be helpful for you.
    Table interface doubt ?

  • Prompt issue with WebI Report on top of Bex

    Hello Experts,
    I have WebI report on top of Bex. I have Material Parameter on WebI which has materal key and text. When I select Material, It gets only Mateial Name not the key. We have some users they want to see both text and key.
    Any help would be highly appereicated.
    Thanks,
    Ravi

    HI,
    in the universe you have a dimension objects (blue objects) showing the description and a detail objects (green objects) showing the key.
    see here:
    /people/ingo.hilgefort/blog/2008/03/24/businessobjects-and-sap-part-5
    Ingo

  • Issue with webi report on BEx query

    Hi,
    I have created a universe on top of Bex query.  There is no issue in creating and exporting the universe.  But when I try to create a webi report out that BEx query, I am not able to see the values.  Say if I have a column called "Company"  I am getting the value as "All Company" and so on.  What will be the issue?
    But when a report is generated out of BEx analyser they are able to see the values properly.
    Same user credentials are used in both the places (Importing the query into universe, Connecting to BEx Analyser) .
    Thanks & Regards,
    Subbu S

    Hi Subbu,
    the universe will generate a L00 item and a L01 item. The L00 item shows the All member of the characteristic in the case of a flat list and the Top level nodes from a hierarchy. the L01 item should give you what you looking for.
    Ingo

  • Performance Issue with Webi report uses SAP BI Query as the data source

    Hello.
    I have created a Webi ad-hoc report which connects to a SAP BI query through BO OLAP universe.
    The layout of Webi is the exactly the same as the BI query.  There are filters in the Webi to restrict the number of data extraction, but even with data result of 5000 rows, it took about 30 seconds.
    If I execute the BI query with the same filter restriction, it tooks less than 10 seconds.
    It seems that large percentage of time is consumed at the MDX part.
    Is there any tuning method that could speed up the process time of MDX?
    Thank you.
    Justine
    Edited by: Justine Liu on Mar 18, 2009 6:59 AM

    Hi,
    please take a look here:
    [https://service.sap.com/sap/support/notes/1142664] (Look under related notes)
    It includes references to various performance improvements of the MDX interface. From what I saw there it is advisable to upgrade your SAP BI (7.0)  up to at least Support Package 21 (you are currently on SP 15).
    This may also be interesting for you: There is a new Fix Pack 1.4 coming out for BOBJ XI 3.1. Combined with the related SAP Enh.Pack (not sure about the version of this one) should also improve WebI performance. This fix pack is not yet officially released though but it should not take look.
    I recommend that you try the upgrade to Support Package 21 first.
    BTW it is also advisable to take a look in the results of your MDX query (e.g using the MDXTEST transaction). You should make sure that your query is indeed restricted as expected. Sometimes the results you see in SAP native reporting tools (e.g. BEx Analyzer) differ from those returned from the MDX component, depending on the way variables/restrictions where defined in the query designer. It is all about making sure that there is no apples/oranges comparison here.
    Regards,
    Stratos

Maybe you are looking for

  • View data in client B from client A in the same SID without a valid logon?

    Hi Folks We are planning on upgrading our 4.6C system to ERP 6.0, and are initialy considering having two clients in the same sandbox SID.  One would be for the developers to perform code remediation checks (client A), and one would contain a copy of

  • Session Timeouts and SmbServer

    Hi, When having iFS mapped to a network drive (via SMB), the SMB server is unable to recover from a timeout of the LibrarySession. The network drive then seems to be empty and doing a refresh within explorer doesn't help either. The only thing that h

  • Business Catalyst is not scroll

    Hello, Business Catalyst site when I upload to the server, and other widget features scrolling feature does not work. I have been getting  the same problem which i download to original themes from muse-theme.com in my pc, when I loaded Business Catal

  • How do I overcome error "files in use Reader" when downloading 10.1.4?

    How do I overcome an error "files in use Reader *" when attempting to download Reader 10.1.4? Reader 8 not in use, but is installed.  All I want to do is upgrade to 10.1.4.  Why do I get sudn an error anyway?

  • READ THIS FIRST: Check out the Developer Guide, other forums and Wikis

    The Portal Content Development forum is one of the most-active forums on SDN, and many, many experts read it and can answer your questions. Before posting, please check out the following sources of information:<ul><li><b><a href=http://help.sap.com/s