OBIEE 10.1.3.2 version : 404 error when presentation services started

Hi ,
Installed OBIEE 10.1.3.2 in windows 7 in compatilibily mode
And the BI server and presentation services started.
then started the ocj4 instance and then started the presentation services but it resulted in a 404 error webpage instead of answers.
Page referred is :
http://user-pc:9704/analytics
Normally its a localhost is what I see but this is different.
Please guide me in identifying what went wrong
Thanks,
Karthik M

I have the identical error message.
It is definitely a bug. If anyone can prove me wrong, I'd be interested to hear.
It comes up under certain scenarios.
I have four metrics:
"Sales" from sales table. Normal Summing Aggregation.
"Markdown" from markdown table. Normal Summing Aggregation.
"Test Metric" from inventory table. Normal Summing Aggregation.
"Stock on Hand" from inventory table. Dimensional summing. LAST for time. Sum for all Other dimensions. (You don't add up the stock on hand for each day during the month, you look at your final position)
I can do anything with the first three metrics and never see the error message.
If I try to create a report:
Product, Time, Stock on Hand, Sales, Markdown
Then I see the error message.
I can force the error to disapear by doing either of the following:
A) If I move the Stock on Hand to the right so the report is:
Product, Time, Sales, Markdown, Stock on Hand
B) If I put "Test metric" anywhere on the report, then I no longer see the error message.
There is a bug with the LAST aggregation function. I think the LAST time function would be a similiar sort of logic to YTD, AGO, etc... as noted above.
Given from what I've seen, the only temporary workaround seems to be to add an extra metric to the report or to move certain metrics to the right side.

Similar Messages

  • 404 error when hit submit from php file for requested path E:\vise\jqproject\web\errorpages\403_error.htm

    I have a php script that when I hit submit, it submits the form to another php file with a get command.  This worked about a month ago, but this month it's having issues.  This is what the relevant code looks like in the table php file. Running
    table.php shows the table in the browser and has 404 errors when I hit submit.
    table.php:
        <body>  
            <h1> Visual Evaluation Entry Table </h1>
            <form method="get" action="visEupload.php">
        <table id="bigTable" border="1">
            <thead>
             <tr>
               <!--<th id="bandY" class="col3">Bands @263mm Y</th><th id="bandM" class="col3">Bands @263mm M</th><th id="bandC" class="col3">Bands
    @263mm C</th><th id="bandK" class="col3">Bands @263mm K</th><th id="Comments" class="col3">Comments</th>-->
             <th id="bandY" class="col3">Bands @263mm Y</th><th id="bandM" class="col3">Bands @263mm M</th><th id="bandC" class="col3">Bands
    @263mm C</th><th id="bandK" class="col3">Bands @263mm K</th><th id="Comments" class="col3">Comments</th>
             </tr>
            </thead>
            <tbody>
                <tr name="MCBands" id="9214">
                    <!--<td><input name="Yevaluation" ></td>  //Row 0 Column 1-->
                    <!--<td><input name="Mevaluation" ></td>  //Row 0 Column 2-->
                    <!--<td><input name="Cevaluation" ></td>  //Row 0 Column 3-->
                    <!--<td><input name="Kevaluation" ></td>  //Row 0 Column 4-->
                    <!--<td><input name="comment" ></td>  //Row 0 Column 4-->
                    <td><input name="bandY" ></td>  <!--//Row 0 Column 1-->
                    <td><input name="bandM" ></td> <!-- //Row 0 Column 2-->
                    <td><input name="bandC" ></td> <!-- //Row 0 Column 3-->
                    <td><input name="bandK" ></td><!--  //Row 0 Column 4-->
                    <td><input name="comment" ></td>
                </tr>
            </tbody>
        </table>
          <input id="submit" type="submit" class="list" name="submit" value="Submit To Database" >  
           <!--maybe move all php part to other file-->
           </form>
        </body>
    The server is mapped so when we run it off of the server, we use the server ip address and my file name and skip the rest of the path, which works fine with the table.php file, so that mapping appears correct.  When I run it off of the server (from my
    desk) and hit submit it gives me a 404 file or directory not found.  When I run it locally on the server, it's saying it can't find the file name, but it says the requested url is `http://localhost:80/errorpages/403_error.html.`  Physical path: E:\vise\jqproject\web\errorpages\403_error.html. 
    The error message says the notification is from the MapRequestHandler of Module IIS Web Core. I'm not sure why the requested url/path isn't referring to visEupload.php.
    (Running on the server) When I change the action in the table.php get to include the IP address, it's behaving weirdly:
    Module IIS Web Core Notification MapRequestHandler Handler PHP53_via_FastCGI, Requested URL `
        http://localhost:80/13.141.xxx.xx/visEupload.php?bandy=xx&bandM=xx&bandc=hj&bandk=xx&comment=xx&submit=submit+to+database
    physical path shows as E:\visE\jqproject\web\13.141.xxx.xx\visEupload.php
    Login Method and user Anonymous.
    When I change the url to just be
        localhost/viseUpload.php
    it's getting HTTP Error 404 not found.  Any ideas why it's not finding the visEupload.php file?  It has the correct .php extension.  In file properties it's a type php file with name visEupload.php.  
    I took a look at
    [404 error][1] but I see my "allowUnlisted="true" in applicationHost.config. I'm not using sitefinity, though. 
    I'm not sure if something got over-written when we did a server windows update.  
    I know we were having a problem with get and post a couple months ago and we had to add them to the IIS Manager Handler Mappings somewhere, but don't remember where we added them to check.  Since I tried directly accessing the visEupload.php without any
    get (and commented out get code in the file) it should have worked if that was the issue.
    We are running server 2008 R2 and I'm not sure which version of IIS it is.
    In case it matters, this is the contents of the visEupload.php:
        <!DOCTYPE html>
        <html lang="en" >
        <head>
        <meta charset="utf-8" />
            <title>Big Table</title>
        </head>
        <body>
        <?php
            require_once( "../classes/class.OLAPdatabase.php");
            require_once( "../common/Session.php");
            $OLAPdb = new OLAPdatabase;
              handling of the get part is commented out
           ?>
        </body>
    All I can think of is that when I access visEupload.php it's running from the get/action in table.php.  This might be a different user running in the system.  I tried changing visEupload.php file properties to have full control for IUSR and Internet
    Guest Account.  It already has full control for System, and me.  Users have read & exeture and read permissions. Or maybe it's something that has to do with how the directory is mapped out.  I'm not sure what could be affecting this, and
    why the message said it can't find the path to 403_error.html.
      [1]: http://www.sitefinity.com/developer-network/forums/bugs-issues-/server-error-404---file-or-directory-not-found
    Michele Cleary

    Hello,
    for IIS question better ask in http://forums.iis.net/
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • 404 error when downloading Oracle SQL Developer 2.1 (2.1.0.63.73) for Mac

    Greetings,
    I'm getting a 404 error when I try to download the Mac OS X version of Oracle SQL Developer. The download page is at
    http://www.oracle.com/technology/software/products/sql/index.html
    And it links to the Mac version at:
    http://download.oracle.com/otn/java/sqldeveloper/sqldeveloper-2.1.0.63.73-macosx.tar.gz
    Which doesn't exist.
    Is this the correct forum to report this problem?
    Thanks
    Mick

    I don't know what to say: I went to this link
    http://www.oracle.com/technology/products/database/sql_developer/index.html
    Clicked on Download in the upper right corner, re-accepted the whatever-they-wanted-me-to-accept and then the OSX download suddenly worked. Give it a spin and see if a circuit like that works for you.
    Good luck!

  • 404 error when publishing to FTP server.

    I'm getting the 404 error when publishing my iWeb site to my FTP server.  Please help.
    It says I have a good connection and publishes but then I get the error when I "Click to go to the site."  I've read where I have to upload the file to my server but with the file index_html.  Do I rename my iWeb file, domain, to index_html?

    I'm getting the 404 error when publishing my iWeb site to my FTP server.  Please help.
    It says I have a good connection and publishes but then I get the error when I "Click to go to the site."
    A 404 errors means the file is not on the server.
    Checking the connection is just testing the FTP connection.
    I've read where I have to upload the file to my server but with the file index_html.  Do I rename my iWeb file, domain, to index_html?
    Do I rename my iWeb file, domain, to index_html?
    No, you don't. The domain file is where iWeb  stores its assets. It stays on your computer. It has no meaning outside it. iWeb publishes the index.html file and all the other files.
    Read this : The concept of iWeb Sites
    So if your pages do not load, check for their presence on the server.

  • I am getting a 404 error when trying to access any search link using google, I can get to a website if I enter the url directly.  I have cleared my history, emptied the cache and reset safari.

    I keep getting a 404 error when trying to access any search link using google, I can get to a website by directly using the URL.  I have cleared history, empited the cache and reset safari.  Any suggestions.

    Right. If you are using delegated privs and sudo, make sure that sudo is configured to pass on the PERL5LIB and ORACLE_HOME environment variables at least.

  • 404 Error when loading IWeb page

    Greetings once again!
    I have been using the IWeb program for setting up my business in nature photograhy and have passed out business cards that say web.mac.com/debo0063/iweb and people have been telling me they get 404 errors when they look up my site. I get that message sometimes at home but not most of the time. This is a problem because obviously I want people to come and visit my site. However, I don't know what to tell them about this either. Can anyone help me?
    Thanks in advance for your help! It is greatly appreciated.
    Sincerely, Dustin
    Powerbook 17" Wide Screen   Mac OS X (10.4.4)   IWeb questions

    Tom, thanks for the information. I typed in my username incorrectly. It is as you stated--debo0062. And, thanks for the other information! I will let people know that it is a capital W on iWeb. Of course, I get a chance to figure this out after I get more business cards printed. Oh, well! That just gives me a reason to talk to them longer.
    Dustin
    I have been using the IWeb program for setting up
    my
    business in nature photograhy and have passed out
    business cards that say web.mac.com/debo0063/iweb
    and
    people have been telling me they get 404 errors
    when
    they look up my site.
    If you really printed them with "iweb" at the end,
    that could be the problem. It has to to "iWeb."
    Also your username seems to be debo0062, not
    debo0063.
    http://web.mac.com/debo0062/iWeb
    seems to work ok.

  • I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    I need to download Runtime Engine 7.1, but I get a 404 error when I try to download from the website.

    Are you getting it from this link (assuming Windows): http://joule.ni.com/nidu/cds/view/p/id/703/lang/en? The download link on that page seems to work just fine.

  • I am getting a 404 error when I click the link to request my upgrade.

    I am getting a 404 error when I click the link to request my Mountain Lion upgrade. I have a brand new MacBook Pro so I don't understand why I'm getting this error.

    Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it continues to fail try using a different browser.

  • Why am I getting the 404 error when on pinterest?

    Why am I getting the 404 error when on pinterest?  This is happening on my iMac and macbook.
    I have tried to clear my history, tried in safari and in firefox, enabled and disabled Javascript, and allowed 3rd party sites.
    Please help!!

    No you are not alone. I tried to create an apple ID and then access the app store and itunes and got the same error code. Spoke with tech support for over 45 minutes and we tried everything. Tech support seemed to think that it had something to do with credit card registration. Suggested that I use a different credit card. I modified my account settings with a different card and still had the same errors. At this time I have no confidence that Apple has any idea what the problem is.

  • Receive 404 error when running new application

    I'm using JDeveloper 11.1.1.6.0.
    I am encountering a 404 error when I try running the "Portal" project of a brand new WebCenter Portal Framework application. Previously I was able to run right after the project was created, and a college of mine is able to run right after the new application wizard has compelted, following the same steps that I do. I do not recieve any errors in the weblogic console window however and am at a loss for what is going on. I am able to run applications that I previously had created, but new ones fail. As far as I am aware, no configuration has changed either.
    The steps I am taking:
    -Create new application
    -Name and set default package
    -Set the Applicaiton Template to "WebCenter Portal - Framework Application"
    -hit next
    -Leave on defaults for project 1 name. hit next
    -Leave on defaults for Project 1 Java Settings. hit next
    -Ensure "Configure the application with standard Portal features" is checked on Project1 WebCenter settings. hit next
    -Leave on defaults for Project 2 name. Hit finish
    -Right click on the "Portal" project. Select Run
    -When the browser window opens, I receive the 404 error instead of the default home page with the autogenerated template.
    Does anyone have any idea what might be going on, or any ideas of what I can try to fix the issue?

    Another college of mine recommended checking for stalled deployments on the integrated weblogic server and after removing 4 deployments that were never actually undeployed (despite JDeveloper claiming that they were) the 404 error went away and things started working again.

  • I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix this when it just stopped working today?

    I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix the problem when it failed just today?

    If you uploaded to MobileMe, it's no longer available. Apple's closed MobileMe and stopped offering web hosting.
    (116252)

  • I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix this?

    I get a 404 error when accessing my website which is supported by Apple.  The message says that the server can't find my page.  My browser is Safari.  How can I fix this?

    If you uploaded to MobileMe, it's no longer available. Apple's closed MobileMe and stopped offering web hosting.
    (116252)

  • 404 Errors When Accessing My Themes

    Kuler is returning a 404 error when I try to access my themes on any browser. This was reported in 2013 and in Oct. 2013 Adobe said they were aware and working to fix it. What's going on with fix? Thank you.

    It looks like your theme is marked as "private"--which means the link will not work.  If you mark the theme as "public" then you can share the link without seeing a 404. Click on the "Private" link to change the theme from private to public. 

  • Dns error when trying to start ssgd 4.4

    Hi,
    I get the following error when trying to start a fresh install of SSGD 4.4 on sun solaris 10 sparc machine
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    2008/05/12 18:34:43.082 (pid 27580) server/common/fatalerror #1210597482966
    Sun Secure Global Desktop Software (4.4) FATAL ERROR:
    The configured DNS name of the server (unknown) couldn't be
    resolved in DNS.
    The server can't start.
    Check your DNS configuration.
    I tried changing the servername in the httpd.conf file but still get the above errors. What could be the possibel reasons for this error.
    Thanks,

    Hi,
    I changed the peerdns name to "penguin.everett.nl"
    Cbash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#
    However, when I now start the tarantella I get the following error :
    bash-3.00# /opt/tarantella/bin/tarantella stop
    Secure Global Desktop services are not currently running.
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:62)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:82)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:386)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:401)
    at com.sco.jndi.toolkit.provider.ToolkitContext.nameNotFound(ToolkitContext.java:436)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:62)
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:39)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:83)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:68)
    at com.sco.jndi.provider.file.FileContext.child(FileContext.java:612)
    at com.sco.jndi.provider.file.FileContext.f_lookupLink(FileContext.java:889)
    ... 12 more
    java.io.IOException: Failed to load all Beans : javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at com.sco.tta.server.server.JServer.<init>(JServer.java:327)
    at TTAServer.run(TTAServer.java:391)
    at java.lang.Thread.run(Thread.java:619)
    bash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#

  • Error during presentation services restart

    I get the following error during presentation services restart, Are there any compatibility issues with-in our product ?  Here is our set-up : OBIEE 11.1.1.6.7 Linux 6.3 DB - Oracle 11g R2
    sawlog0.log:[2013-08-12T15:27:56.000-06:00] [OBIPS] [ERROR:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] ODBC driver preload failed. ODBC library name: 'libnqsodbc64.so'[[
    sawlog0.log:[2013-08-12T15:27:56.000-06:00] [OBIPS] [ERROR:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] libnqshttpclientwrapper64.so: ELF load command past end of file[[
    sawlog0.log:[2013-08-12T15:28:02.000-06:00] [OBIPS] [ERROR:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] ODBC driver preload failed. ODBC library name: 'libnqsodbc64.so'[[
    sawlog0.log:[2013-08-12T15:28:02.000-06:00] [OBIPS] [ERROR:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] /u01/app/oracle/product/11.1.1.6/mwhome1/Oracle_BI1/bifoundation/server/bin/libnqutilityclient64.so: undefined symbol: _ZN13DynamicLoader11makeLibNameERKN7_SASSTL4ropeIwNS0_9allocatorIwEEEEbS6_[[
    Thanks for your help

    you need to add these below variables
    ORACLE_HOME=/opt/oracle/shared/product/11.2.0
    export ORACLE_HOME
    TNS_ADMIN=/var/opt/oracle
    export TNS_ADMIN
    PATH=$ORACLE_HOME/bin:$PATH
    export PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    not the same as above as your DB client may have a different path
    and then restart the services

Maybe you are looking for

  • Not able to install Adobe Flash Builder in windows xp 32 bit OS. Getting error msg 64 bit required.

    Hi All, Not able to install Adobe Flash Builder 4.7 in windows xp 32 bit OS. Getting error msg 64 bit required. Pls help me for installation. thanks in advance.

  • Display long text of characteristic in Query name

    Hi All, I have implemented RRI between my sender and receiver query. When user will click on WBS Element in my sender query <b>the receiver query name will be the name of that WBS Element.</b> After execution,I am able to see the Short text associate

  • How to restrict decimal point entry in numeric field?

    Hi All, There is a requirement from our client that, they cannot accept amount in decimals. That is, they cannot accept the cents, the amount that can be received from them is only in EURO and the same will be entered in the field. They want me to re

  • Consolidation reporting...

    Consolidation function is executed in BCS system and COI functionality is being used. To enable to continue the legacy ''business objects'' reporting the consolidated BCS data will be send to another datawarehouse system. What is the pros and cons us

  • Nokia Drive 3.0 Commute Live Tile

    The Nokia Drive live tile does not update at commute time. I have to open app then exit to start screen at which time the live tile updates. When I open the app the second time it will the ask if I want to begin the commute. The live tile should auto