Xcelsius 4.5 issue using QAAWS and Tomcat

Hello,
We have this issue where the dashboards do not display any data when opened. They are set to refresh on open.
Only after the Tomcat webserver is restarted, then do they display data. But this keeps happenning often and intermitently.
We do not get any error message, just a blank dashbaord. We are using QAAWS for connection.
Any ideas why and resolution?
Thanks

Can this bug be addressed for 4.5?  Unfortunately, the changes I talked about above (to the TRUNC/TEXT order of operations) got around some calculation errors but not others, as more testing has shown.  For example,
Scenario #1
1.1. Multiply 3.00 * 3.30 = 9.900
1.2. Convert 9.900 to text
1.3. Truncate 9.900 to 9.90 <--- SUCCESS: Excel sees 9.90, Xcelsius sees 9.90
Scenario #2
2.1. Multiply 3.00 * 1.70 = 5.100
2.2. Convert 5.100 to text
2.3. Truncate 5.100 to 5.10 <--- ERROR: Excel sees 5.10, Xcelsius sees 5.09
I'm out of ideas at the moment and am beginning to worry.

Similar Messages

  • Data refresh problem - QaaWS and Tomcat cache

    Hi Experts,
    I have a problem with data refreshing in Xcelsius 2008 dashboard when I use QaaWS.
    System is: BO XI 3.1 on the Win2008 server.
    When data are changing in the database InfoView documents show it immediately, but into the Xcelsius dashboards new data not coming.
    In the dashboards I use auto refresh, and Refresh button too... It doesn't help.
    New data are appearing just after restarting of Tomcat.
    Maybe Tomcat is caching data...?
    Do somebody have similar issue? Could you suggest me something to do?
    Thx,
    János

    Hi Janos,
    Tomcat has cache which the default time is 60 seconds.
    You can change the cache time when you create QaaWS wsdl.
    If you do NOT want the cache, you can
    1. locate to: ${BOE Install Path}\Business Objects\Tomcat55\webapps\dswsbobje\WEB-INF\classes
    2. Open dsws.properties
    3. Find the property qaaws.cache_dpresult.optim= and set it to false.
    4. Re-start tomcat.
    Hope this can help!

  • BiBeans's internationalization issue in Weblogic and Tomcat

    Dear,
    It seems that bibeans components such as Toolbar, Crosstab etc in my application can display localized labels only in OC4J, but when I depoly the application into the Tomcat or Weblogic, the labels are only displayed in English, even thought I set the locale of such compenents to China(for example, I write such code: crosstab.setLocale(Locale.China)). Can you tell me how to solve this problem? Thanks in advance.

    I think this is a question for either Tomcat support or BEA, as you correctly point out using Oracle's OC4J environment the application works correctly. Therefore, only Tomcat Support or BEA can answer why this is occuring as I presume this would affect any JSP application not just BI Beans?
    I have searched our support database and cannot find any related issues in this area. So you might also want to consider opening a TAR with Oracle Support.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Performance issue using webelements and crystal

    We have 2 reports named, u201CDAMAGE_REPORTSu201D AND u201CTDI_CHARTu201D
    DAMAGE_REPORTS
    There are 13 dynamic or static Prompts created using Webelements .After clicking on submit button(using
    webelement)  by selecting the prompt values, TDI_CHART report will get opened below the u201CDAMAGE_REPORTSu201D report.
    TDI_CHART
    TDI_CHART created using free-hand SQL which contains 2 commands
            1. Command-SQL is created based on two categories.
                  Trend -Trend By Month ,Trend By Quarter,Trend By Week
                   Non-Trend- Current Month ,Current Year to Date,Last Year to Date,Current Quarter,Last
                                 Quarter,Current Week,Last Week,Last Month,Last Year Total
                 Charts,Cross-tabs and table information is coming from this Query
           2.Image count-contains number of images information based on the prompt selection and it acts as a 
                  URL(opendocument) in the report to open TDI_THUMBNAIL report to display the thumbnail images.
    Report information
    TDI_CHART Report contains 8 charts,4 cross-tabs, summary information showing in table format(Detail
           section) and2 open document links(1.For image count 2.Export to excel(which shows the detail information
            of summary table)
    Description
    If the selection is Non-Trend Value from the Time period parameter , corresponding Chart will be shown along   with table information.(Table information is only required for Non-Trend Values).
    If the Selection is Trend Value from the Time period parameter,the corresponding cross tab and chart will be shown and others will get suppressed.
    Problem Area
    After the prompt selection from u201CDamage_Reportsu201D, TDI_CHART report is taking around 1min 30 sec to show the chart and table or cross-tab.
    In Database when we execute the above queries, it comes in 12 secs but whereas in reports it takes 1min 30 sec,can you guide us some steps to bring down this time?

    hello Mufiza,
    copy the url created at the step "After the prompt selection from u201CDamage_Reports".
    paste this url into a new browser window and press enter.
    what is the time to return this report?...this time should also be 1.5 minutes.
    it sounds like you are using 2 commands in the same report. this will often cause performance issues, just like linking two stored procedures together or linking two disparate datasources together.
    this would not be an issue related to webelements but related to the design of your target report.
    jw

  • Character encoding problem using XSLT and Tomcat on Linux

    Hi,
    I have an application running on a Tomcat 4.1.18 application server that applies XSLT transformations to DOM objects using standard calls to javax.xml.transform API. The JDK is J2SE 1.4.1_01.
    It is all OK while running on a development enviroment (which is Windows NT 4.0 work station), but when I put it in the production enviroment (which is a red hat linux 8.0), it comes up with some kind of encoding problem: the extended characters (in spanish) are not shown as they should.
    The XSL stylesheets are using the ISO-8859-1 encoding, but I have also tried with UTF-8.
    These stylesheets are dynamicly generated from a JSP:
    // opens a connection to a JSP that generates the XSL
    URLConnection urlConn = (new URL( xxxxxx )).openConnection();
    Reader readerJsp = new BufferedReader(new InputStreamReader( urlConn.getInputStream() ));
    // Gets the object that represents the XSL
    Templates translet = tFactory.newTemplates( new StreamSource( readerJsp ));
    Transformer transformer = translet.newTransformer();
    // applies transformations
    // the output is sent to the HttpServletResponse's outputStream object
    transformer.transform(myDOMObject, new StreamResult(response.getOutputStream()) );Any help would be appreciated.

    Probably you need to set your LANG OS especific environment variable to spanish.
    Try adding this line:
    export LANG=es_ES
    to your tomcat/bin/catalina.sh, and restart tomcat.
    It should look like this:
    # OS specific support.  $var _must_ be set to either true or false.
    cygwin=false
    case "`uname`" in
    CYGWIN*) cygwin=true;;
    esac
    export LANG=es_ES
    # resolve links - $0 may be a softlink
    PRG="$0"
    .(BTW, keep using ISO-8859-1 encoding for your XSL)
    HTH
    Un Saludo!

  • Date Prompts Issue using Calender and Presentation Variables

    Hi All,
    This is what the requirement is...
    I need to create a two prompts (from_date and to_date) on a date column so that I can filter the data using a between condition. This is how I am doing
    I have created two prompts (edited the formula) and passing the values to two presentation variables var_from and var_to. And in the report I am limiting the request on the using between operartor for both the presentation variable. Everything is working fine but the issue is that I need to display var_from and var_to in my report also.
    I am referencing both the variables as '@{var_from}' and '@{var_to}' but I am getting both the columns as blank. I am really not sure why I am getting blank values for both these columns only when I am able to filter my report successfully on the basis of date values in the prompts ...
    Just to metion ..in my database I have values in the format m/d/yyyy only. Hence I am able to use the calender successfully
    Any help on this would be much appreciated...
    Thanks
    -Ronny

    Ronny,
    Are you seeing blanks in answers ? Id expect this, but on the dashboard, when you set the filters , you should see the values coming through?
    You can extend the syntax of the pres variable and provide a default value, so when working in answers you can see what it looks like,
    something like @{var_from}{'01-Jan-2010'}
    Also you can reference the variables in the title, subtitle or narrative views if you wish.

  • Reconcillation with goods issue using 351 and goods receipt using 101

    my clients create sto to a supplying plant and goods issue is done from the supplying plant against the sto using mvt 351 to the receiving plant and the receiving plant does migo using 101 to receive the material.The issue is that they want to be able to reconcile in the sense that to actually know the 101 that has been done against the 351.

    As we know the 351 and 101 both movement types are happened against purchase order,
    And when 351 and 101 movement type happens against the Purchase order, the all information are stored in table EKBE. You can look up in EKBE table to compare movement type 351 and 101 movement type for the purchase order number.
    Regards
    Dev

  • Very Odd Issue Using Mail and Comcast

    I have been unable to send email from my Comcast email account in Apple Mail. It shows emails as having been sent fine, but they don't arrive at the other persons mailbox. I have tried sending test emails to myself, to no avail. I tried trashing the preference file, which cleared up the issue, only for it to return several hour (or even minutes) later. This issue is particularly annoying because one would never know it exists. All emails sent from this account appear to send fine, with no errors being reported, but never are sent. I can send emails fine from my gmail account using Apple Mail, and for experimental purposes I tried Thunderbird, which worked fine. The SMTP server is clearly not the issue. I tried other servers, including the local server, using RapidoSMTP, but still, the same issue. Just a note: I can recieve emails on that account, but not send them. My installed plugins for Mail are: AttachmentScanner, MailFollowup, and Growl Mail. If anyone can offer any tips on resolving this weird issue, please share them.

    If Mail put the message in Sent, that means the outgoing (SMTP) server told Mail that the message would be delivered. If the message never reached its destination, it could be because the SMTP server didn’t fulfill its promise or because the message was filtered out by either the recipient’s incoming mail server or the recipient’s mail client for some (probably spam-related) reason.
    Check that your System Preferences > Date & Time settings are correct. An invalid timestamp in the message headers could be the reason one of the servers involved is rejecting those messages.
    It’s strange that the problem happens with Mail, but not with other mail clients such as Thunderbird, though. I can only guess there is something about the way the messages are composed/encoded when you use Mail that causes them to be considered spam at some point. If you compose those messages as Rich Text, try composing them as Plain Text instead.

  • Performance issue using WebView and OpenLayers

    Hi Team,
    i am running javafx 2.2 from jdk7u21.
    openlayers version used is 2.12
    when i am trying to add a huge number of vectors to a vector layer, the CPU usage goes high and nothing gets displayed.
    Most of the CPU usage is done by com.sun.javafx.sg.prism.NGWebView.update()
    it works well till around 4K vectors, but goes for a toss beyond that.
    OpenLayers Code is as follows.
    vector layer Definition
    ==============
    var vector1= new OpenLayers.Layer.Vector("Drivers",{
    styleMap: new OpenLayers.StyleMap({
    "default": new OpenLayers.Style(OpenLayers.Util.applyDefaults({
    pointRadius: 3,
    fillColor : "blue",
    graphicName : "circle",
    fillOpacity : 1
    }, OpenLayers.Feature.Vector.style["default"])),
    "select": new OpenLayers.Style({
    externalGraphic: "${select_externalGraphic}"
    vector1.events.on({
    "featureselected": function(e) {
    //TODO: on Selection
    app.printOnConsole("From Vector Event>>"+e.feature.attributes.name);
    app.printOnConsole("From Vector Event"+Object.toJSON(e.feature.attributes));
    "featureunselected": function(e) {
    //TODO: on Deslect:
    Adding the vector code
    ===============
    var mymarker = new OpenLayers.Feature.Vector(
    new OpenLayers.Geometry.Point(LON,LAT),{
    default_externalGraphic: 'triangle_8.png',
    select_externalGraphic: 'triangle_8.png',
    rat : jsonObj.rat
    mylayer.addFeatures([mymarker]);
    Please suggest if there is a way i can fine tune my code to display the vectors.

    If running under a windows make sure you use a 32 bit java runtime (64 bit java runtimes on windows do not have a JavaScript jit compiler and are many times slower).
    Try java 8, it has many performance improvements.
    https://jdk8.java.net/download.html
    Use code tags
    https://forums.oracle.com/forums/ann.jspa?annID=1622

  • HTTPService issue on FireFox and Tomcat

    I have created very simple test :
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="100%" height="100%">
    <mx:Script><![CDATA[
    import mx.rpc.http.HTTPService;
    [Bindable]
    public var srv:HTTPService;
    ]]></mx:Script>
    <mx:Label text="Is it working?" />
    </mx:Application>
    This application is rendered by tomcat here :
    http://jc.studiogdo.com (you can
    test)
    As the HTTPService is declared, you can see that nothing is
    rendered!!!! On a local machine (tomcat running on my localhost)
    then it works on IE. On real server like this example nothing
    works!!!
    useProxy is false, so no need for a crossdomain.xml... Where
    is the error????

    The issue is that the Flex Builder2 default wrapper is
    wrong...

  • Internet Connection Issues using BEFW11S4 and Verizon DSL

    I'm trying to get my son's wireless router running on our home network.  The PC (WXP) works find when directly connected to the DSL modem (client IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    When I install the BEFW11S4, I can connect to the router, reset factory defaults, release and renew IP; but the client times out when accessing the internet.
    The IP info for the router is identical to that which I see on the PC when directly connected (IP: 192.168.1.46, DG: 192.168.1.1, DNS server 192.168.1.1, NetMask: 255.255.255.0)
    I tried:
    - Easy_LinkConnect - It fails when trying to access the internet. 
    I've tried pinging from my client to known good IPs, that fails
    Reset to factory defaults
    FW upgrades
    - Is there a test untility on the router to test the WAN connection?
    - Could there be a problem with the LinkSysy router IP (192.168.1.1) being the same as the WAN DG (192.168.1.1)? 
    Thanks in advance, Mike

    Here's the latest update on the DSL/LinkSys saga. As it turns out, it had nothing to do with conflicting IPs. After peaking and poking for several days, I finally called verizon tech support. The problem was that the DSL modem (Westell 6100) needs to be in bridge mode if you're using a Linksys router (I suspect the 6100 assumes a sinle end nodes on its LAN side). However once the 6100 is in bridge mode, PPP authentication (which is done by Westell when in the router when in PPPoE) now needs to be done by all the PC's on the home network. Is there a way to have the LinkSys authenticate the PPP? Thx in advance

  • Home Wifi Network Issue using Airport and 2 BT Hub...

    I'm having problems getting my home network set up without IP conflicts.  Any advice much appreciated...
    Here's what I've currently got:
    BT Broadband Unlimted
    Hub 2.0 connected to broadband line - wireless network switched off
    Apple Airport Time Capsule connected to Hub 2.0 by WAN cable (Airport running in Bridge mode)
    Various Apple devices (MBP, iMac, iPhones, iPads, iPod), PS3 and Sony Surround Sound connected to Airport with wifi.
    Wifi extender connected to Airport by wifi (obviously) for upstairs - PS3 and occassionally MBP connected to that)
    Ethernet cable from Airport to a Hub 1.5 in the Garden Office with MBP and HP Printer then connected to Hub 1.5 with wifi.
    HDD connected to Airport with USB cable.
    Everything was working fine until I ran the ethernet cable to the office and connected the Hub 1.5.  It worked fine in the office, wifi connected, I could see the internet and the Airport and the connected HDD.
    However, at this point, the iMac back in the house, which connects to the Airport wifi network, sometimes connects to the internet, sometimes doesn't.  It connected to the Wifi fine, just won't connect to the Internet. It was stopping at the Hub2.0 "Default Gateway" (according to traceroute).  Switching wifi networks on the iMac (e.g. Airport 2.5Ghz to Airport 5GHz, or Airport to FON or Airport to the Office Wifi) fixes the internet connection problem, until next time I try to connect.
    This only affects the iMac.  The MBPs, iPhones etc have no problems connecting to wither wifi or the Internet...
    I figured it must be an IP addressing problem due to the Hub1.5 conflicting with the IP address range configured for the Hub2.0, so I tried to re-configure this on the Hub1.5 in the Office.  
    However, to get to the Hub Manager, I had to disconnect the Ehternet cable (otherwise it just went to the Hub2.0 Hub Manager).  Once I did this and reset the Hub1.5 to factory settings, I could see the Hub1.5 Manager.  However, if I click on Advanced and enter the password (after restting it with the SN) I can't see any of the advances menu options in the left hand panel (e.g. IP Addresses).  So I can't change the IP address range.
    Any ideas how I can get to see the IP Address options on the Hub1.5?
    I also tried setting a static IP address on the iMAC, but it won't let me - just says IP address already in use when I try to change it to one in the range set on the Hub2.
    Worse thing is, now that I've reset the Hub1.5, the Internet connection keeps dropping on that as well now.  It works fine for a few minutes then drops and I have to turn wifi off and on again, or disconnect and reconnect the ethernet cable to get the Internet to connect again, then it drops after a few minutes.
    So, I've gone from the iMac not working to the iMac and the office hub1.5 not working properly, and all I've really done is reset the hub1.5 to factory settings...
    Shall I just get rid of the 1.5 and buy a different wifi router for the office?
    Should I be able to change the IP address range on the 1.5?
    Any other ideas?
    Any help much appreciated. Thanks in advance.

    Have you tried running the TC not in bridge mode?
    In airport utility, instead of selecting bridge mode, select share a public ip address. You will get an advisory warning from the TC but just opt to ignore it.
    This way all of the DHCP is handled by the TC and the HH1.5 and none by the HH2.
    Otherwise a replacement for the HH1.5 might be called for - perhaps and airport extreme.

  • Performance Issue using min() and max() in one SQL statement

    I have a simple query that selects min() and max() from one column in a table in one sql statment.
    The table has about 9 Million rows and the selected column has a non unique index. The query takes 10 secs. When i select min() and max() in separate statements, each takes only 10 msecs:
    This statement takes 10 secs:
    select min(date_key) , max(date_key)
    from CAPS_KPIC_BG_Fact_0_A
    where date_key != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD'))
    This statement takes 10 msecs:
    select min(date_key)
    from MYTABLE
    where date_key != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD'))
    union all
    select max(date_key) from MYTABLE
    Because the first statement is part of an autmatic generated SQL of an application, i can't change it and i have to optimize the data model. How can i speed up the first statement?

    I've ran similar query on a table that has 10 milliion rows, with an index on the date column
    This is what I have found:
    SQL> set timing on
      1  SELECT MIN(ID_DATE) MIN_DATE, MAX(ID_DATE) MAX_DATE
      2      FROM MY_DATE
      3*     WHERE ID_DATE != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD'))
    SQL> /
    MIN_DATE  MAX_DATE
    03-APR-76 06-JAN-02
    real: 43383
    SQL> SELECT MIN(ID_DATE) MIN_DATE FROM MY_DATE
      2   WHERE ID_DATE != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD'))
      3  UNION ALL
      4  SELECT MAX(ID_DATE) MAX_DATE FROM MY_DATE
      5   WHERE ID_DATE != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD'))
      6  /
    MIN_DATE
    03-APR-76
    06-JAN-02
    real: 20
    SQL> SELECT MIN_DATE, MAX_DATE FROM
      2  (SELECT MAX(ID_DATE) MAX_DATE FROM MY_DATE
      3  WHERE ID_DATE != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD')) ) A,
      4  (SELECT MIN(ID_DATE) MIN_DATE FROM MY_DATE
      5  WHERE ID_DATE != TO_DATE(('1900-1-1' ),( 'YYYY-MM-DD')) ) B
      6  /
    MIN_DATE  MAX_DATE
    03-APR-76 06-JAN-02
    real: 10
    SQL> My conculsion, there is nothing you can do to the tables that will improve that particular statement.
    Why can't you modify the application?

  • Problems tracing the requests in console using struts and tomcat

    Hello everybody,
    i m new to struts, actually i want to know about how to track the processing done by controller of struts when a request is send to the controller.
    I m using eclipse as my IDE.
    Guys have u got what i mean to say,,
    i want to track the things in the console.
    I have heard abt log4j, but really dont know how to use.
    if anybody can give some useful info then it will be grt for me..
    Thanks in advance.

    Wht settings have u done in DTP?
    under upadte tab??

  • Problem launching a jsp page with eclipse and tomcat

    Hi,
    I have just started using eclipse and tomcat for creating dynamic web pages. I tried to launch a jsp page after starting the tomcat server with the URL: http://locahost:8080/HelloWorld/, an error page was displayed as below:
    HTTP Status 404 -/
    type Status report
    message /_
    description The requested resource (-) is not available
    Apache Tomcat/5.5.17
    I didn't get any error at the console and when i just typed http://localhost, a pop up menu saying that the connection was refused when attempting to contact localhost.
    I'm not sure what is the problem here. Could it be the permssion to the localhost is not granted by the system as the eclipse IDE is running using linux?
    Hope someone can help.
    Thanks.

    http://www-128.ibm.com/developerworks/library/os-ectom/

Maybe you are looking for

  • Delivery costs in net value

    Dear experts, I have created a calculation scheme with which I want to inlude freight costs in the net value of a purchase order. When creating a purchase order (ME21N), I can already see the freight costs in the net subtotal. But the net value of th

  • 9 i Forms  Checkboxes on the same canvas

    Hi Everyone, I need to show exceptions as checkboxes on the same canvas where i found and displayed the exceptions. I have four fields and base on two of those fields which is a range of #. A begin and end. I take that range( Beg and end) and show a

  • Java.lang.NoSuchMethodError: com.sap.aii.af.lib.util.ejb.FastEjbFactory

    Hi, only for register, when i tested the communication channel, the test failed and this error  "java.lang.NoSuchMethodError: com.sap.aii.af.lib.util.ejb.FastEjbFactory.createEjbInstance" appear in communication channel monitoring (RWB). I Found the

  • Over delivery and under delivery tolarance limit.

    Hi all, I want to configure the over delivery and under delivery tolerance limit fix i.e. 5%. Any user can give tolerance up to 5% and not more than that. Please help me Regards, anant

  • Data doubler, where to put the SSD

    Hi, I'm planning to buy a Data Doubler for my Macbook, is which bay should I put the SSD? I have heard that it is best to leave the HDD in its original place, because the vibration could damage the computer in the data doubler, but I have also heard