Software Applications Deleted Report

Seeing the applications installed report generating data, but I'm not getting any data from Software Applications Deleted Custom Inventory report and I have uninstalled apps through Zen. Any ideas on if this report is working for anyone and if so, any clues?

harrymsg,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • My software applications were unexpectedly quitting (i tunes, pages, skype) so I upgraded to Lion OS 7. It took 2 days to download, 14 hours and counting to install so  I switched it off and on. The only result is a screen asking for my password. I key in

    My software applications were unexpectedly quitting ( I Tunes, page, skype) so I downloaded Lion OS 7. It took 48 hours to download and 18 hours to install (and counting) so i turned it off and on several times. All i get now is a screen with the Apple Icon asking for my password with option to switch off or restart. tried both but it just brings me back to the same screen
    what do i do?
    thanks

    When you decided to upgrade because you were having serious problems, you jumped from the frying pan into the fire. If the problem was the system, then reinstalling the current system is the way to go. But you had several application quiting, some from Apple and some not. so the quitting was something affecting all of them, and of course the system could be the culprit, but the system is not the only possible culprit. Replacing the system when it was not the problem only buries the problem under a whole new pile of problems.
    Before reinstalling a system you need to make your Mac as trouble free as possible and back up as much as you can. There is a wide variety of problems that can affect many applications. Here is a short list:
    Font problems. Use Font Book to verify your fonts. Delete or disable bad fonts.
    Disk, permission, or cache corruption.
    Incompatible Startup Items, Login Items, interface modifications or menu extras.
    Corrupted preferences other than those of the affected applications. Check preferences system-wide using the freeware applications Preferential Treatment or AppleJack
    Insufficient RAM or lack of free disk space.
    Programming errors. Bugs in application code are not uncommon. For third-party applications, check the vendor's Web site for updates to the application, reports of known bugs, or for information on how to contact the vendor for support. A bad program might be grabbing up too much RAM and causing the other applications to fail as well.
    Corrupted application. Check the logs to see where the crash occurred.
    Other software problems or conflicts.
    Corrupted Mac OS X installation. Perform an Archive and Install of your current Mac OS X.
    Hardware problems. Run the Apple Hardware Test that came with your Mac.
    Try to discover the culprit:
    Open Console, located in the Macintosh HD > Applications > Utilities folder.
    Check the Console and System logs for messages that may be related to the problem.
    To open these logs, in Console choose File > Open, then choose:
    Open Console Log and Open System Log
    Messages in these logs are time stamped when the message was logged.
    Scroll the log windows to the approximate time when the problem occurred.
    Details of the messages may provide additional clues you use in troubleshooting.
    Do not post an entire log to a forum. Post only the messages referring to the function or application causing a problem.
    AppleJack is a free program you run in 'Single User Mode.' Install it. When you want to run it, press Command s until you get a black screen with text. Type 'applejack' and run the repairs.

  • Cannot delete reports, unless I close and open Eclipse/Tomcat

    Please can someone help me.
    I cannot delete reports. I have not worked out all the details yet but this is what I got so far...
    First I thought it was a problem with my tomcat setup, I would deploy my WAR and run the app. After
    viewing the report and closing the browser. I would not beable to delete the rpt file until I close Tomcat.
    I have now got a similar problem within Eclipse. (as far as I can tell its the same problem but even worse)
    If i create any report and design it or even a new blank report. And not do anything to it, just save it as a blank report. I then try delete the
    report. Right click and then delete.
    After a few seconds Eclipse brings up an error and says it cant delete the file, the reason it gives is
    Problems encountered while deleting resources.
      Could not delete 'C:\WorkSpace\Project\WebContent\Report1.rpt'.
        Problems encountered while deleting files.
          Could not delete: C:\WorkSpace\Project\WebContent\Report1.rpt.
    I have tried creating a fresh new project and only one report. And I still get the error.
    If I try delete the whole project perminatly it also gives the same error. (But deletes the default crystal report)
    I have to close Eclipse and then open it again before I can delete the rpt files properly.
    I have not always had this problem. It used to work fine (dont ask what I have done since
    cause I would not beable to tell, sorry)
    Hopefully someone can help me, as this is driving me insane, and having to stop and start Tomcat every
    time I want to deploy a new test version is not really an option.
    Cheers
    Darren

    Hi Merry,
    Thanks for getting back to me.
    My reports within Eclipse seem to be behaving themselves now and dying gracefully without and hassles,
    so I dont know what fixed that problem as I have not made any changes or done any updates. One of
    those things I guess.
    With regards to TOMCAT still having a handle on the reports, As far as I am aware I am putting the
    report source in session
    Below is my JSP that loads the report
    I store report name in session via a servlet and set all the DB connection details in the servlet also.
    imports....
    try {
       String reportName = session.getAttribute("Report").toString();
       ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
       if (clientDoc == null) {
          clientDoc = new ReportClientDocument();
          // Open report
          clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
          // ****** BEGIN LOGON DATASOURCE SNIPPET **************** 
             //Call the process to set all the database detail retrieved from web.xml
             // Custom function to set the connection details
             ReportFunctions.setConnection(clientDoc);
          // ****** END LOGON DATASOURCE SNIPPET ****************           
          // Store the report document in session
          session.setAttribute(reportName, clientDoc);
       // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
          // Create the CrystalReportViewer object
          CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
          //set the reportsource property of the viewer
          IReportSource reportSource = clientDoc.getReportSource();                    
          crystalReportPageViewer.setReportSource(reportSource);
          // set viewer attributes
          crystalReportPageViewer.setOwnPage(true);
          crystalReportPageViewer.setOwnForm(true);
          crystalReportPageViewer.setDisplayGroupTree(false);
          crystalReportPageViewer.setHasToggleGroupTreeButton(false);
          crystalReportPageViewer.setHasPrintButton(false);
          crystalReportPageViewer.setEnableDrillDown(false);
          // Process the report
          crystalReportPageViewer.processHttpRequest(request, response, application, null);
       // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
       } catch (ReportSDKExceptionBase e) {
        out.println(e);
    So far its very basic.
    How best can I kill and clean up once the web page is closed. I have tried a few options but dont seem to
    know the best way,
    I tried "onbeforeunload" but I dont know if this is the best practice,
    I have a session listener with sessionDestroyed but have not learnt how to envoke this correctly, or atleast when to correctly call it. And then I dont know how to clean out any loaded reports from here.
    I have used 
    request.getSession().invalidate();
    at the end of my JSP but that destoys everything everytime a user does anything on the page, (selecting any of the buttons on the report)
    I am still learning everyday, and so I appoligise for questions that I should really know, am being pushed into the deep end here so trying my best :).
    Thanks again.
    Cheers
    Darren
    Sorry for bumping this back the list, but I am at my wits end as how best to "clean out" the reports
    once they have been closed or timed out.
    Surely there must be a way to release all objects (be it a actaul rpt file or the classes12.jar) once the
    reports have been viewed and closed.
    Even if there is something I can load via another servlet that destroys anything that has to do
    with the main website.
    Thanks and again sorry for moving this back up the list. If i get no replies, ill assume this is impossible
    and that the only way to upload a new version of a report is to shut the whole Tomcat service and
    make the changes.
    Cheers
    Edited by: Darren Jackson on Dec 3, 2008 12:31 PM

  • Removing Software Applications from Leopard?

    I am a new Mac convert so excuse my stupid question, but I want to remove a software application from my Mac. How do I uninstall it properly? Here is what I have done so far, I deleted the icon from the Applications folder. I am thinking it cannot be that simple. What else do I need to do or go to find other traces of the program stored within Leopard or my HD?

    1. Normally, just dragging it to the trash is all that is needed.
    2. Some apps have their own uninstaller utility. If so, use it.
    3. http://www.versiontracker.com/dyn/moreinfo/macosx/31123 can take care of the app and any leftovers.
    Joe

  • Will Software Upgrade Delete every applicatio​n

    Please will software upgrade delete applications have already got in my device? and what is the benefits of  software upgrade? and if i have done the upgrade how do i get all my  applications back? please someone should help
    kaysteady

    The applications will stay, however some applications do not store data in a way compatible with an upgrade. To that end any saved information may be lost.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Accept as Solution" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the Star on the left of their post.

  • Application Status Report

    Hi Team,
    Request you to provide a document explaining all metrics available in Application Status Report.
    Thanks & Regards,
    Karthika R

    Hi,
    I'm not able to find a document explaining all metrics available in Application Status Report too.
    You could open the report with the SQL Report Builder. In Report Builder you can find where the data from and the data structure.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • No Data to display in Application failure report for a specific Application

    Hi ,
    For a specific application,Application failure report showing no data to display but for the same application other reports shows value.
    Application failure reports seems to work fine for some other application except few.Need to know the root cause.
    Kindly help us to sort this issue.
    Thanks & Regards,
    Preethi S

    Hi,
    Is there any error message when you run Application Failure Analysis report for the specific application?
    Does this application have any failure alerts?
    You may also look into operation manager even logs to check is there any errors or warnings.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Software Requirements for Reports on NT

    I am testing Oracle Reports on my personal
    NT box and using SQL*Net to go against Oracle 8.0.5 on an NT server for my data. I will need the NT server/Oracle 8.0.5 to service my production reports. It is not clear what software (for Oracle Reports) will need to be installed on the server. Help please. I've seen references to a "Report Server" and don't know what that is or if it is needed or required. Any help would be appreciated.

    System requirements | Adobe Premiere Pro
    (for initial activation of individual licensees, an adobe connection is required.)

  • HT1386 I had to replace the corrupted hard drive in my macbook pro recently, and after I did so I did a full factory software & application restore.  Now my iTunes says my iPhone 5 is no longer an authorized device.  What should I do?

    I had to replace the corrupted hard drive in my macbook pro recently, and after I did so I did a full factory software & application restore.  I had to rebuild my iTunes Library by dragging my music folders in my iTunes Media into the iTunes Application and rebuild my playlists manually.  After plugging my iPhone 5 into the computer USB, it immediately recognized my iPhone 5, showing: last backups, space left on my iPhone & all options available.  I then checked the box to manually manage music etc.  The problem I am now having is that when I actually try to drag music from my iTunes to my phone a prompt comes up saying that my iPhone is not an authorized device.  What should I do?  Any and all advice would be greatly appreciated!!

    jrmetzger,
    iOS runs on iPads and iPhones; OS X runs on Macs.
    Given your situation, I’d highly recommended that you purchase a SATA-to-USB adapter, so that you can test both your old disk and your new disk externally, since it might be that the problem is due to a faulty internal SATA cable rather than due to faulty disks.

  • Application Server Report Path

    Dear Oracle Gurus
    I am new to this area of expertise. We have a peculiar problem. Let me try to explain this
    We are running Oracle Appication server in Windows based environment( windows server 2003 i presume)
    we have multiple projects running in this server. Two of our projects are almost similar and identitcal. They share the same name for forms and reports but the content will be different.
    The problem is when we execute a call to a report from our application, the report with the same name from other project gets executed.
    I discussed this with our Hardware and network engineers. They said that the path to find the reports is specified in the windows registry file where it is specified that the folder of the other project is given first and then our project folder is specified next.
    Tempororily , they put our project folder's name first.
    I beileve that there should be some other better and permanant solution for this
    can anyone help me out in this
    with warm regards
    ssr

    Hi ssr,
    the best way is to create two or more report server with different names. For each report server you can define a sourceDir and tempDir. You must enter the values of the sourceDir and tempDir in the*.conf File from the reportserver. You will find the *.conf-File in the following directory: $ORACLE_HOME\reports\conf The name of the file is <reportservername>.conf. It is a XML-File. IN Line 15 or 16 you find the Part for the sourceDir and tempDir. After that you must restart the report server.
    Call from Forms:
    Wenn you call the application you use a "?config=..." part in the formsweb.cfg. Then you must use two diferent *.env-Files. In each *.env-File you add a new environment parameter. Excample REPORTSERVERNAME=.... In your Forms application you can read this parameter with TOOL_ENV.getvar('REPORTSERVERNAME', l_name); And than you can controll wich application use wich reportserver. In our enviroment it works fine.
    I hope that helps a little bit.
    - Sven

  • How to purge the config without deleting reports

    Hi all,
    How to quisce the config without deleting reports from reports tab.
    first I quisced and retired and then try to create the sonfig with the same name" it showing that name already exists"
    If I purged the config and created the config with the same name, its creating successfully but all the reports are deleting.
    Out TP is firing on us, if we delete the reports in reports tab.
    Please suggest with new idea.
    Regarsd

    Hi ,
    If I am not purging the config, I am getting below exception
    2009.11.09 at 04:16:01:443: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:132)
         at oracle.tip.adapter.b2b.data.DBContext.resetRuntime(DBContext.java:283)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:495)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.repos.core.driver.CatalogDriver.checkDirtyList(CatalogDriver.java:399)
         at oracle.tip.repos.core.driver.CatalogDriver.setRuntimeActiveandQuiescing(CatalogDriver.java:523)
         at oracle.tip.buslogic.common.ExecutionContextImpl.setRuntimeActiveandQuiescing(ExecutionContextImpl.java:799)
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:130)
         ... 4 more
    2009.11.09 at 04:16:01:445: Thread-44: B2B - (DEBUG) DBContext commit: Enter
    2009.11.09 at 04:16:01:450: Thread-44: Repository - (ERROR) Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.repos.core.driver.CatalogTransaction.changeObjectState(CatalogTransaction.java:184)
         at oracle.tip.repos.core.driver.CatalogTransaction.commit(CatalogTransaction.java:1504)
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:70)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:16:01:454: Thread-44: BusinessLogicLayer - (ERROR) Error -: AIP-11059: Invalid object {0} state {1} to persist
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:72)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:16:01:457: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:256)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:16:01:463: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11059: Invalid object {0} state {1} to persist : Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:256)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-11059: Invalid object {0} state {1} to persist : Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:72)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         ... 4 more
    Caused by: Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.repos.core.driver.CatalogTransaction.changeObjectState(CatalogTransaction.java:184)
         at oracle.tip.repos.core.driver.CatalogTransaction.commit(CatalogTransaction.java:1504)
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:70)
         ... 5 more
    2009.11.09 at 04:27:59:850: Thread-44: B2B - (DEBUG) oracle.tip.adapter.b2b.data.MsgListener:onMessage Enter
    2009.11.09 at 04:27:59:851: Thread-44: B2B - (DEBUG) DBContext beginTransaction: Enter
    2009.11.09 at 04:27:59:863: Thread-44: B2B - (DEBUG) DBContext beginTransaction: Leave
    2009.11.09 at 04:27:59:865: Thread-44: Repository - (ERROR) CatalogDriver - error switching context
    2009.11.09 at 04:27:59:867: Thread-44: Repository - (ERROR) CacheService dirty list contains 1 entries
    2009.11.09 at 04:28:00:836: Thread-44: Repository - (ERROR) Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.repos.core.driver.CatalogDriver.checkDirtyList(CatalogDriver.java:399)
         at oracle.tip.repos.core.driver.CatalogDriver.setRuntimeActiveandQuiescing(CatalogDriver.java:523)
         at oracle.tip.buslogic.common.ExecutionContextImpl.setRuntimeActiveandQuiescing(ExecutionContextImpl.java:799)
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:130)
         at oracle.tip.adapter.b2b.data.DBContext.resetRuntime(DBContext.java:283)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:495)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:28:00:839: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:132)
         at oracle.tip.adapter.b2b.data.DBContext.resetRuntime(DBContext.java:283)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:495)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:28:00:842: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:132)
         at oracle.tip.adapter.b2b.data.DBContext.resetRuntime(DBContext.java:283)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:495)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.repos.core.driver.CatalogDriver.checkDirtyList(CatalogDriver.java:399)
         at oracle.tip.repos.core.driver.CatalogDriver.setRuntimeActiveandQuiescing(CatalogDriver.java:523)
         at oracle.tip.buslogic.common.ExecutionContextImpl.setRuntimeActiveandQuiescing(ExecutionContextImpl.java:799)
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:130)
         ... 4 more
    2009.11.09 at 04:28:00:844: Thread-44: B2B - (ERROR) MsgListener:onMessage Activate DBContext failed with Exception - Error -: AIP-50025: Repository error
    2009.11.09 at 04:28:00:847: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:132)
         at oracle.tip.adapter.b2b.data.DBContext.resetRuntime(DBContext.java:283)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:495)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-11435: Cannot switch configuration context when entries exist in Persistency Service dirty list. Transaction must be flushed before switching context.
         at oracle.tip.repos.core.driver.CatalogDriver.checkDirtyList(CatalogDriver.java:399)
         at oracle.tip.repos.core.driver.CatalogDriver.setRuntimeActiveandQuiescing(CatalogDriver.java:523)
         at oracle.tip.buslogic.common.ExecutionContextImpl.setRuntimeActiveandQuiescing(ExecutionContextImpl.java:799)
         at oracle.tip.adapter.b2b.data.B2BExecutionContext.setRuntimeActiveAndQuiescing(B2BExecutionContext.java:130)
         ... 4 more
    2009.11.09 at 04:28:00:849: Thread-44: B2B - (DEBUG) DBContext commit: Enter
    2009.11.09 at 04:28:01:838: Thread-44: Repository - (ERROR) Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.repos.core.driver.CatalogTransaction.changeObjectState(CatalogTransaction.java:184)
         at oracle.tip.repos.core.driver.CatalogTransaction.commit(CatalogTransaction.java:1504)
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:70)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:28:01:842: Thread-44: BusinessLogicLayer - (ERROR) Error -: AIP-11059: Invalid object {0} state {1} to persist
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:72)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:28:01:844: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:256)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    2009.11.09 at 04:28:01:850: Thread-44: B2B - (ERROR) Error -: AIP-50025: Repository error : Error -: AIP-11059: Invalid object {0} state {1} to persist : Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:256)
         at oracle.tip.adapter.b2b.msgproc.DbAccess.doCommit(DbAccess.java:2485)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:505)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:400)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: Error -: AIP-11059: Invalid object {0} state {1} to persist : Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:72)
         at oracle.tip.adapter.b2b.data.DBContext.commit(DBContext.java:250)
         ... 4 more
    Caused by: Error -: AIP-11059: Invalid object BusinessMessage_C58F state 2 to persist
         at oracle.tip.repos.core.driver.CatalogTransaction.changeObjectState(CatalogTransaction.java:184)
         at oracle.tip.repos.core.driver.CatalogTransaction.commit(CatalogTransaction.java:1504)
         at oracle.tip.buslogic.common.Transaction.commit(Transaction.java:70)
         ... 5 more

  • In iphone 4s some software got deleted now its showing demo software

    in iphone 4s some software got deleted now its showing demo software

    What specific apps?
    Just what were you doing when they got deleted?

  • Application Usage Report Blank - ARD 3.8

    We are trying to run an Application Usage Report on one of our clients. We are using both 3.8 Admin and Client.
    It will run the report but the output is simply blank.
    Has anyone seen this before? Any advice. Tried it on several clients and same issue each time.

    Hi all - I'm suffering from similar ARD/VNC/ScreenSharing problems, too - in this case however Yosemite to Yosemite!
    Client computer:
         Laptop: MacBook Pro
         Yosemite 10.10.2
         ARD 3.8.3
    Remote Computer:
         Desktop: MacMini
         Yosemite 10.10.3
         ARD 3.8.3
    I cannot connect to my remote machine (to control or just view it), neither with ARD nor with VNC.
    It does not work with Remote Management enabled nor Screen Sharing.
    Attempting a connection reports - after a while - the error "Connection failed ... Please make sure that Screen Sharing ... is enabled" (but it is enabled!)
    In the log on the client machine the following entry appears:
    Screen Sharing: SSSessionView.m:1815:-[SSSessionView ssSession:connectDidFail:]: Communications error
    In the log on the remote machine the following entry appears:
    com.apple.xpc.launchd[1]: (com.apple.screensharing[692]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.screensharing.server
    Note, however that other functions work:
    - On my Laptop ARD reports that the remote computer is available and displays the user and the current application correctly
    - A connection does seem to be established between the client and the remote machine, because I can send a "Message to the Administrator" from the remote machine back to the client machine, which is correctly displayed on the client machine.
    Come on Apple - you seem to have forgotten your credo "It just works!"
    I thought I would never say it, but thank god for TeamViewer!

  • Very simple question, how do you configure windows 8.1 to use a SF card as the default install location for software applications?

    Very simple question, how do you configure windows 8.1 to use a SD card / external drive as the default install location for software applications? Primarily interested in apps installed from the windows store. This should be available in the settings
    charm within the windows store. This must have been overlooked in the development of windows 8.1 or is a bug.
    Regards, Bill
    * update
    I've tried modifying this key and the path:
    “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx”
    http://answers.microsoft.com/en-us/windows/forum/windows_8-windows_store/how-do-you-install-apps-in-windows-8-from-the/c4fbe2a8-fd3d-41c1-b9a6-6f881eed374f
    Also tried using symlinks as detailed here:
    http://social.technet.microsoft.com/Forums/windows/en-US/8eee52c2-db0f-4032-8c72-7cd999e8b41a/windows-8-apps-installing-to-secondary-drive?forum=w8itprogeneral

    Here's some links I've used to try to figure this out:
    http://social.technet.microsoft.com/Forums/windows/en-US/2dfc0cd9-7d1b-41de-abce-e03fb6a5a383/metro-apps-not-working-in-windows-8-pro-x64-after-moving-users-and-programdata-folders?forum=w8itproinstall
    http://social.technet.microsoft.com/Forums/windows/en-US/8eee52c2-db0f-4032-8c72-7cd999e8b41a/windows-8-apps-installing-to-secondary-drive?forum=w8itprogeneral
    http://social.technet.microsoft.com/Forums/windows/de-DE/f5e33ac9-beab-4b99-b3ca-7cb5e6f415e4/how-do-you-change-metro-apps-default-install-location?forum=w8itprogeneral
    Regards, Bill
    The registry method does not work with 8.1.  I found this out the hard way.  Doing it on 8.1 will leave you reinstalling the OS if you didn't do a SRP beforehand.

  • HT1600 My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    My apple tv stopped working during a movie. I tried to reload software .it deleted it, but won 't reload it.

    Welcome to the Apple Community Turbomedic.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
        1.    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
        2.    Connect the micro USB cable to the Apple TV and to your computer.
        3.    Reconnect the power cable (only for Apple TV 3)
        4.    Open iTunes.
        5.    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

Maybe you are looking for

  • Oracle 10g new feature to backup to tape?

    I heard rumours that Oracle 10g has new features to backup to tape directly. I don't know exactly how this is done, and I'd like the experts to comment. What I've discovered so far is that there is this program called Legato Single Server Version (LS

  • Song plays for 13 seconds, then stops. Please Help!

    This has never been an issue until now, and it is only this one song. I downloaded the song "U and Dat" by E-40, along with "Me and U" by Cassie, "Tell Me When To Go" by E-40, "It's Going Down" by Yung Joc, "Over My Head (Cable Car)" by The Fray, and

  • Regarding dropdowns in Adobe forms

    Hi experts. I am trying to create an Adobe Form. I have 2 dropdown lists in there. Depending on the value selected in the 1st dropdown i want to populate data in 2nd dropdown list. Can i do this using javascript..If yes , how. Or is there any other a

  • Wake for network access won't wake

    I have my MacPro connected wirelessly to my MacBook Pro and both are set to "Wake for network access" but neither of them wakes the other up when trying to connect to each other. Any ideas? Thanks guys!

  • JDeveloper Studio 10.1.3 zip file is corrupted

    Downloaded JDeveloper Studio 10.1.3 half dozen time over last week, but all downloaded zip file were corrupted. Has anyone got a good download? Or is there another mirror site I can grab the file from? Thanks! James