Error "Invalid Report Object" when running any CR

Hi, I have installed BO XI V3.1 and upgraded to 1.4 level.
However when logged into the infoview app, if i browse to any 2008 report i have uploaded into the enterprise system and double click to run i get the error "Invalid Report Object".
This is also true if i try to run any report in the Public Folders \ Report Samples folder.
Nothing will display for me but they run fine in CR 2008, just not via the web tool.
Any help on this will be much appreciated.
C.

Hi,
Is this issue after you have upgraded to 1.4 or was this issue occurring before?
Since the reports are running properly in the designer please try to do following steps:-
1)  Open the report in the designer which is not working in enterprise
2)  Refresh the report in CR designer
3)  Save the report back to the enterprise and make sure save with data is checked.
4)  Now open the report in the Enterprise and check it works or not.
The reason of doing this is that to generate new PID's for the reports if after the upgrade the PID's have changed or has became corrupt.

Similar Messages

  • FR error:  *Error: invalid report object*

    Hi All,
    When we run the report we are getting error "*Error: invalid report object*. It is for one specific entity at the base level for some user's. Other user's can able to view the data at that leve. All the user's have same level of access. can someone help......
    Thanks in advance.
    Moh

    You are most likely getting this error because you have a report object trying to reference a value out of a datagrid or a POV that doesn't have any data for the given entity.
    When you run it for an entity with data in the grid, everything works great. When you run it for an entity with no data, the datagrid essentially doesn't exist and references to it will fail with the error you have shown.
    A good example of this is when you have a header and you pull parts of the header from a grid such as showing the scenario, etc. To do this you reference a row (or column) from the datagrid, etc.....
    Charles

  • Is there a way to change the *Error: invalid report object* error message?

    Well as you know if there is no data in a report, you get the above message. I was wondering if there is a way to replace this with another message, such as "there is no data for the criteria requested"?
    Thanks a lot.
    WC

    Hi Cashmoneydonuts,
    You can create an animation for this using Edge Animate, and add it to Muse.
    The following link might be helpful:
    Liven up Adobe Muse CC sites with animated effects | Adobe Inspire Magazine
    Regards
    Sonam

  • Invalid username/password  when running VSM1.3

    Hi, I have the issue of invalid username/password when running VSM 1.3.
    When I ran authentication.java , I got the error as follow:
    oracle: Exception thrown from getService method of ServiceLocator class: Lookup error:javax.naming.AuthenticationException:Invalid username/password for current-workspace-app(admin);nested exception is: javax.naming.AuthenticationException:Invalid username/password for current-workspace-app(admin)
    When running the web app, I got same message "Invalid username/password ".
    I checked the database. There are 4 records for admin,apparelowner,electowner and guest.
    My oracle db has japanese character set.
    I have read all the threads about the topic of VSM.
    But unfortunately I didn't find a clear conclusion and solution for this issue.
    Is it an issue of locale? Really appreciate your reply.
    Leon

    Was this working before? If yes, any changes been done recently?
    Was the dbc file recreated recently?
    Please see these docs/links.
    After Cloning Oracle Applications And Resetting APPS Password, Discoverer 10g/11g Fails With Error: Unable To Connect To Oracle Applications Database (afscpgcs) [ID 788706.1]
    Apps User Logging Into Discoverer Plus/Viewer Get Error "A connection error has occurred. -Unable to connect to Oracle Applications database: Your password has expired." [ID 871384.1]
    Getting Invalid Username/Password While Running Adupdeul On E-Business Suite R12 [ID 562876.1]
    Attempting to Import Discoverer EUL through adupdeul, returns the error "Failed to connect to database - Unable to connect to Oracle Applications database: invalid username/password" [ID 1243866.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%27Unable+to+connect+to+Oracle+Applications+database%27&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • "Invalid Metadata Objects" when creating materialized views

    Hi experts,
    I have run into some trouble. I had an analytic workspace that grew too fast (see 11.2.0.2 AW size grows steadily with every cube build so I deleted it and created a new one.
    It seemed to build fine using the tip that David Greenfield gave us in the mentioned forum post, but when I try to enable materialized views (which I had enabled in the previous workspace) I'm gettig the following error:
    Your metadata changes have been saved, with the following errors
    Invalid Metadata Objects:
    Invalid Object "TABLESPACE.LECTURAS": "CREATE MATERIALIZED VIEW "TABLESPACE"."CB$LECTURAS"
    ORGANIZATION CUBE ON TABLESPACE.TABLESPACE_AW(
    FACT "LECTURAS_STORED"("LECTURAS_MEASURE_DIM" 'LECTURA') IS "LECTURA",
    DIMENSION "TIEMPO" IS "TIEMPO" USING "TIEMPO_TIEMPO_HOUR_ID_UNIQUE_KEY" ,
    DIMENSION "GEOGRAFIA" IS "GEOGRAFIA" USING "GEOGRAFIA_GEOGRAFIA_CONTADOR_ID_UNIQUE_KEY" )
    BUILD DEFERRED
    REFRESH ON DEMAND
    FORCE
    USING TRUSTED CONSTRAINTS
    AS
    SELECT
    TO_CHAR(T1."FEC_LECTURA", 'dd/mm/yyyy hh24:mi:ss') "TIEMPO",
    T1."COD_METERID" "GEOGRAFIA",
    SUM(T1."VAL_AI_HOR") "LECTURA"
    FROM
    TABLESPACE."LECTURA_HORARIA_FINAL" T1
    GROUP BY
    (TO_CHAR(T1."FEC_LECTURA", 'dd/mm/yyyy hh24:mi:ss') , T1."COD_METERID")
    ORA-00942: table or view does not exist
    Running this same script in SQLDeveloper yields the same error at line 17, which is the FROM clause. BUT I can run the SELECT statement by itself and returns the expected result. So the table exists in the correct tablespace.
    I must be missing something big...
    Thanks in advance.
    Joan
    P.S.: In the code above I'm using "TABLESPACE" in substitution for the real username and tablespace name (which is the same) for privacy reasons.

    When you ran the select statement, were you connected as the same user that you used to try to enable the MVs?
    Can you create a standard (non cube) MV with the same select statement? (Connected as the same user you used in AWM.)
    "CREATE MATERIALIZED VIEW "TABLESPACE"."MV_TEST"
      BUILD DEFERRED
      REFRESH ON DEMAND
      FORCE
      USING TRUSTED CONSTRAINTS
    AS
      SELECT
       TO_CHAR(T1."FEC_LECTURA", 'dd/mm/yyyy hh24:mi:ss') "TIEMPO",
       T1."COD_METERID" "GEOGRAFIA",
       SUM(T1."VAL_AI_HOR") "LECTURA"
      FROM
       TABLESPACE."LECTURA_HORARIA_FINAL" T1
      GROUP BY
       (TO_CHAR(T1."FEC_LECTURA", 'dd/mm/yyyy hh24:mi:ss') , T1."COD_METERID")
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error Invalid Number message when sending text

    Ever since I upgraded to an iPhone 5s I get an Error Invalid Number message when sending a text to a phone number that used to work just fine from my 4s. In fact I can receive a text from this number but when I try to reply to that text I get the error message again.
    I deleted the contact info in case there was something broken there and I'm trying it with just the raw phone number but without any luck. What can I do? It's my boss's number so it's important I fix this problem. All other contacts and texts are working just fine, it's just this one phone, a Samsung galaxy on T-mobile if that helps. 

    I am having the same exact issue with my Nokia Lumia 920 Windows phone. I was texting my son this morning when one text immediately returned a "+1 (112) 161-1611 Error Invalid Number. Please re-send u sing a vlid 10 digit mobile number" message. His contact info looked fine, but I edited it, re-saved it and tried texting again. Same result - except the number reported in the error message showed 2 "1s" in front of his mobile number. I was able to text my wife a couple of times to report this to her and then it happened with her number in exactly the same manner. I am still able to text people I work with - so this leads me to believe it has something to do with phone numbers that have been saved outside of my corporate contact list. I will be monitoring this posting to see if there is a fix.

  • T410 laptop turns off abruptly when running any application

    Hi,
    T410 laptop turns off abruptly when running any application. I contacted the technical support, first they suggested me to run some diagnostics for hard disk which failed and so they sent me a new hard disk. Even then I faced the same problem. Again I contacted them and they told that they will change the system board. Today I received the laptop with new system board/updated BIOS.
    But still I am facing the same problem. I called the technical support again, they told me to use the latop in two modes ( 1. only battery and 2. only ac adapter) and check whether its happening again or ont. In both the cases I am seeing the same problem.  
    Laptop is only 5 months old and bought for  $1400........ 
    SOmebody help me........
     type:  2516 -CTO
    S/N:  xxxxxxx 10/03
    Thanks,
    Kobi
    Moderator Note; s/n edited for members own protection

    Hi and welcome to the forum!
    Tell us something more about your system, like installed memory size, processor speed, graphics card make and size, HDD size and so forth. Because yours is CTO model hence it's not possible to figure out these things without your telling us about them.
    I'm not very expert but I would say it's probably the RAM since system board and HDD have already been replaced or possibly you have got a lemon. But try following suggestions first.
    Do you get any sort of error message or Bluescreen? does Event Viewer report something unusual? Event Viewer can be opened by typing it's name in the search field in Windows 7. If you get Bluecreen you can view it via this program:- http://www.nirsoft.net/utils/blue_screen_view.html and let us know what it says.
    Also, make a bootable CD of mem86 and run the test on your RAM, mem86 can be downloaded free from:- http://www.memtest86.com/
    Lastly, you can burn LiveCD of any Linux distro and boot from it, if applications work fine in Linux environment then probably it's some software problem your thinkpad is having, re-imaging the system to factory state would be great initiative in that case.
    Keep us posted!
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Error -17300 is generated when running selected step

    Error -17300 is generated when running selected step (with ot without process model).
    Using TestStand 2.0.1f1
    See BMP file for error dialog.
    I was trying out the example in the Resource Library - TestStand | Process Models | Running Selected Steps via Execution Entry Point -Test UUTs or Single Pass
    (link http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B45EACE3E2B756A4E034080020E74861&p_node=DZ52222&p_source=external ). This example is a 1.0.1 example but the web page does say that it should work in 2.0.x
    I followed the readme file to use from "Execute" menu:
    I have attached the resulant SequentialModel.seq file.
    The modifications to the SequentialModel.seq file appears to wo
    rk, but when I tried to run 'Run Selected Steps Using' menu item. I got the error message -17300 displayed. (see ErrorScr.bmp attached). The only way to close the execution was to launch Task manager and 'End Task'.
    I have attached a small demo sequencefile.
    To try example:
    Move the SequentialModel.seq to 'C:\TestStand\Components\User\Models\TestStandModels'.
    Launch TestStand Sequence Editor and open 'Debug Example1.seq'.
    This is how to generate error condition-
    1. Run the sequence file from menu Item Execute | Single Pass. You should get a full run with test result, it fails but that doesn't matter.
    2. Select Steps 1 and 3 in Main of MainSequence. Run Selected Steps using Single Pass. Again sequence executes correctly.
    3. Now run the same selected steps using the new menu item Execute | Selected Test(s). Again the sequence executes again.
    4. With Steps 1 and 3 still selected. Run Selected Steps using Single Pass (as in 2 above). This time the error -17300 will be gener
    ated.
    I also tried running the sequence first doing step 1 (as above), then step 3, then repeating step 1 and this was ok. So the problem appears to be in interactive only.
    Any clues as to whats going on and how to resolve it.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    SequentialModel.seq ‏174 KB
    Debug_Example1.seq ‏19 KB
    ErrorScr.bmp ‏915 KB

    Hi,
    TestStand 2.0.1f1
    Attached is a SequentialModel.seq that will run selected steps in a new execution using the process model. (It started life based on the inital
    demo example)
    When either Test UUT's or Single Pass is selected a check is made to determine if there is an initial selection.
    If there isn't then the normal Test UUT's or Single Pass sequence is run.
    If there is then a new sequence file is created with a new MainSequence. The selected steps are cloned and inserted to the new MainSequence. Also
    the Setup and Cleanup groups are also cloned. Likewise the FileGlobal Defaults are copied to the FileGlobals of the new Sequencefile and also the
    Locals.
    Any Sequences contained in the SequenceFile are cloned to the new sequencefile (except the MainSequence, SequenceFileLoad and SequenceFileUnLoad).
    In addition, as the Steps are cloned any break point are also set in the new sequence file.
    The new sequence file is executed in a new execution using the process model entry point with the break on first step controlled from the menu
    option.
    One thing I am assuming is that there is only one element in the RunState.InitialSelection.SelectedSequences array.
    Question: Under what circumstances will there be more than one selected sequence?
    I had one problem, I tried my SequentialModel.seq with the demo auto.seq. This contains the SequenceFileLoad and SequenceFileUnload.
    When I run this demo with a few steps selected, it run ok but when I closed the results window the UnloadFile callback was executed.
    I found an option that can be set with the Engine.ReleaseSequenceFileEx which should have stopped the UnloadFile callback from running. But it
    made no difference.
    I then came across SequenceFile.UnloadCallbackEnabled() and using this function it did disable the Unload callback and this worked.
    Question: So, Why didn't setting the Option in the Engine.ReleaseSequenceFileEx work?
    Limitation using this SequentialModel.seq,
    1) Any precondition to a step's execution based on the result of an early steps are not check when cloning the selected steps. Therefore this has
    to be done manually when making the selection.
    2) All Sequences in the SequenceFile are cloned to the new sequencfile. (May not be a problem when SequenceFile contains only a few sequences.)
    3) The selections are limited to the MainSequence. If steps are selected in a Subsequence then these would be copied to a new MainSequence and
    this would be run. Providing this doesn't require any parameters passed from the original caller then this should still run. The problem will
    arise if parameters are required.
    4) This is not really a limitation - If a full run of the SequenceFile using Test UUT's or Single Pass is required then the user must ensure no
    steps are selected.
    What I whould like to happen is the ability to make a selection in SubSequence calls either one or two levels down from the MainSequence. The new
    execution setup would contain those steps in the MainSequence that are required to call those selected steps in the lower levels.
    Would welcome any comments on my SequentialModel.seq attached and answers to my questions.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    SequentialModel.seq ‏233 KB

  • Had Lion 10.7.3 and spctl enabled, after upgrading to 10.7.4 i got this error message: 'error: invalid API object reference'

    I had Lion 10.7.3 with spctl enabled, few days ago i had thru Software Updates > Upgrade to 10.7.4; i upgraded but this time when im trying to install an program i have the message that producer is not signed or software was from AppleStore so i tried to disable on Terminal, but i got this message:
    'error: invalid API object reference'
    i guess now i cant install anything because either i want to enable or disable the result is the same.

    I have this same trouble with an IMac, was also 10.7.3 with spctl enabled, and after upgraded to 10.7.4, i cant install anything.

  • How to fix the .pdf file with error "invalid annotation object"

    how to fix the .pdf file with error "invalid annotation object"

    As long as the PDF opens, then just try saving it to a new file name. There may be a preflight script that would help troubleshoot the issue.

  • Error Invalid report! Please choose another report.

    Hi All,
    I have an query, i am creating a Publication from InfoView and  Dynamic Recipients page while uploading the "Select the data source name for the document " i am getting  "Invalid report! Please choose another report." before 15 days it is working fine
    please suggest
    Regards,
    Jeet

    for reference please look below thread
    Dynamic Recipients Error: Invalid report! Choose another report.
    i am using sap bo Infoview 3.1
    Thanks in advance,
    Ranjeet

  • Unusual error message when running any report on R12 (fresh installation)

    Hi,
    I managed to install R12 on W2k3 finally and got several problems since. Now I am getting below message in log file, every time I run any report. It seems it works for other other concurrent programs (tried Workflow Definitions Loader). Below log is for the report run in AP module, but I also tried others and they do not work.
    Payables: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    APXBABAL module: Bank Account Listing
    Current system time is 23-JUL-2011 19:57:52
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_ORDER_BY_PAR='Bank,Branch,Account Name'
    P_BANK_ACCOUNT_PAR='Both'
    P_EFFECTIVE_DATE='2011/07/23 00:00:00'
    P_SET_OF_BOOKS_ID='125'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.WE8MSWIN1252
    LOG :
    Report: j:\oracle\VIS\apps\apps_st\appl\ap\12.0.0\reports\US\APXBABAL.rdf
    Logged onto server:
    Username:
    Program exited with status 1
    Cause: The program terminated, returning status code 1.
    Action: Check your installation manual for the meaning of this code on this operating system.
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 5812766.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 23-JUL-2011 19:57:55
    Any idea what is wrong? Any additional steps after installing? Some service need to run?
    Regards
    Piotr

    Any idea what is wrong? Any additional steps after installing? Some service need to run?Can you reproduce the issue with "Active Users" or "Active Responsibilities" concurrent programs?
    Have you defined a dummy printer at the OS level? If not, please do so and check then (bounce the CM before submitting the request again).
    Thanks,
    Hussein

  • The task failed with error: Invalid BPM Object context key, can any one hel

    The application works fine on version 5.7. I am trying to migrate to 10.3 angetting the error when tried to execute task. This is coming up from opening a jsp page; don't know exact code/line number as the error message is in a popup window and doesn't show it clearly in logs:
    The task could not be successfully executed. Reason: 'fuego.xobject.util.InvalidContextKey: Invalid BPM Object context key'.
    See log file for more information [Error code: workspace-1255544311265]
    The log shows the below starting from just before the error upto the complete error msg:
    ExecutionDispatcher.actionId: RUN_INSTANCE_TASK
    WamJsp: commit prepare.
    java.lang.NullPointerException
    java.lang.NullPointerException
         at fuegoblock.net.NewJSP$1.prepare(NewJSP.java:185)
         at fuego.web.execution.InteractiveInvocation.retryExecution(InteractiveInvocation.java:72)
         at fuego.web.execution.InteractiveExecution.retry(InteractiveExecution.java:246)
         at fuego.web.papi.TaskExecutor.runInstanceTask(TaskExecutor.java:375)
         at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:98)
         at fuego.workspace.servlet.ExecutorServlet.doAction(ExecutorServlet.java:117)
         at fuego.workspace.servlet.BaseServlet.doPost(BaseServlet.java:229)
         at fuego.workspace.servlet.BaseServlet.doGet(BaseServlet.java:220)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at fuego.workspace.servlet.AuthenticatedServlet.service(AuthenticatedServlet.java:83)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at sun.reflect.GeneratedMethodAccessor201.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Unknown Source)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:50)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:156)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:152)
         at fuego.web.filter.SingleThreadPerSessionFilter.doFilter(SingleThreadPerSessionFilter.java:64)
         at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
         at sun.reflect.GeneratedMethodAccessor94.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Unknown Source)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:217)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:197)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:50)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:156)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:152)
         at fuego.web.filter.CharsetFilter.doFilter(CharsetFilter.java:48)
         at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
         at sun.reflect.GeneratedMethodAccessor94.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Unknown Source)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:217)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:197)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:50)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:156)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:152)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    Unexpected Error:The task could not be successfully executed.
    Reason: 'fuego.xobject.util.InvalidContextKey: Invalid BPM Object context key'.
    Can any one please help?
    Javed

    Hi Javed,
    I'm having similar error. What was the root cause of your problem? How did you fix that?
    Thanks,
    Bharat

  • Error Message when running any form

    Besm Allah Alrahman Alraheem
    when I try to run any form I made this error message is appeared
    the message is :
    *"the instruction at"0x04fa0b58" referenced memory at "0x00000054".The memory could not be "read"*
    *click on OK to terminate the program*
    *click to canel to debug the program*
    and when I click ok or cancel the form doesn't run and return to design
    what does it mean and How I solve this error
    Although I remove ORACLE completely and install it again
    gazakom Allah khayran

    Besm Allah Alrahman Alraheem
    thanks very much for concern and reply
    Alhamd for Allah
    I found the solution
    I download another web browser firefox
    and I adjust form builder Edit---preferences----runtime------web browser location-----( the path of fire fox)
    and Idownload the initiator
    then
    forms has been run
    Alhmdo for Allah

  • Error: Read failure when running any of self diagnostisc tests from BIOS

    After Screen replacement my HP625 Laptop seems to work good as ever, but if running any of diagnostic test from BIOS (Memory, Start Up, Run In or Hard Drive Test) it throws the same Error: Read failure?!?
    Should I be worried?
    is is something wrong with testing software?
    kind regards

    Hi Arturb,
    Your HP 625 is a commercial product and to get your issue more exposure I would suggest posting in the commercial forums. Here is a link to the Commercial Notebook forum.
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

Maybe you are looking for

  • How to set different navigation items for each content tab in xMII portal

    Hi, Scenario : I have added three content tabs in the xMII portal. I want to change the items in the navigation tree when each of the content tabs are selected. How is this possible? Please help.

  • Is there a plug in for nuance pdf reader?

    I have stopped using Adobe Reader and started using Nuance PDF Reader. It is much more efficient and a much smaller footprint. My problem is that it will not open pdf documents imbeded in a web page. Example, I am trying to read my messages from Veri

  • How to use TestRunnerBase in pure AS3 / no MXML

    Hi, is there a way to use the testRunnerBase GUI for a pure AS3 project, without a mxml? Thank you

  • Macbook cant find printer anymore on airport

    My macbook can't find my printer on my wireless network anymore I have an mac airport wireless router can anyone help

  • Megahertz values in ram

    I have seen a Kingston ram stick listed in advertisment with megahertz values. and that could be just the same as selling vacums based on watts. i did some research and found http://en.wikipedia.org/wiki/Megahertz_myth good read, but outside of a foc