CWB Run Progress Report - Not working

Hello Gurus,
In CWB, I am unable to run Progress Report of the Plan.
System hangs upon hitting "Run Report" after selecting the Plan for which the Progress Report is to be generated. (Eventually I need to close the browser)
"BEN:CWB Plan context for reporting" is selected.
I am running this report after running Participation Process.
Can anyone help me find, where is the catch and how to solve it.
Regards,
Jeeva

In BI Publisher Admin, check security configuration - open Roles and Permissions and check the report folder has necessary permissions to other user group.

Similar Messages

  • Drill down report not working in 1og report

    hi all,
    Drill down report not working in 1og.
    in 6i it working good but 10g not working .
    plz help any one.
    thanks

    Hello,
    For detailled instructions about hyperlinks :
    Oracle® Reports Building Reports
    10g Release 2 (10.1.2)
    B13895-01
    3.6.10.1.8 Creating a hyperlink using the Property Inspector
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b13895/orbr_howto.htm#i1062802
    Regards

  • CDR report not working

    Hi,
    We have LYNC 2013 and Monitoring is enabled. the CDR report is not working. even User Activity summary for telconferencing and for audio, reports not working.
    Kindly suggest troubleshooting steps.
    Can we have any SQL query to fetch the report from database?
    Thanks
    jitender

    Hi Raju,
    From Monitoring server , CDR report is not working. Even "User Activity Report" not working and giving below error for "Telephony Conference" and as well for "A/V Conference"
    " No results match the report filters. Change the filter values and submit the query again."
    Thanks
    jitender

  • IPS event monitor and reports not working

    Dear after upgrading my IPS from E3 to E4  the event monitor  and reports not working, can you please advice my to solve this issues

    Hi All,
    Filter settings below:
    The filter works partially as I don't get alerts on the IPS itself.
    Firewall LOG:
    4          Feb 14 2014          15:33:22                              39715                    514          IPS requested to drop UDP packet from SOURCE_VLAN_NUMBER:/39715 to DESTINATION_VLAN_NUMBER:/514
    IPS LOG (when enabled):
    evIdsAlert: eventId=1352793300955167909  vendor=Cisco  severity=low 
      originator:  
        hostId: SSM02 
        appName: sensorApp 
        appInstanceId: 1192 
      time: Feb 14, 2014 15:33:22 UTC  offset=0  timeZone=GMT00:00 
      signature:   description=IP Fragment Too Small  id=1206  version=S212  type=anomaly  created=20030801 
        subsigId: 0 
        sigDetails: Too many small IP fragments in datagram 
      interfaceGroup: vs0 
      vlan: 0 
      participants:  
        attacker:  
          addr: 172.x.x.x  locality=OUT 
          port: 39715 
        target:  
          addr: x.x.x.x  locality=OUT 
          port: 514 
          os:   idSource=unknown  type=unknown  relevance=relevant 
      alertDetails: InterfaceAttributes:  context="single_vf" physical="Unknown" backplane="GigabitEthernet0/1" ; 
      riskRatingValue: 50  targetValueRating=medium  attackRelevanceRating=relevant 
      threatRatingValue: 50 
      interface: GigabitEthernet0/1  context=single_vf  physical=Unknown  backplane=GigabitEthernet0/1 
      protocol: udp 
    Our next step is to make a service policy exception on the firewall itself. We are also considering reloading the IPS device or at least the analysis engine.
    Thanks for all your help so far. Any more suggestions are most welcome. I'll keep you up to date.
    Regards
    Mariusz

  • After i install Visual-Studio 2013 crystal-report not working

    hi
    after i install Visual-Studio 2013 crystal-report not working on my Visual-Studio 2010 projects
    when i try to open crystal-report i see this:

    Hi E_gold,
    Crystal Reports forum may be a better place for you.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Interactive Reports not working with APEX listener

    Hi,
    I have posted this question APEX listener forum couple of weeks ago but very few responses.
    If any one from here can help then it would be great.
    Interactive Reports not working with APEX listener
    Best Regards,
    Baig

    Sorry for late response.
    It was a firewall issue

  • Discoverer report not working on R12 !

    We have just migrated to R12 from 11i and some of the discoverer query is not working, but the same is working fine when we ran thru SQL Developer or TOAD.
    Is there any context (mo_global.set_policy_context) needs to be set in Discoverer report to get the data?
    Thanks

    Thanks Srini,
    There is no any specific error message, the strange thing is if I run the Discoverer report is not returning any data, but if I set the mo_global.set_policy_context ('S',111) in SQL Developer or TOAD and then run the discoverer report it return data...
    Any pointers?

  • Report not working from forms.

    Hi
    we are beginners and please help us.we have installed in LAN database 11g on vista
    and application server 10g on os 2003.
    we are developing some applications from our developer pc in vista and using developer suite 10g.
    we want to generate some reports and call them from forms.
    This is the code in when button pressed.
    DECLARE
    repid REPORT_OBJECT;
    repjobid VARCHAR2(200);
    repstatus VARCHAR2(200);
    repjobno number;
    repserver VARCHAR2(100) := 'rep_mbxserver_FRHome1';
    BEGIN
    repserver := 'rep_mbxserver_FRHome1';
    /* Check to see if forms application is WEB deployed */
    IF get_application_property(user_interface) = 'WEB' THEN
    message('web');
    repid:= FIND_REPORT_OBJECT('REP');
    message('report found');
    /* Set Report parameters given WEB deployment */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'e:\users\pro\reports\emp.rdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,repserver);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    /* DESFORMAT could be HTML, HTMLCSS or PDF here */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'HTML');
    /* Run the report */
    repjobid := RUN_REPORT_OBJECT(repid);
    message('run report');
    /* Check the report status */
    repstatus:=REPORT_OBJECT_STATUS(repjobid);
    WHILE repstatus in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    repstatus := report_object_status(repjobid);
    message('rep status');
    END LOOP;
    IF repstatus='FINISHED' THEN
    message('REPORT WAS CORRECTLY RUN');
    /* Display the report output in the client browser */
    repjobno := length(repserver) + 1;
    WEB.SHOW_DOCUMENT ('http://printer1.mbxnet.com:8889/reports/rwservlet/showjobs?server='||repserver,'_blank');
    copy_report_object_output(repjobid,'\\ansu\mtb-erp\emp.lis');-- (Trying to copy to local folder)
    message('File copied to local pc');
    /* If report has failed display message to user */
    ELSE
    message('REPORT FAILED WITH STATUS: '||repstatus);
    END IF;
    message('222222222222');
    ELSE
    /* Else if forms application is Client-Server deployed */
    /* Set Report parameters given Client-Server deployment */
    message('client server');
    repid:= FIND_REPORT_OBJECT('rep1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'e:\users\pro\reports\emp.rdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'\\printer1\mtb-erp\emp.lis');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt.prt');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,repserver);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=NO');
    /* Report to be executed via Reports Background Engine, not the 'new' Reports Multi-Tier Server */
    /* Destype SCREEN or PREVIEW can be used here */
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,SCREEN);
    /* Run the report */
    repjobid := RUN_REPORT_OBJECT(repid);
    copy_report_object_output(repjobid,'\\printer1\mtb-erp\emp.lis');
    message('File ok');
    --     host('c:\mtb-erp\ansu.lis');
    END IF;
    END;
    we are struck and unable to proceed.Actually when we run the report from report builder it works.we are calling the report from application server.
    Also if we replace the above web.show document with this statement it works but even though it gives FRM-41214 error.
    web.show_document('http://ansuya.mtbnet.local:8889/reports/rwservlet?destype=cache&desformat=html&report=\\mbxserver\developers\emp.jsp&userid=scott/tiger@mbxsql&paramform=no');
    One more doubt , is it possible if we don not want to show the report in a browser in case of client server locally in lan
    but just generate the report from forms and save it in local folder like we do in previous old versions.If so please guide us.
    Thanks in advance.

    Hello ansu,
    Did you solve this problem ?
    Regards,
    Felipe.

  • Report Not working in the Web Browser

    Hi ALL ,
    Am working on a item SKU report . The report is running fine in the BIDS but once i try to view the report in the WEB Browser
    tried both Mozilla and Internet Explorer no data is shows up .
    The report has 2 report filter one is on the service and the other one is the item sku its a multi - parameter  that contains
    a list of more than 6000 different SKU . Can the filter be the reason for the report not displaying in the web browser.
    If yes kindly advice me what the workaround for it .
    I tried having the filter in the  SQL main query but it was of no use no data it was showing after having the ssrs report filter
    at least right information its showing but in the BIDS not in the main web browser.
    Kindly Help
    Priya

    Hi Priya,
    According to the description, I understand that there are parameters (@SKU and @SKUlist) in the report, and SKUlist parameter is multi-value parameter. When selecting values of the SKU parameter, the parameter SKUlist will display corresponding values. In this
    case, you should create cascading parameters, right? And you use parameters to filter the report.
    Because the data of the report can be shown in the Business Intelligence Development Studio (BIDS) environment, the issue only occurs after deploying the report to report server. Based on my research, I think it may occur because of web browser issue. I have
    known you use Mozilla and Internet Explorer to view the report but there is still no data.
    In Reporting Services, not all report functionality is supported by all browsers. In this scenario, I suggest you considering the aspects of the setting or third party add-ons of Internet Explorer (IE). You can refer to the steps below:
    1. Click Tools -> Internet options.
    2. Switch to the Security tab, click Local intranet, and then select Default level.
    3. Switch to the Advanced tab, and click Restore advanced settings.
    4. Temporarily disable third party add-ons. For detailed steps, please see the link:
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie=ie-10
    Reference:http://technet.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Crystal report not working on 64 bit machine

    Hello friends,
    Hope everyone is doing good.  I have an issue and you all are requested to help me out.
    I have build an Application using VS 2008, i used Oracle 10g as database and Crystal report 2008 for reports. The Application and reports are working fine when i deploy it on 32 bit machine, but when I deploy it on a 64 bit machine, my Application works fine but reports are not displayed, when ever i run report it ask Db credential with the following message
    "The report you requested requires further information."
    then Server, user ID and password filed, I off course supplied credential but no results.
    For resolving the issue i installed VS 2008 on 64 bit machine with redist CR Viewer and tried to verify database for the report thinking this might be an issue, but in CR designer it gives me following error when i tried to verify database or create new connection using OLEDB provider for Oracle
    Crystal Reports ActiveX Designer
    Logon failed.
    Details: ADO Error Code: 0x
    Source: Microsoft OLE DB Provider for Oracle
    Description: Oracle client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3.3 or later client software installation.
    Provider is unable to function until these components are installed.
    OK
    I tried the following fixes as well:
    - Installed CR viewer for 64 bit machine
    - Registering ORAOLEDB10.dll
    - Reinstalling VS 2008
    The Application works fine but Crystal reports are malfunctioning. Please help!!!!!!!!!!!!!!!
    Thanks a ton in Advance
    Happing coding and resolving issues
    Danish Mustafa Khan

    Also, see [this|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e] article.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Report not working on web server iis7

    I have just designed a website and added a sap crystal report. The report is working fine when i am running it using VS 2010. But when i am publishing it on iis7, .net framework 4.0, windows server 2008. I have also tried with latest version of crystal report. But it does not showing any thing when i am trying to run it on published server.
    The report shows nothing in Mozilla Firfox but in ie it shows an error 'bobj' is undefined. in both browser the cr viewer adder form's post back of dropdownlist not working.But when pressing submit button it's post back happening but no report showing.I have tried with several solution on net but it does not working when i publishing it on server but doing well with vs2010 debugger.
    I am using vs 2010 professional, but service pack not installed.
    Pls help me in this regard

    Hi,
    Top right cornor has a text box. Type "bobj is undefined" & you would find many KBs, forums & blogs.
    http://www.sdn.sap.com/irj/scn/advancedsearch?query=bobjisundefined
    Thanks,
    Saurabh

  • Crystal report not working when setup is made in VS 2010

    Hi, i am new to SAP Business objetcts as well as in this forum.
    I have made an application in VS 2010 (C# /WPF) and made its .exe file too.
    The Crystal reports are working fine when i am running from Visual Studio.
    But it gives error message while i am running the .exe.
    I have made the .exe as normally we do.
    Please help me out.
    Regards.

    Adam assumed you were using Enterprise as the thread was posted to the ".NET - SAP BusinessObjects Enterprise, SAP BusinessObjects Edge, SAP Crystal Reports Server" forum.
    Since you are using WPF viewer, I'm pretty sure this is not the case.
    I am not sure how you are loading the report, so a code snippet from your app will help. Also, in your code as a test, hard code the path to the report. Does that work?
    Looking at the [WPF|http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/a09f7025-0629-2d10-d7ae-df006a51d1a8] demo is going to be worthwhile also.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Greater than Equal to Functionality when retirivng data from SSAS 2008 cube using SSRS 2012 report not working

    I have an SSRS 2012 report and SSAS Cube in 2008. My report criterion requires filtering on measures. So Created measures as dimensions . The report requires >= functionality on the measures. But in the Query designer of 
    the report there is =, IN, Within Range ,Excluding range , MDX as the operators.
    To achieve my goal. I have “From” and “To” as parameters on the numeric dimension. The “To” parameter I have set as internal and setting
     the default value of  “TO” .By writing another Dataset query that returns the “MAX” 
    value and the MAX value returned is a member of the measure converted to dim I confirmed.. So this whole works as >=.The user enters only the “FROM” parameter and the “TO” is set internally. The user can enter any value in the “From” parameter. Any
    value that is not even a member.It is a textbox. I cannot use a list of values from the “From” parameter.
    But whenever I run the report after entering all the selection criteria
     I keep getting
    Error “the restrictions imposed by the constrained flag in the strtomember functions were violated”
    I know this means that Max value in the “TO” section is not a member .
    I did try
    : StrToMember("[Fact RCS CV BLAST].[APPRLIMIT ACH].
    &[" & @ToFactRCSCVBLASTAPPRLIMITACH &
    "]", CONSTRAINED) )
     But I get “syntax for the “&” is incorrect”
    If I use Drop down for the “From” and “To” parameters then it works fine. But that’s not what Business Users need.
    Please let me know what the options to make this work. I did use parameters that filter the
     Dataset returned it works fine but there is a performance impact.

    Hi,
    I think if you use the following method you will be able to compare the members.
    CDbl(StrToMember("[Fact RCS CV BLAST].[APPRLIMIT ACH].&[" + @ToFactRCSCVBLASTAPPRLIMITACH + "]").Member_Name)
    As you mentioned that you converted your measures as dimensions, you are having an integer value as the member name. In that case use VBA functions with MDX to do the datatype conversion.
    Take a look into the following MDX written against Adventure Works;
    WITH CALCULATED MEMBER [Measures].[Member Name] AS
    CInt
    Right
    CStr
    [Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME
    ), 4
    SELECT {[Measures].[Sales Amount], [Measures].[Member Name]} ON COLUMNS,
    FILTER
    [Date].[Calendar Year].[Calendar Year].MEMBERS,
    CInt(Right(CStr([Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME), 4)) >= 2005 AND
    CInt(Right(CStr([Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME), 4)) <=2008
    } ON ROWS
    FROM [Adventure Works]
    I am filtering the Years by using the member names by extracting the Integer portion of the member name and applying data type conversion functions in VBA. So I 
    Keep in mind that you have to get rid of the CONSTRAINED clause if your business users can enter anything on the SSRS text box. 

  • Adhoc Query report not working fine

    Hi,
    We have a customized infotype  9222 which stores the previous experience of the employees.
    Now I have created a adhoc query in which I have added this infotype.The problem which I am facing is when I put the Indian company codes and run the report, the report is working fine . But when I put a Ukraine Company Code and then run the report ; the report does not picks the experience details of the employees and it shows Zero Yrs and Zero months.
    I have checked in PA30 the experience details are maintained  for the Ukraine employees.
    Is their any setting in the system which allows the infotype for a particular company? or what may be the reason for the strange behaviour of the report towards a specific compant code. Please reply asap

    Hi ,
    Pls check do you have authorization or not for to create Object Directory entry.
    Thanks and Regards,
    Revathi.

  • 10.1.2.0.2 reports not working

    I have been using forms and report 10.1.2.0.2 but I have to run some maintenance in my windows 2003 server (basically change IP address) and now, report server is not working now.
    I have checked, with "opmn status", that all the services are running, but the reports I am sending to the report server, are being "acumulated" in the queue, but not are not being proceesed.
    I also enclose trace file for the report server
    Thanks,

    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): PATH=c:\oracle\FRHome_2\bin;C:\oracle\product\10.2.0\client_2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): TMP=C:\DOCUME~1\jzua\CONFIG~1\Temp\1
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): ORACLE_HOME=C:\oracle\FRHome_2
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): ORACLE_CONFIG_HOME=C:\oracle\FRHome_2
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): ORA_NLS33=C:\oracle\FRHome_2\ocommon\nls\admin\data
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): COMSPEC=C:\WINDOWS\system32\cmd.exe
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): SystemDrive=C:
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): SystemRoot=C:\WINDOWS
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): NLS_LANG=SPANISH_SPAIN.WE8MSWIN1252
    [2012/3/2 5:13:9:650] Debug 50103 (EnvironmentUtility:getEnvironment): REPORTS_TMP=C:\DOCUME~1\jzua\CONFIG~1\Temp\1
    [2012/3/2 5:13:9:650] Info 56025 (RWServer:startServer): Oracle Reports Server se está iniciando
    [2012/3/2 5:13:9:713] Info 65000 (Multicast:init): Canal de comunicación inicializado
    [2012/3/2 5:13:9:713] Debug 50103 (Multicast:registerReceiver): Packet handler registered
    [2012/3/2 5:13:9:713] Info 50103 (ServerPacketHandler:start): ServerPacketHandler started successfully
    [2012/3/2 5:13:9:729] Debug 50103 (ServerPacketReceiver:handlePacket): Got a request packet
    [2012/3/2 5:13:10:729] Debug 50103 (ServerPacketReceiver:handlePacket): Got a request packet
    [2012/3/2 5:13:11:729] Debug 50103 (ServerPacketReceiver:handlePacket): Got a request packet
    [2012/3/2 5:13:12:729] Info 56023 (ServerImpl:ServerImpl): Idle thread has been started
    [2012/3/2 5:13:12:729] Info 50103 (RWServer:startServer): Using multicast mechanism
    [2012/3/2 5:13:12:729] Info 56020 (EngineManager:spawnEngine): Launching engine rwEng-0
    [2012/3/2 5:13:12:791] Info 50103 (RWLocaleUtility:RWLocaleUtility): Using oracle.i18n.util.LocaleMapper class
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Start engine command line = C:\oracle\FRHome_2\jdk\jre\bin\javaw -server -cp "C:\oracle\FRHome_2\j2ee\home\lib\ojsp.jar;C:\oracle\FRHome_2\reports\jlib\rwrun.jar;C:\oracle\FRHome_2\jlib\zrclient.jar" -Duser.language=es -Duser.region=ES -Xmx256M oracle.reports.engine.RWEngine name=rwEng-0 server=rep_spyro ORACLE_HOME=C:\oracle\FRHome_2 engineimplclass=oracle.reports.engine.EngineImpl traceopts=trace_all tracefile=C:\oracle\FRHome_2\reports\logs\rep_spyro\rwEng-0.trc tracemode=trace_replace cacheDir=C:\oracle\FRHome_2\reports\cache server_ior=C:\DOCUME~1\jzua\CONFIG~1\Temp\1\tmp_11918020
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with environment id = REP_SPYRO
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment REPORTS_PATH=u:\spyro\bin\
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment ORACLE_HOME=C:\oracle\FRHome_2
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment PATH=c:\oracle\FRHome_2\bin;C:\oracle\product\10.2.0\client_2\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment TMP=C:\DOCUME~1\jzua\CONFIG~1\Temp\1
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment ORACLE_HOME=C:\oracle\FRHome_2
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment ORACLE_CONFIG_HOME=C:\oracle\FRHome_2
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment ORA_NLS33=C:\oracle\FRHome_2\ocommon\nls\admin\data
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment COMSPEC=C:\WINDOWS\system32\cmd.exe
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment SystemDrive=C:
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment SystemRoot=C:\WINDOWS
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment NLS_LANG=SPANISH_SPAIN.WE8MSWIN1252
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Started engine with Environment REPORTS_TMP=C:\DOCUME~1\jzua\CONFIG~1\Temp\1
    [2012/3/2 5:13:12:822] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
    [2012/3/2 5:13:12:822] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
    [2012/3/2 5:13:12:822] Info 56020 (EngineManager:spawnEngine): Launching engine rwURLEng-0
    [2012/3/2 5:13:12:822] Debug 50103 (EngineManager:spawnEngine): Start engine command line = C:\oracle\FRHome_2\jdk\jre\bin\javaw -server -cp "C:\oracle\FRHome_2\j2ee\home\lib\ojsp.jar;C:\oracle\FRHome_2\reports\jlib\rwrun.jar;C:\oracle\FRHome_2\jlib\zrclient.jar" -Duser.language=es -Duser.region=ES -Xmx256M oracle.reports.engine.RWEngine name=rwURLEng-0 server=rep_spyro ORACLE_HOME=C:\oracle\FRHome_2 engineimplclass=oracle.reports.urlengine.URLEngineImpl traceopts=trace_all tracefile=C:\oracle\FRHome_2\reports\logs\rep_spyro\rwURLEng-0.trc tracemode=trace_replace cacheDir=C:\oracle\FRHome_2\reports\cache server_ior=C:\DOCUME~1\jzua\CONFIG~1\Temp\1\tmp_24499883
    [2012/3/2 5:13:12:822] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0 has been launched
    [2012/3/2 5:13:12:822] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Initial
    [2012/3/2 5:13:12:822] Debug 50103 (RWCacheItem:addFile): add file '34800236.pdf' for job 238

Maybe you are looking for