What is causing my "Publish Enterprise Summaries" in Global Scheduled Services to fail

We are a relatively new P6 installation.  Publish Enterprise Summaries has failed from the beginning. The only error I see in the log file is below.  Any clue to what we need to fix? 
2014-10-21 06:37:57:[TASK]:[PxEpsSpread]: [4] CORE(SQL): Errors occurred when executing following statement: DECLARE vupdate_date varchar2(20); msg varchar(2000); vspid number; vtotal pls_integer := 0; vupd pls_integer := 0; vins pls_integer := 0; i_start pls_integer; i_end pls_integer; vsec number; vrate number; start_time timestamp; end_time timestamp; vmsg varchar2(1000); vmsg_cnt pls_integer := 0; df varchar2(22) := 'yyyy-mm-dd hh24:mi:ss'; vparent_wbs_id projwbs.parent_wbs_id%type; vobs_id obs.obs_id%type; vobs_name obs.obs_name%type; BEGIN vupdate_date := :update_date; vspid := sys_context('USERENV', 'SID') ; i_start := dbms_utility.get_time; execute immediate 'select current_timestamp from dual' into start_time; for erec in (SELECT distinct eh.parentobjectid FROM project p, projwbs pw, epshierarchy eh WHERE p.project_flag='Y' and p.proj_id = pw.proj_id and pw.proj_node_flag ='Y' and eh.childobjectid = pw.parent_wbs_id and p.orig_proj_id IS NULL and p.px_last_update_date > to_date(vupdate_date,'yyyy-mm-dd hh24:mi:ss') ) LOOP select parent_wbs_id, pw.obs_id, o.obs_name into vparent_wbs_id, vobs_id, vobs_name from projwbs pw, obs o where pw.obs_id = o.obs_id and pw.wbs_id = erec.parentobjectid; DELETE /*+ INDEX(EPSSPREAD NDX_EPSSPREAD_OBJID) */ FROM EPSSPREAD where ObjectID = erec.parentobjectid; INSERT INTO EpsSpread (OBJECTID ,ID ,NAME ,PARENTOBJECTID ,PROJECTOBJECTID ,OBSOBJECTID ,OBSNAME ,STARTDATE ,ENDDATE ,ACTUALLABORUNITS ,ACTUALNONLABORUNITS ,ATCOMPLETIONLABORUNITS ,ATCOMPLETIONNONLABORUNITS ,BASELINEPLANNEDLABORUNITS ,BASELINEPLANNEDNONLABORUNITS ,EARNEDVALUELABORUNITS ,ESTIMATEATCOMPLETIONLABORUNITS ,ESTIMATETOCOMPLETELABORUNITS ,PLANNEDVALUELABORUNITS ,REMAININGLABORUNITS ,REMAININGNONLABORUNITS ,ACTUALCOST ,ACTUALEXPENSECOST ,ACTUALLABORCOST ,ACTUALMATERIALCOST ,ACTUALNONLABORCOST ,ACTUALTOTALCOST ,ATCOMPLETIONEXPENSECOST ,ATCOMPLETIONLABORCOST ,ATCOMPLETIONMATERIALCOST ,ATCOMPLETIONNONLABORCOST ,ATCOMPLETIONTOTALCOST ,BASELINEPLANNEDEXPENSECOST ,BASELINEPLANNEDLABORCOST ,BASELINEPLANNEDMATERIALCOST ,BASELINEPLANNEDNONLABORCOST ,BASELINEPLANNEDTOTALCOST ,EARNEDVALUECOST ,ESTIMATEATCOMPLETIONCOST ,ESTIMATETOCOMPLETECOST ,PLANNEDVALUECOST ,REMAININGEXPENSECOST ,REMAININGLABORCOST ,REMAININGMATERIALCOST ,REMAININGNONLABORCOST ,REMAININGTOTALCOST ) SELECT a.objectid, a.id, a.name, a.parentobjectid, a.projectobjectid, a.obsobjectid, a.obsname, a.startdate, a.enddate, a.ACTUALLABORUNITS, a.ACTUALNONLABORUNITS, a.ATCOMPLETIONLABORUNITS, a.ATCOMPLETIONNONLABORUNITS, a.BASELINEPLANNEDLABORUNITS, a.BASELINEPLANNEDNONLABORUNITS, a.EARNEDVALUELABORUNITS, a.ESTIMATEATCOMPLETIONLABORUNITS, a.ESTIMATETOCOMPLETELABORUNITS, a.PLANNEDVALUELABORUNITS, a.REMAININGLABORUNITS, a.REMAININGNONLABORUNITS, a.ACTUALCOST, a.ACTUALEXPENSECOST, a.ACTUALLABORCOST, a.ACTUALMATERIALCOST, a.ACTUALNONLABORCOST, a.ACTUALTOTALCOST, a.ATCOMPLETIONEXPENSECOST, a.ATCOMPLETIONLABORCOST, a.ATCOMPLETIONMATERIALCOST, a.ATCOMPLETIONNONLABORCOST, a.ATCOMPLETIONTOTALCOST, a.BASELINEPLANNEDEXPENSECOST, a.BASELINEPLANNEDLABORCOST, a.BASELINEPLANNEDMATERIALCOST, a.BASELINEPLANNEDNONLABORCOST, a.BASELINEPLANNEDTOTALCOST, a.EARNEDVALUECOST, a.ESTIMATEATCOMPLETIONCOST, a.ESTIMATETOCOMPLETECOST, a.PLANNEDVALUECOST, a.REMAININGEXPENSECOST, a.REMAININGLABORCOST, a.REMAININGMATERIALCOST, a.REMAININGNONLABORCOST, a.REMAININGTOTALCOST FROM (select /*+ INDEX(EH NDX_EPSHIER_PARENTOBJ) INDEX(PS NDX_PROJSPREAD_PARENTEPSID) */ eh.parentObjectid objectid, eh.parentid ID, eh.parentname NAME, vparent_wbs_id ParentObjectId, eh.parentprojectid ProjectObjectId, vobs_id ObsObjectId, vobs_name ObsName, ps.startdate,ps.enddate, SUM(ps.ACTUALLABORUNITS) ACTUALLABORUNITS, SUM(ps.ACTUALNONLABORUNITS) ACTUALNONLABORUNITS, SUM(ps.ATCOMPLETIONLABORUNITS) ATCOMPLETIONLABORUNITS, SUM(ps.ATCOMPLETIONNONLABORUNITS) ATCOMPLETIONNONLABORUNITS, SUM(ps.BASELINEPLANNEDLABORUNITS) BASELINEPLANNEDLABORUNITS, SUM(ps.BASELINEPLANNEDNONLABORUNITS) BASELINEPLANNEDNONLABORUNITS, SUM(ps.EARNEDVALUELABORUNITS) EARNEDVALUELABORUNITS, SUM(ps.ESTIMATEATCOMPLETIONLABORUNITS) ESTIMATEATCOMPLETIONLABORUNITS, SUM(ps.ESTIMATETOCOMPLETELABORUNITS) ESTIMATETOCOMPLETELABORUNITS, SUM(ps.PLANNEDVALUELABORUNITS) PLANNEDVALUELABORUNITS, SUM(ps.REMAININGLABORUNITS) REMAININGLABORUNITS, SUM(ps.REMAININGNONLABORUNITS) REMAININGNONLABORUNITS, SUM(ps.ACTUALCOST) ACTUALCOST, SUM(ps.ACTUALEXPENSECOST) ACTUALEXPENSECOST, SUM(ps.ACTUALLABORCOST) ACTUALLABORCOST, SUM(ps.ACTUALMATERIALCOST) ACTUALMATERIALCOST, SUM(ps.ACTUALNONLABORCOST) ACTUALNONLABORCOST, SUM(ps.ACTUALTOTALCOST) ACTUALTOTALCOST, SUM(ps.ATCOMPLETIONEXPENSECOST) ATCOMPLETIONEXPENSECOST, SUM(ps.ATCOMPLETIONLABORCOST) ATCOMPLETIONLABORCOST, SUM(ps.ATCOMPLETIONMATERIALCOST) ATCOMPLETIONMATERIALCOST, SUM(ps.ATCOMPLETIONNONLABORCOST) ATCOMPLETIONNONLABORCOST, SUM(ps.ATCOMPLETIONTOTALCOST) ATCOMPLETIONTOTALCOST, SUM(ps.BASELINEPLANNEDEXPENSECOST) BASELINEPLANNEDEXPENSECOST, SUM(ps.BASELINEPLANNEDLABORCOST) BASELINEPLANNEDLABORCOST, SUM(ps.BASELINEPLANNEDMATERIALCOST) BASELINEPLANNEDMATERIALCOST, SUM(ps.BASELINEPLANNEDNONLABORCOST) BASELINEPLANNEDNONLABORCOST, SUM(ps.BASELINEPLANNEDTOTALCOST) BASELINEPLANNEDTOTALCOST, SUM(ps.EARNEDVALUECOST) EARNEDVALUECOST, SUM(ps.ESTIMATEATCOMPLETIONCOST) ESTIMATEATCOMPLETIONCOST, SUM(ps.ESTIMATETOCOMPLETECOST) ESTIMATETOCOMPLETECOST, SUM(ps.PLANNEDVALUECOST) PLANNEDVALUECOST, SUM(ps.REMAININGEXPENSECOST) REMAININGEXPENSECOST, SUM(ps.REMAININGLABORCOST) REMAININGLABORCOST, SUM(ps.REMAININGMATERIALCOST) REMAININGMATERIALCOST, SUM(ps.REMAININGNONLABORCOST) REMAININGNONLABORCOST, SUM(ps.REMAININGTOTALCOST) REMAININGTOTALCOST FROM projectspread ps,epshierarchy eh WHERE eh.childobjectid = ps.parentepsobjectid AND eh.parentobjectid = erec.parentobjectid group by eh.parentObjectid, eh.parentid, eh.parentname, vparent_wbs_id, eh.parentprojectid, vobs_id, vobs_name, ps.startdate, ps.enddate ) a; vins := vins+SQL%ROWCOUNT; commit; END LOOP; vtotal := vins; i_end := dbms_utility.get_time; execute immediate 'select current_timestamp from dual' into end_time; vsec := round(( (i_end-i_start) * 0.01), 3); if vsec > 0 then vrate := round( vtotal / vsec , 3); else vrate := 0; end if; vmsg := 'Success[true],' || ' Start[' || to_char(start_time, df) || '], End[' || to_char(end_time, df) || '], ' || ' Elapsed[' || trim(to_char(vsec, '99999.99')) || 's], ' || ' Count[' || trim(to_char(vtotal, '999999999')) || '], ' || ' Throughput[' || trim(to_char(vrate, '99999999.99')) || '/s], ' || ' Pages[1], ' || ' Inserted[' || trim(to_char(vins, '999999999')) || '], ' || ' Updated[' || trim(to_char(vupd, '999999999')) || ']'; vmsg_cnt := vmsg_cnt + 1; DBMS_OUTPUT.PUT_LINE(vmsg); EXCEPTION when others then ROLLBACK; vmsg := 'Success[false]'; vmsg_cnt := vmsg_cnt + 1; DBMS_OUTPUT.PUT_LINE(vmsg); vmsg := SQLERRM; vmsg_cnt := vmsg_cnt + 1; DBMS_OUTPUT.PUT_LINE(vmsg); raise; END;   

>
Efstratios Karaivazoglou wrote:
> Which version of BOBJ (incl. SP and FP) are you using?
>
> Regards,
>
> Stratos
BusinessObjects XI 3.1 SP2
FixPack 2.6
Edited by: Erika Atencio on Sep 1, 2010 8:46 PM

Similar Messages

  • XML Publisher Enterprise Installation

    I installed Xml Publisher Enterprise version 5.6.2 to our test PC with its own oracle home as c:\ora_xmlp. The installation ran successfully. But when I ran xmlpserverstart.bat, it stopped at the line: "Oracle containers for J2EE log (10.1.3.0) initialized..." and didn't go on. Should I use the same path as oracle database or application server?
    Please help, Thanks.
    - Jessie

    Hi Jessie.
    That's what it's supposed to do. That message means the OC4J engine started properly. Now you can access the application by going to:
    http://localhost:15101/xmlpserver
    unless you changed anything in the install (which I'm assuming from the formulation of your note is nothing).
    Cheers,
    Dave

  • XML Publisher Enterprise error

    Dear all:
    When I create and run the report in the "XML Publisher Enterprise Release 5.6.2" ,shows the error as follow, how can I solve the problem?
    javax.servlet.ServletException: Attribute missing in : 'url'
         at oracle.apps.xdo.servlet.XDOServlet.handleRequest(XDOServlet.java:211)
         at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:138)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:52)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:629)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    my environment is : XML Publisher Release 5.6.2
    Platform is : Windows XP 32bit
    Regards
    Terry

    Hi Helios:
    What is the error?
    javax.servlet.ServletException: Attribute missing in : 'url'
    at oracle.apps.xdo.servlet.XDOServlet.handleRequest(XDOServlet.java:211)
    at oracle.apps.xdo.servlet.XDOServlet.doGet(XDOServlet.java:138)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:52)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:629)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

  • XML Publisher Enterprise Edition's report errors

    I have installed XML Publisher Enterprise Edition.when i open it through explorer i can see it's different folder that also have some report as Executive,Financials,HR Manager,Sales Manager,Warehouse Managment.when i try to open reports under these folders as Employee Salary Report under HR it gives error
    "The report cannot be rendered because of an error, please contact the administrator".
    plz help me how i can view these reports.same problem in my own created report.

    Shaun,
    How did get World Sales report work? What did you put on URL? I put:
    http://Sever name:15101/xmlpserver/Sales Manager/World Sales/WorldSales.xml
    It always showed error message to me.
    Please help, Thanks.
    - Jessie

  • BI Publisher Enterprise vs BIP Desktop

    Hello,
    I have been using the desktop version (the plug-in for MS Word) of BIP exclusivley but now I'm trying to dabble in the BIP Enterprise app. I have my data source defined, I have my .rtf template uploaded, but I'm not sure how to incorporate my .xsl file. Using the plug-in for Word, I add an import statement to import the .xsl file, but it doesn't work when I try to use the same .rtf template in the Enterprise app. When I remove the import statement I get results in my report...otherwise I get a not-so-helpful error message ("The report cannot be rendered because of an error, please contact the administrator.).
    I've tried using <?import:file:///D:\product\......\xhtml-to-xslfo.xsl?> and <xsl:import href="http://.../xhtml-to-xslfo.xsl" /> but neither work and I'm not sure if my problem lies in the import statement or my lack of knowledge in BIP Enterprise.
    Thank you,
    Tammy
    Edited by: 73pixieGirl on Aug 16, 2010 1:56 PM

    Hi Pieter,
    I'm afraid the white paper isn't telling me anything I didn't already know. I've tried to import via the http:// and file:/// route but I still get a generic error message - The report cannot be rendered because of an error, please contact the administrator. I have "Disable External References" set to False.
    Here's what I'm doing...maybe you can see if I'm doing something wrong:
    - After adding the import statement to my .rtf file, I edit my Report in BI Publisher Enterprise and upload the .rtf file under Layouts, Manage Template Files (I also added the .xsl file for S&Gs)
    - Next I create a new Layout, selecting my .rtf file as the Template, then select the output formats.
    - Then I click View and select my new Layout and whatever format (pdf preferrably)
    - This is when I get the error message
    Am I doing anything wrong? The only thing I can think of is maybe BIP isn't finding my .xsl file??
    Thank you,
    Tammy

  • What may cause ORA-00471 ?

    Hello,
    I got for the first time ever the ORA-00471 message.
    Here in my alert.log :
    Wed Feb 18 18:53:34 2009
    Errors in file /bases/TEST9/bdump/test9_pmon_32749.trc:
    ORA-00471: DBWR process terminated with error
    Wed Feb 18 18:53:34 2009
    PMON: terminating instance due to error 471
    Instance terminated by PMON, pid = 32749
    and here is the trace file :
    /bases/TEST9/bdump/test9_pmon_32749.trc
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    JServer Release 9.2.0.4.0 - Production
    ORACLE_HOME = /opt/oracle/920
    System name: Linux
    Node name: xxxxxxxxxxxxr
    Release: 2.6.9-78.0.13.ELsmp
    Version: #1 SMP Wed Jan 7 17:52:47 EST 2009
    Machine: i686
    Instance name: TEST9
    Redo thread mounted by this instance: 1
    Oracle process number: 2
    Unix process pid: 32749, image: oracle@xxxxxxxxx (PMON)
    *** 2009-02-18 18:53:34.747
    *** SESSION ID:(1.1) 2009-02-18 18:53:34.466
    error 471 detected in background process
    ORA-00471: DBWR process terminated with error
    There is very few documentation about this error, even on metalink.
    Do you know what may cause this ?
    if found this possibility after google-ing a litte bit :
    The DBWR process will fail if it can not access the disk, even for a short period of time.
    This might be due to hardware problems ? But I have several instances on this machine, and only this one crashed.
    Any idea ?
    Thanks for your help

    You may need to upgrade your 9.2.0.6 database to 9.2.0.8.
    Is it possible your OS does not have the required patches?This is still 9.2.0.4. I can apply this patch, but that doesn't give me any explanation.
    Is there a bug related to ORA-00471 fixed in this patch ?
    How much memory / swap space is available?
    Has an Oracle database ever run on this machine?There are several instances on this machine running for months, and I've nerver seen this error before. Memory and disk are OK.

  • I have one of the original iPads. It now keeps displaying activation required. I have to keep rebooting it does anyone know what is causing this.r

    I have one of the original iPads. For some reason it has started showing Verification required. I do not know what is causing this and it keeps rebooting.
    Can anyone offer any advice?
    Many thanks
    Laurence

    1. Windows 8.1 Enterprise w Update is the best. It allows you for sideloading in corporate environment without additional tools and licenses.
    http://technet.microsoft.com/en-us/windows/jj874388.aspx
    2. N series is for EU (without IE).
    3. Profesional is fine, but you will need some tools to achieve the same functionality that you have in "pack" Enterprise.
    4. VL is volume license, a type of license for multiple computers (to say it simply)
    5. MSDN forum is better alternative for problems like this.
    6. Attached to MSDN are licenses or at least references to web resources. Read license agreements carefully and let your installation and use follow the license.
    Rgds
    Milos

  • View the .rtf file not display the data in BI Publisher Enterprise.

    Hi,
    Platform: OBIEE 10g in NT XPsp2
    View the .rtf file not display the data in BI Publisher Enterprise.
    Step 1, I created Answer-request, create .rtf file with Word and add the request name, Add bar chart and table, preview PDF is working fine with data, Upload this template to Answers, View Template from Answer is working fine with data.
    Step 2, Answers – More Products > BI Publisher > My Folders > Create a new report > Edit > Data Model > New > Type: SQL Query > Data Source: Oracle BI EE > Query Builder > from SupplierSales assign Customer, Periods, Sales Facts (select Region, state, Year, Units Shipped) > Results > Save > Save
    Click Layouts > New > enter Name ….. > Click Layouts > borrows .rtf file in Manage T file > Upload > Save > Click View
    It is showing only the .rtf file without data. Why there is no data?
    Please guide me to solve this issue.
    Thanks,
    Jo

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • E-mails with attachments, mostly photos, are replicating themselves in my inbox, 100 or more at a time. What is causing this and how do I fix it?

    It is an intermittent, but a regular-enough-to-be-really-annoying occurrence........when someone sends an e-mail, to which is attached a photo of some kind, or a picture document, it will replicate in my inbox, sometimes 100 or more copies at a time. I delete all of them, empty the trash, and will also go to the Yahoo web version of my e-mail and delete the offending e-mail from there and empty the trash. Sometimes worked. Now that process isn't working, and this particular e-mail just filled up my inbox with over 100 copies of itself, even after the other steps were taken. Can't get any incoming mail.
    This log jam of replicated e-mails prevents incoming and new mail from reaching the inbox.
    Needless to say, am not too happy about it. What is causing it, and how do I fix it, other than to go to Outlook for my e-mail client....? :0) This, coupled with the constant "not responding" each time I try to send an e-mail, delete items from the "sent" or inbox folders, is really driving me nuts. We have a crappy internet connection, and that is likely part of it, but the "not responding" is not a new thing with Thunderbird, either.
    Thanks in advance for any assistance you can provide. I dislike the web version of Yahoo, and don't want to have to switch to that, as it just doesn't meet e-mail needs. Would like to get Thunderbird fixed.

    I have not seen your error in either my IE or my chrome. I do note that you are using a "strict" Document Type Declaration.
    You might try a transitional DTD, which should be more forgiving than the strict:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    Other than that, I don't see anything particular (because I don't see the error, either) that would cause the menu to drop vertically instead of horizontally.
    Beth

  • I have an Apple MacBook Pro and when surfing the web my computer will slow to a crawl and I will have a multi-colored spinning wheel visible until my latest request is handled.  What is causing this and is there a way to prevent this from occuring

    I have a MacBook Pro.  When surfing the web it will eventually slow to a crawl.  When this occurs, there will be a small multi-colored wheel spinning until my latest command is handled.  What is causing this and is there a way that I can modify or prevent this from happening?  Is there a setting that will prevent this?

    When you next have the problem, note the exact time: hour, minute, second.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Scroll back in the log to the time you noted above. Select any messages timestamped from then until the end of the episode, or until they start to repeat. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • BI Publisher Enterprise integration with 11.5.10.2

    Hi all!
    We are currently trying to leverage the XML publisher of 11i for any new report requests we have so we are more in line with fusion when we get there, if ever! The question for the group is that we found it a little conveluted to create the data definition and were wondering if we could leverage the enterprise edition (we have licences) to actually do that and load them in the database... Anyone any idea/experience in doing so?
    Thanks,
    G

    Hi Paul,
    Thanks for the reply on this post. The reason we are looking at BI publisher enterprise is that is seems to provide a better GUI for developers to design the data definition. Right now we have developers using Jdeveloper as an XML editor following the guidelines provided in the XML 5.6.3 user guide which per my developers comment is not as easy to use as Report builder which provides a lot of flexibility.
    So our hope/goal now is to find a better way to develop the data definition or at least make it as efficient as possible. Am I missing something? Maybe there is already such functionality in XML that we are not familiar with...
    G

  • Trash will not delete from trash folder! What can cause this effect?

    Trash will not delete from trash folder! What can cause this effect?

    u can actually force it to delete, oviously i assume you dont have the application or data etc open neware else?
    try restarting your computer, go into finder close all your open applications etc, servers, **** even clear your data in your web browser, do a disk utility check and verify your drives and repair em if nessicary.
    as chamar suggested look at http://www.thexlab.com/faqs/trash.html
    i had the same problem before but with a good 5-10 minutes of googling i was able to solve it..
    best of luck

  • After updating latest security update for my OSX 10.7.5 one of my usb port is not working now.how do i know what is cause that usb port is not working after security update

    one of usb port in my macbook pro havent work after i ve updated latest security update for osx 10.7.5, how do i know what is cause that usb port is good or bad

    On a Mac running v10.7.2, the only way to reinstall Safari is to reinstall OS X using OS X Recovery.
    Safari 5.1.1 is for Snow Leopard. It will not run on a Mac with v10.7 installed.

  • I can't click on the icons at the top of a site. What's causing this?

    I have firefox and it's having a strange problem today. When I'm on facebook, I can't click on the icons at the top. I can't click the message, friend request, notifications, home, profile icons and can't click the one that allows you to sign out. So i can't even sign out. What I mean by can't click is when I put the cursor over those icons, it doesn't change into the finger. When I left click it anyway, nothing happens. This doesn't happen in internet explorer, but I want to keep using firefox. What's causing this? I also noticed that this doesn't just happen on facebook. I've uninstalled and reinstalled firefox. I restarted the PC. It didn't help.

    The Yahoo! Toolbar extension has been reported to cause this issue.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    I have two graphics workers on osx 8.  They are both complaining that their files are changing label colors on it own.  Any idea what could cause this?

    and there were and have been problems with any two nvidia cards which was the main part of my question.
    To provie details try pasting all but serial number from system profile. Sorry but Mac Pro tells me nothing, not model, year, or what graphic card it came with or updated with.

Maybe you are looking for