Error when opening BEX from the WEB BI aplication

Helo,
I want to launch the BEW web application from the BI Launch pad.
When i enter the username/ password for the BW system i git the followong error:
BEx Web Application
BEx Web Application Session Management
Exception occured while processing the current request; this exception cannot be handled by the application orframework
Failed to process request; contact your system administrator
To facilitate analysis of the problem, keep a copy of this error page
We are sorry for the inconvenience
Copyright © SAP AG. All Rights Reserved.
I did all the steps descibed in the following link:
URL http://wiki.sdn.sap.com/wiki/display/BOBJ/ConfigurationstepstointegrateBExWebapplicationsintoBI+4.x
Do you have an idea how to solve this issue?
Reards,
Hassan

Mike,
It looks like ni.com is not supplying that particular console object which is causing an issue with the embedded instance of IE9. Every other website I've tried works correctly. I've looked around the ActiveX methods to intercept and ignore this error, but I haven't found anything yet.
For others' reference, here is the link to the example:
https://decibel.ni.com/content/docs/DOC-2042
Karl G.
Applications Engineer
ni.com/support

Similar Messages

  • SIMBL Error when opening Safari from the desk tray

    I get a SIMBL Error when I open Safari from the desk tray. The error reads:
    SIMBL Error: Safari 3.0.4 version 523.12 has not been tested with plugin PCB (null) (v19).
    Any idea on the origin of this error? I have recently turned on parental controls -- could that have anything to do with the PCB plugin? Where do I see a list of installed Safari plugins?

    The PCB error is related to a Parental Control Bar plug-in which is incompatible with the recently updated Safari
    http://www.parentalcontrolbar.org/
    To eliminate the error, ...
    "This is probably installed under Macintosh HD > Library > Application Support > SIMBL > Plugins > PCB.bundle. If you simply remove this, Safari should be happy. (If you installed it somewhere else, then just use Spotlight to find PCB.bundle.)" Taken from Apple Discussion Board, Topic : Safari 3.0.4: Plugin-not-loaded alert window
    I have not re-installed the plug-in so cannot comment as to whether it is updated for Safari 3.04. Otherwise, error disappeared.

  • Error when opening page with the web browser activex

    I have downloaded the example for using the web browser activeX component to display a web page. It basically works, but it keeps returning an error (from NI's web site) that I don't see when opening the site from IE. The message I get is:
    Are there things that need to be initialized when calling the browser in this way?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

    Mike,
    It looks like ni.com is not supplying that particular console object which is causing an issue with the embedded instance of IE9. Every other website I've tried works correctly. I've looked around the ActiveX methods to intercept and ignore this error, but I haven't found anything yet.
    For others' reference, here is the link to the example:
    https://decibel.ni.com/content/docs/DOC-2042
    Karl G.
    Applications Engineer
    ni.com/support

  • When i cut from the web and paste onto pages, i am missing half the article, unless i change it to a smaller font.

    when i cut from the web and paste onto pages, i am missing half the article, unless i change it to a smaller font. Even then the rest of the article is not continuing onto the next page, it seems like it is stuck in a text box but it wont expand. I must be missing something i just not figuring it out.

    Many web pages uses a table system and when you copy you get the table too. Pages 09 retains the table. PAges 08 don't.
    Tryy this: When you have pasted into a Pages document select some text and then hit Cmd + A to select all text. Paste into a new blank document. Tha tshould help.

  • Force a window browser window close when open docs FROM THE KD

    We have an issue when opening documents from the kd a browser window opens, then the office doc opens. But it leaves the blank browser window there open. I have looked into it, and it appears the ptcommonOpener may be able to be modified with a piece of javascript "currentWin.close" in the href that gets built with the link.
    Does anyone have any experience with this or another way to do it.
    Thanks

    the problem has been solved for me following the process :
    1 -close entourage
    2 - start and follow the complete reconstruction of the entourage database ;
    3 - in the "entourage" menu, disable "office reminds" or "office recall" (i don't know the exact name because my entourage is in french)
    For me it has worked. when i click on the dock entourage shortcut it opens without showing the new message windows at start.

  • Error When Launcging BEX query into Web Browser

    Hi all,
    When Launching Bex query into Web browser from BEx Analyser it's giving this error message. We are using Bex 3.x tools.
    Technical Information for Message:
    Error loading template 0ADHOC
      Notification Number BRAIN 276
    Any help will appreciated!.
    Thanks,

    If you want to continue to use the ABAP-based runtime, create the template using the Web Application Designer (SAP BW 3.x).
    The templates called using the new Web Application Designer have new objects that are independent of the objects saved using Web Application Designer 3.x. This means that, unlike the old templates, they can no longer be called using parameter template_id=abc. Instead, you can address them from an iView using template=abc and they use the Java Web runtime in the portal. Only the old templates can be executed in transaction RSRT.
    In Web Application Designer 3.x, you can use parameter template_id=abc to call saved objects.
    Note 1014795 - Error BRAIN 276 when you execute a Web template
    Hope it Helps
    Chetan
    @CP..

  • Opening pdfs from the web

    Hello,
    I am having a wierd issue with pdfs from the web.  I have adobe acrobat pro 9 (patched up to date) and I have enabled the 'do not open in browser' setting.  When I click a pdf link, it opens acrobat 9 as it should but the file name/file type is not .pdf.  I do not have reader installed and cannot figure it out.  The main issue is when I click the email link, it sends the link for the unknown file rather than the .pdf as I intended.
    The short term work around is to save as and reopen the newly saved .pdf.
    Any help would be much appreciated. 
    Thanks!

    Go to Adobe Acrobat Reader Preferences and, under Internet, it asks if you want to display PDFs in Acrobat Reader (or Acrobat Pro, etc.). If checked, uncheck the box. Then CTRL-click on a PDF file and select "Open With". If you hold down the Option key at this point, this Open With" will change to "Always Open With". Select Preview. That should do it. Watch out for Reader or some other Adobe programs that ask if you want to make Reader the default PDF viewer when you open them. Always answer "NO".

  • The dialog box open twice when open file from the server

    I use the following code to download/open file from the server:
    <%
    String filename = "MengxianhuiDocTest.doc";
    String filepath = "D:\\";
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition",
    ??attachment; filename=\"" + filename + "\"");
    java.io.FileInputStream fileInputStream =
    new java.io.FileInputStream(filepath + filename);
    int i;
    while ((i=fileInputStream.read()) != -1) {
    out.write(i);
    fileInputStream.close();
    out.close();
    %>
    If the application runs, the Open or Save dialog box display.When I select open the file,
    the dialog box will display twice.
    Pls help me.
    Thanks.

    thx
    but I tried it and it did't work.
    The dialog box also display twice.

  • Win32 exception error when opening file from RH6 in RH7

    I received the following error when opening a help file
    (.xpj) that was developed in RoboHelp 6 in RoboHelp 7:
    An unhandled win32 exception error occurred in RoboHTML.exe
    [4692].
    This occurred after receiving the notice to upgrade the
    project since it was created in an older version. After selecting
    Upgrade, I received a runtime error message prompt. After clicking
    OK, I received the message above.
    Does anyone know how to resolve this issue so that I can open
    the project without any problems in RH 7?

    Thanks a lot for replying.
    waldemar.hersacher wrote:
    I have Acrobat Reader 5.1 at home and 6 at work and both work fine with the LV 7.1.1 bookshelf and help file.
    Yep, I just uninstalled Adobe Reader 7.0 and installed version 6.0.1. The links now work perfectly, so evidently this is a problem with Adobe Reader 7.0. I'd still like to solve the problem, though, as I really like version 7.0. (Something has finally been done about the program's lengthy start-up time!)
    You can reach the PDF-Files also by using Help>>Search the LabVIEW Bookshelf. Does this link work for you?
    It works perfectly.
    javascript:AcrobatLink('../manuals/lvuser.pdf');
    This is a call to a java script function located in pdf.js.
    Other reasons:
    The Active-X control of Reader 7 has a bug.
    Your Internet security settings will not allow this operation. The Active-X will be loaded but will have no access to the file and yo get a wrong error message.
    Fair enough. If that is indeed the case, which Internet security setting should I try changing? I haven't done anything unusual to any of those settings. And where is pdf.js located? I tried searching for it but could not find it.
    Your advice is greatly apreciated.

  • When I print from the web, the print is blue ink, which I don't want and can't read. When I print from Word, it is black ink. What is the problem?

    If I print an article downloaded from the web, it prints in blue ink, which is almost not readable. If I download it to Word or print a document stand alone in Word, it prints in black ink, which is what I want. I didn't have this problem before I upgraded to the new Firefox. Please help.
    Thanks
    Lee Gregg

    I should also point out that when I connect my iPhone, it DOESN'T appear as a connected drive on the desktop. Not sure how this can be so, since the iPhone also has a drive and also functions as an iPod if I want it to. I must have changed some setting to achieve this non-appearance, but don't remember what I must have done.
    What's the secret?

  • Load oracle jdbc driver error when run applet via the web

    Hi All,
    I have built an applet which connect to database via jdbc thin driver. It works fine when I run it through the applet viewer, but got a problem when run it through the web.
    java.lang.NoClassDefFoundError: oracle/jdbc/driver/OracleDriver
    I am using jdev9i 9.0.4 and jdk 1.4.2. The jdbc version is 9.0.1
    I have added both the classes12.zip and ojdbc14.zip in the class path and also pack them together with my applet class. Here is the code
    public class MyApplet extends Applet
    implements Runnable
    public void start()
    if(theThread == null)
    theThread = new Thread(this);
    theThread.start();
    Retrieve R = new Retrieve();
    this.MyMap = R.retrieveDesc();
    public class Retrieve
    public Retrieve()
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    conn=DriverManager.getConnection("jdbc:oracle:thin:@babyruth.wvu.edu:1703:devdw", User, Password);
    conn.setAutoCommit(true);
    connectStatus = true;
    public HashMap retrieveDesc()
    return map;
    I have also built one HTML page NewApplet like this
    <HTML>
    <HEAD>
    <TITLE> My New Applet</TITLE>
    </HEAD>
    <APPLET CODE="MyApplet.class" CODEBASE="menu" ARCHIVE="MyApplet.zip" WIDTH=300 HEIGHT=485>
    <!--General Settings-->
    <param name="bgcolor" value="255,255,255">
    </HTML>
    Any advice is highly appreciated
    Mei

    Sir,
    Well you haven't "packed" them correctly. Why don't you just add the driver bits to the soucebase tag? or something like that anyway...
    Sincerely,
    Slappy

  • When openning firefox from the task bar it opens to the last page viewed how can I change that

    Whenever I open Firefox from the taskbar or the desktop icon it opens to the last session pages. Is there a way to change that back to the homepage.

    hello svicinanza, that is probably caused by the user.js file in your profile (it shouldn't be present anyway in case you haven't created it manually, since it can be used to overwrite your custom preferences).
    in order to resolve that, go to the firefox ''menu ≡ > help ? > troubleshooting information'', click on ''profile folder/show folder'' and close all firefox windows afterwards. a windows explorer window should open up - in there delete the file named '''user.js''' and restart the browser.
    [[How to fix preferences that won't save]]
    afterwards try to set the options for your homepage in the firefox menu again: [[How to set the home page]]

  • Illustrator CC (Mavericks) crashes when pasting images from the web.

    I have read many forums of illustrator crashing, and most of them is about the Wacom tablet. I do have a tablet, so I uninstalled the software, but tried pasting an image from the web, and sure enough it crashed again.
    Hope you can help me, because this is very frustrating
    Thanks in advance,
    Alexandra

    Umm, well, have you considered that this is the most rubbish workflow one can imagine? Seriously. Save the images locally from your browser and them import them using the place command and even that only after checking them in Photoshop. There could be any number of issues here like files being damaged or having crooked color profiles attached that make AI go kaboom... Again, it's simply a very, very bad workflow.
    Mylenium

  • Error when running reports on the WEB

    Hi,
    I have been successful in deploying our application on the Web,
    using WebDB listener, Developer Server, Report Server and JInitiator 1.1.7.18.
    Now the forms on the web runs fine without any problem but
    when I run Reports from Forms using RUN_PRODUCT built-in by passing parameters from Forms to Reports it generates this following error: REP-0081-Error During I/O operation and REP-0110: Unable to open file "<<file>>.html" scaba 14.
    The strange thing about the REP-0110 is, it refer to a path that is not defined in my registry(FORMS60_OUTPUT,_MAPPING, REPORTS60_PATH,_TMP,_WEBLOC,_WEBLOC_TRANSLATED) and neither my physical directory in the directory mappings which I defined on the web server. (I refer to a the path mindpack4.1 and the REP-0110 refer to mindpack4_1)
    Any help appreciated.
    Thanks

    Hello pals,
    i have set the following parameters: TMPDIR and REPORTS60_TMP...
    and it seems to be working!!!
    i hope that the problem is not somewhere else.
    NB. I was having problems with 2 reports only. the others were
    working fine.
    any comments will be most welcomed.
    regards
    Yogeeraj

  • Error when sending email from a web application that runs on GlassFish

    Hello all, I hope some can give me some hints on how to fix this problem.
    I have a web application built in Java that runs on GlassFish v3.
    The application uses a mail plugin that makes use of mail.jar
    Whenever I try to use the plugin to send an email out I get an error.
    The application is programmed to send emails from a gmail account, and I believe there is a problem with the SSL version that Googlemail is expecting.
    By the way, everything works fine if I run the web app on other servers like Jetty or Apache.
    The stacktrace I get from the log when the error occurs is as follows:
    INFO: 2009-05-08 19:48:57,500 [httpWorkerThread-8080-0] ERROR errors.GrailsExceptionResolver - org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465;
    nested exception is:
    java.net.SocketException: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
    org.codehaus.groovy.runtime.InvokerInvocationException: org.springframework.mail.MailSendException: Mail server connection failed; nested exception is javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465;
    nested exception is:
    java.net.SocketException: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:337)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.ApplicationDispatcher.doInvoke(ApplicationDispatcher.java:883)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:732)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:554)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:485)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:377)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.jsecurity.web.servlet.JSecurityFilter.doFilterInternal(JSecurityFilter.java:382)
    at org.jsecurity.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:180)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:250)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:218)
    at org.apache.catalina.core.StandardWrapperValve.preInvoke(StandardWrapperValve.java:460)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:139)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:186)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:719)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:657)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:96)
    at com.sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.java:98)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:187)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:719)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:657)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:651)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1030)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:142)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:719)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:657)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:651)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1030)
    at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:325)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:242)
    at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:180)
    at com.sun.grizzly.http.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:633)
    at com.sun.grizzly.http.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:570)
    at com.sun.grizzly.http.DefaultProcessorTask.process(DefaultProcessorTask.java:827)
    at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:152)
    at com.sun.enterprise.v3.services.impl.GlassfishProtocolChain.executeProtocolFilter(GlassfishProtocolChain.java:71)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:103)
    at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:89)
    at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
    at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:67)
    at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:56)
    at com.sun.grizzly.util.WorkerThreadImpl.processTask(WorkerThreadImpl.java:325)
    at com.sun.grizzly.util.WorkerThreadImpl.run(WorkerThreadImpl.java:184)
    Any help would be really appreciated... honestly I'm pretty stuck.
    Alex

    Hi Alex,
    Since I had a Gmail test servlet kicking around, I ran it on the latest V3 nightly build.
    On the first run, I encountered the following nested exceptions:
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.gmail.com, port: 465
    --> java.net.SocketException: java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
        --> java.security.NoSuchAlgorithmException: Error constructing implementation (algorithm: Default, provider: SunJSSE, class: com.sun.net.ssl.internal.ssl.DefaultSSLContextImpl)
            --> java.security.UnrecoverableKeyException: Password must not be nullThe UnrecoverableKeyException is a manifestation of [https://glassfish.dev.java.net/issues/show_bug.cgi?id=6938|https://glassfish.dev.java.net/issues/show_bug.cgi?id=6938]
    I worked around this by adding the following JVM config options to domain.xml
    <jvm-options>-Djavax.net.ssl.keyStorePassword=changeit</jvm-options>
    <jvm-options>-Djavax.net.ssl.trustStorePassword=changeit</jvm-options> (Note: the default master password is "changeit")
    These lines are placed in /domain/configs/config/java-config of domain.xml for the particular server config you're using. There's only one server config in the default domain.xml shipped with V3. Then restart the server.
    I retested the code on both port 465 and 587, with and without the above config changes. Without the change, they both fail the same way, and with the change, they both work. Let me know if this helps.
    -Peter

Maybe you are looking for

  • Why does the Safari PDF viewer plugin show up in mission control?

    Whenever I swipe to activate mission control the PDF viewer plugin of Safari shows. This obviously doesn't happen if I do not have a tab with a PDF active in the browser, but why does it show anyway? I have tested Firefox and Chrome and their PDF plu

  • Lightroom 4 performance issues

    Hello, Months ago I switched from Aperture 3 to Lightroom 3 and quickly fell in love with the program. I switched due to constant freezing and crashes in Aperture 3. I invested time and money to learn Lightroom 3. Performance in Lightroom 3 was super

  • Weird Pop-up window asking for password.

    I have an iPhone 3gs (I know, I know...I'll upgrade soon!) and lately a window pops up (constantly) that asks for my password for a Yahoo account that I don't recognize...am I being "hacked"? - or at least is someone trying? Kind of freaking me out.

  • MacBook Pro with 2 HDs and 2 Mac OS X installs, possible conflict?

    I have just installed an SSD drive in replacement of my optical drive in my MacBook Pro. On the new drive, I did a fresh Mac OS X install and kept the old Mac OS X install on the old, original HD. I intend on formatting the old HD eventually, but I w

  • Whats the diff between btmm & basic sharing?

    so I have both "back to my mac" and regular screen sharing on me and my dad's computer....but I don't understand what the point is of "back to my mac" if screen sharing already works?