Error in running report services

i installed 9iAS release 2.
while installing i selected only forms and report services options.
now while starting all the services reports services showing down.....
when seperately i am starting that services some ikon coming..but it is being there for small time only
so anybody help me in this.

CAUSE
The problem is caused by not using VALID dates values in the dataset.
- This data problem was masked in the original version as the Predicate(s) used can change between versions of Oracle
- Oracle does *not* guarantee the same explain plan or the specific order of predicates used between versions of Oracle
Reviewing the  EXPLAIN PLAN for both versions revealed in this case:
1) The table was partitioned
2) The EXPLAIN PLANS were not the same due to how the partitions were accessed
3) If the same query was used against a non-partitioned table using the same data, the following error would always occur
   ORA-01843: not a valid month
4) The problem string value was in this case found to include the string value of  '0000-00-00'
  The ORA-01843 occurred when using the TO_DATE function against '0000-00-00'
There is *no* Year= '0000' Month= '00' or day = '00' -- therefore the  ORA-01843: not a valid month
--Prashanth

Similar Messages

  • FRM-92101 error while running report from a button or menu

    Hi All,
    I am getting the error FRM-92101 while running report without parameter from a button or menu. I am using Developer Suit 10g. I get the error as it shows there has some configuration problem in my form. Will you please help me anyone how can i solve the problem. My previous forms running very well both with parameter and without parameter.
    Arif

    Hello Sir,
    Thanks for your cooperation. I have solved my problem by myself. The fact was that, when i tried with the following code which made my report---
    SELECT br.bid, br.bname, br.branchtxnstatus, dif.difference
    FROM branch br,
    (SELECT gladbrid branchid,
    SUM
    (CASE
    WHEN ga.gl_acc_categry IN ('L', 'I')
    THEN gd.gladbalance
    ELSE -1 * gd.gladbalance
    END
    ) AS difference
    FROM glaccount ga, glaccountdetail gd
    WHERE ga.glid = gd.gladglid
    GROUP BY gladbrid) dif
    WHERE dif.branchid = br.bid AND br.branchtxnstatus = :Br_Status
    and dif.difference!=0
    ORDER BY br.bid;
    and the code against the button or menu item is---
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('ASSET');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    which has shown the error FRM-92101 and didn't run the report.
    In that case I have changed the query to run the report. first of all i create a view following the query and build the report using a simple select query. that's etc. my report running fine now.
    It is mentioned that there had no error on my codes.
    Arif

  • Timeout error while running Report

    Hi
    All,
    Windows 2000
    Oracle Report builder 10g
    Oracle developer suite 10g
    when I had OLD computer i was able to run report more than 10 minutes. Now, I got NEW computer and i am getting TIMEOUT error while running report more than 10 minutes.
    Any clue?
    Thanks,
    Vishal

    As Fs says it depends on how you're running the report.
    If you're running via a server then you need to make the change on that server or amend the URL you are using to run the report to add the enginereponsetimeout parameter.
    You can amend this parameter on the server either by using the Application Server Control as I described in my last post or by directly editing the config file. This file will be called <reportservername>.conf and can be found in the oracle_home/reports/conf directory.
    In this file look for the engine tag and see if the engineResponseTimeOut property is set.
    E.g:
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="4" minEngine="1" engLife="50" maxIdle="20" callbackTimeOut="90000" engineResponseTimeOut="5">
    </engine>
    This value is in minutes so increase to a time larger than that it takes to run the report.
    If instead you're running the report via Report Builder on your own PC then look for a file called rwbuilder.conf in the same location on your PC and make the same change as described above.
    If this property isn't in the file then the engine isn't supposed to time out at all so the problem may well be something different. But to discount it try setting to a large value like 30.

  • ERROR WHILE RUNNING REPORT THROUGH FORMS.....!

    hi all,
    ive designed one form in Forms 9i...I'm tryin to run report through a Push button .....report is running well in paper layout through report builder 9i...The problem I'm facing is dat when i pressed button it is giving me error initially as FRM-41214 cannot run report and after that FRM-40735 When button pressed unhandled exception ora-06502.....What could go wrong??... Ive started OC4J instance ....created report object in object nevigator as well and defined basic properties for diff.parameters HTMLCSS,CACHE..etc.,mentioned report path in complete i.e.c:\reports\genbill.rdf ...Can anybody help me out ??? Thnx.!
    -----------------------CODE ON BUTTON----------------------------------
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('REPORT5');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('<HOSTNAME>:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=myrepserver','_blank');
    ELSE
    message('Error when running report');
    END IF;
    PAUSE;
    END;

    When a report terminates with an error, REPORT_OBJECT_STATUS returns the value "TERMINATED_WITH_ERROR", which is 21 bytes of data, but rep_status is defined as 20 bytes. The 6502 error is due to the data not fitting the variable.
    I recommend wrapping the REPORT_OBJECT_STATUS function with a SUBSTR that limits the data returned to 20 bytes, which will ensure the results fit.
    For example:
    rep_status := SUBSTR(REPORT_OBJECT_STATUS(v_rep), 1, 20);

  • Error while running report 10g

    DECLARE
         repid REPORT_OBJECT;
         v_rep VARCHAR2(1000);
    rep_status VARCHAR2(2000);
    BEGIN      
         repid := find_report_object('REPORT2');      
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    set_report_object_property(repid, report_comm_mode, 1);
    set_report_object_property(repid, report_destype, cache);
    set_report_object_property(repid, report_desformat, 'PDF');
    set_report_object_property(repid, report_server, 'myserver');
    v_rep := run_report_object(repid);
    rep_status := report_object_status(v_rep);
    WHILE rep_status IN ('RUNNING', 'OPENING_REPORT', 'ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    message(rep_status);
    IF rep_status = 'FINISHED'
    THEN
    web.show_document('http://localhost:8889/reports/rwservlet/showjobid' || substr(v_rep, instr(v_rep, '_', -1) + 1)
    || '?server = myserver');
    ELSE
    message('error while running reports-object ' || error_text);
    message(' ');
    clear_message;
    END IF;
    EXCEPTION
         WHEN OTHERS THEN
    message('error while running reports-object' || error_text );
    END;
    I have been trying the whole 5 days running this report but it is giving me error, i am making simple report which select all data and display from emp table, please help. Error I am getting is unable to run the report and Terminated_Report.

    Hi,
    Check this link...How to call a report in Forms 10g ?
    Hope this works...
    Hamid

  • FRM-92101 error while running report from form

    HI All,
    I am getting the form error FRM-92101 while running report from form menu.My code is given below:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('REPORT47');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    --Arif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi Arif
    Please see this note on MOS/Metalink for some common causes of this error:
    Known Causes of FRM-92101 Error In Forms [ID 604633.1]
    thanks,
    AMN

  • Can not set remote error true in reporting service's properties's advanced

    can not set remote error true in reporting service's properties's advanced
    美斯: 唔理幾多個皇上啦, 個波呢家係皇上果度!!!

    Hello,
    Based on the limited information, I am not very clearly about you issue. In order to solve the problem more efficiently, I need to clarify some information. Are you get some error messages when you set EnableRemoteErrors to true? Or do you mean that it doesn’t
    throw error message to us, but the property is useless? And could you tell me the edition of your SQL Server?
    It is benefit for us to do further analysis. Thank you for your understanding. 
    The following document may help you:
    http://technet.microsoft.com/en-us/library/aa337165(v=sql.110).aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Error on running reports with filters/security

    Post Author: mishel
    CA Forum: Publishing
    Hi,    I am trying to run a report with filters/security defined via Business View.  When I run the report as administrator, I am able to view successfully.  However, when I login as test/dummy account which filters my parameters, I am getting such error - "A request was cancelled.  The necessary security privileges could not be verified.  This indicates a problem with the security server."  Appreciate all the help I can get.Thank you,Michelle

    Hi onizga,
    According to your description that you are migrating SSRS 2008 R2 reports to SSRS 2012 SP2, after migration you got some error like “The Uri string is too long” which only occurred when accessing the drill-through actions, right?
    Usually, the issue can be caused when you try to pass some parameters that cause the URL length to exceed 65,520 characters for a Microsoft SQL Server 2012 Reporting Services (SSRS 2012), you cannot render the report, and you may receive the following error
    message:
    The value of parameter 'param' is not valid. (rsInvalidParameter).Invalid URI: The Uri string is too long.
    This is an known issue and already have the hotfix SQL Server 2012 Service Pack1 Cumulative Update 9 (CU9) as you know, you can try to reinstall this hotfix to fixed this issue:
    http://support.microsoft.com/kb/2916827 .Any issue after applying the update, please post it on the following thread or you can submit an feedback:
    http://connect.microsoft.com/SQLServer/feedback/details/788964/ssrs-2012-invalid-uri-the-uri-string-is-too-long 
    Similar threads for your reference:
    SSRS - The value of parameter 'param' is
    not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long.
    Microsoft.ReportingServices.Diagnostics.Utilities.InvalidParameterException:
    The value of parameter 'pSetOfScopes' is not valid. ---> System.UriFormatException: Invalid URI: The Uri string is too long
    If you still have any question, please feel free to ask
    Regards
    Vicky Liu
    If you have any feedback on our support, please click here

  • Getting Error while running Report on Enterprise Report console

    Hi all,
    I am using Report builder 6i, I have developed one report and configued it on Enterprise Reporting tool but when tried to run it through Enterprise Reporting Console I got the following error
    REP-0177: Error while running in remote serverREP-0736: There exist uncompiled program unit(s).REP-1247: Report contains uncompiled PL/SQL. FAIL 1
    although the report is running fine through the report builder.
    any thoughts?
    Thanks in advance
    Manvar
    Message was edited by:
    [email protected]

    Hello,
    Do you reproduce the error if you implment the example provided in the document :
    Oracle Application Server 10G -Integrating Oracle Reports in Oracle Forms Services applications:
    http://www.oracle.com/wocportal/page/wocprod/ver-31/ocom/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    Regards

  • Error when installing reporting Services

    Hello!
    I have a
    monitoring infrastructure
    with the
    Operations Manager
    R2 with
    2012 following scenario:
    Hello!
    I have
    a monitoring infrastructure
    with the
    Operations Manager
    R2 with
    2012 following scenario:
    Trust relationship between
    two domains
    (A, B).
    Management server
    in the domain
    "A"
    database in domain "B"
    When I try to
    install reporting services
    function
    on a separate server
    or on the
    existing
    Management Server,
    the error
    occurs as follows:
    This is
    the installation
    log:
    Application Started
    [10:48:33]: Always: :Machine on which Operations Manager is being installed: SERVER
    [10:48:33]: Always: :Current setup user: DOMAIN\scom
    [10:48:33]: Always: :Current setup version: 7.1.10226.0
    [10:48:34]: Always: :Begin: Parse command line.
    [10:48:34]: Debug: :Collected a path value of: E:\Setup\AMD64\
    [10:48:34]: Always: :Begin: Parse command line.
    [10:48:34]: Always: :End: Parse reporting command line switches.
    [10:48:34]: Always: :End: Parse data reader account command line switches.
    [10:48:34]: Always: :End: Parse command line.
    [10:48:34]: Always: :Begin: System State detection.
    [10:48:34]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:34]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:34]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:34]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:34]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:34]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:34]: Info: :Info:CheckIfOpsMgrComponentsInstalled: component - OMCONSOLE
    [10:48:34]: Info: :Version Installed=7.1.10226.0
    [10:48:34]: Info: :Info:Component OMCONSOLE is installed
    [10:48:34]: Info: :Info:CheckIfOpsMgrComponentsInstalled: component - OMSERVER
    [10:48:34]: Info: :Version Installed=7.1.10226.1009
    [10:48:34]: Info: :Info:Component OMSERVER is installed
    [10:48:34]: Info: :Info:CheckIfOpsMgrComponentsInstalled: component - OMWEBCONSOLE
    [10:48:34]: Info: :Version Installed=7.1.10226.0
    [10:48:34]: Info: :Info:Component OMWEBCONSOLE is installed
    [10:48:34]: Info: :Info:CheckIfOpsMgrComponentsInstalled: component - OMREPORTING
    [10:48:34]: Info: :Info:Component OMREPORTING is not installed
    [10:48:34]: Always: :End: System State detection.
    [10:48:34]: Always: :OM component is installed on this machine and it's interactive run.
    [10:48:34]: Info: :Info:this is ARP run
    [10:48:34]: Always: :We have a path entry and we are not uninstalling so we are setting C:\Program Files\Microsoft System Center 2012 R2\Operations Manager to the value installpath.
    [10:48:34]: Info: :SetInstallPath: installpath has a value of C:\Program Files\Microsoft System Center 2012 R2\Operations Manager
    [10:48:34]: Info: :Info:SetComponentSwitches: component list not specified
    [10:48:34]: Always: :Begin: Rationalize components.
    [10:48:34]: Always: :Begin: Rationalize command line arguments (first run).
    [10:48:34]: Always: :RationalizeCommandLineArguments succeeded.
    [10:48:34]: Always: :End: Rationalize command line arguments (first run).
    [10:48:34]: Always: :Begin: Rationalize ARP scenario.
    [10:48:34]: Always: :Begin: Rationalize final steps.
    [10:48:35]: Info: :Beginning evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:35]: Debug: :Condition wasnt defined for rule 'Block Unsupported MOM versions.'.
    [10:48:35]: Info: :Beginning evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:35]: Debug: :Condition wasnt defined for rule 'PreOM12RTMRulesGroup'.
    [10:48:35]: Info: :Version Installed=7.1.10226.1009
    [10:48:35]: Info: :Info:MOMSelect is installed: False
    [10:48:35]: Info: :Info:MOMAEM is installed: False
    [10:48:35]: Info: :Info:MOMEval is installed: False
    [10:48:35]: Info: :Info:MOMOEM is installed: False
    [10:48:35]: Info: :Info:MOMAgent is installed: False
    [10:48:35]: Info: :Info:MOMGW is installed: False
    [10:48:35]: Info: :Info:MOMReporting is installed: False
    [10:48:35]: Info: :Finished evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:35]: Info: :Beginning evaluation of rule 'BlockPre2012SP1'
    [10:48:35]: Debug: :Condition wasnt defined for rule 'BlockPre2012SP1'.
    [10:48:35]: Info: :Version Installed=7.1.10226.1009
    [10:48:35]: Info: :Info:OMServer is installed: False
    [10:48:35]: Info: :Version Installed=7.1.10226.0
    [10:48:35]: Info: :Info:OMConsole is installed: False
    [10:48:35]: Info: :Version Installed=7.1.10226.0
    [10:48:35]: Info: :Info:OMReporting is installed: False
    [10:48:35]: Info: :Info:OMWebConsole is installed: False
    [10:48:35]: Info: :Finished evaluation of rule 'BlockPre2012SP1'
    [10:48:35]: Info: :Finished evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:35]: Info: :Beginning evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:35]: Debug: :Condition wasnt defined for rule 'Check that Unsupported SKU does not exist for SCOM setup.'.
    [10:48:35]: Info: :Info:MOMAEM is installed: False
    [10:48:35]: Info: :Info:MOMEval is installed: False
    [10:48:35]: Info: :Finished evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:35]: Always: :End: Rationalize final steps.
    [10:48:35]: Always: :End: Rationalize components.
    [10:48:35]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:35]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:35]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:35]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:35]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:35]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:35]: Always: :IsValidToInstall: Web Console found already installed; cannot install Server Component.
    [10:48:35]: Error: :Error:IsReportingValidToInstall failed SRS instance not provided
    [10:48:35]: Info: :Start adding DataItems
    [10:48:35]: Info: :Initial Configuration
    [10:48:35]: Info: :Database Configuration
    [10:48:35]: Info: :Data Warehouse Configuration
    [10:48:35]: Info: :Management Server
    [10:48:35]: Info: :Operations console
    [10:48:35]: Info: :Web Console Server
    [10:48:35]: Info: :Reporting Server
    [10:48:35]: Info: :Final Configuration
    [10:48:35]: Info: :Done adding DataItems
    [10:48:35]: Info: :Adding Page StartPageTrack
    [10:48:35]: Info: :Adding Page UpgradeInvalidStartPage
    [10:48:35]: Info: :Adding Page UpgradeInvalidRootPage
    [10:48:35]: Info: :Adding Page ARPStartPageSwitch
    [10:48:35]: Info: :Adding Page ARPAddRemovePage
    [10:48:35]: Info: :Adding Page UpgradePageSwitch
    [10:48:35]: Info: :Adding Page UpgradePage
    [10:48:35]: Info: :Adding Page UpgradeManagementGroupPageSwitch
    [10:48:35]: Info: :Adding Page UpgradeManagementGroupPage
    [10:48:35]: Info: :Adding Page UpgradeEulaPage
    [10:48:36]: Info: :Adding Page RegularStartPageSwitch
    [10:48:36]: Info: :Adding Page ComponentsPageCleanInstall
    [10:48:36]: Info: :Adding Page ComponentsPage
    [10:48:36]: Info: :Adding Page InstallationLocationPage
    [10:48:36]: Info: :Adding Page PrerequisitesProgressPage
    [10:48:36]: Info: :Adding Page AdditionalPrerequisitesPage
    [10:48:36]: Info: :Adding Page InstallScenario
    [10:48:36]: Info: :Adding Page ShortEulaPage
    [10:48:36]: Info: :Adding Page SecondServerOperationalDb
    [10:48:36]: Info: :Adding Page EulaPageCleanInstall
    [10:48:36]: Info: :Adding Page FirstServerOperationalDb
    [10:48:36]: Info: :Adding Page DbPageDataWarehouse
    [10:48:36]: Info: :Adding Page SelectManagementServerForReporting
    [10:48:36]: Info: :Adding Page SelectReportingInstance
    [10:48:36]: Info: :Adding Page SelectManagementServerForWebConsole
    [10:48:36]: Info: :Adding Page WebConsoleSitePage
    [10:48:37]: Info: :Adding Page WebConsoleAuthorizationMode
    [10:48:37]: Info: :Adding Page AccountsInformationPage
    [10:48:37]: Info: :Adding Page ImproveUserExperiencePage
    [10:48:37]: Info: :Adding Page MSFTUpdatePage
    [10:48:37]: Info: :Adding Page ConfigurationSummaryPage
    [10:48:37]: Info: :Adding Page ProgressPage
    [10:48:37]: Info: :Adding Page BlockPage
    [10:48:37]: Info: :Adding Page FinishPage
    [10:48:37]: Info: :Beginning evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:37]: Debug: :Condition wasnt defined for rule 'Block Unsupported MOM versions.'.
    [10:48:37]: Info: :Beginning evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:37]: Debug: :Condition wasnt defined for rule 'PreOM12RTMRulesGroup'.
    [10:48:37]: Info: :Version Installed=7.1.10226.1009
    [10:48:37]: Info: :Info:MOMSelect is installed: False
    [10:48:37]: Info: :Info:MOMAEM is installed: False
    [10:48:37]: Info: :Info:MOMEval is installed: False
    [10:48:37]: Info: :Info:MOMOEM is installed: False
    [10:48:37]: Info: :Info:MOMAgent is installed: False
    [10:48:37]: Info: :Info:MOMGW is installed: False
    [10:48:37]: Info: :Info:MOMReporting is installed: False
    [10:48:37]: Info: :Finished evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:37]: Info: :Beginning evaluation of rule 'BlockPre2012SP1'
    [10:48:37]: Debug: :Condition wasnt defined for rule 'BlockPre2012SP1'.
    [10:48:37]: Info: :Version Installed=7.1.10226.1009
    [10:48:37]: Info: :Info:OMServer is installed: False
    [10:48:37]: Info: :Version Installed=7.1.10226.0
    [10:48:37]: Info: :Info:OMConsole is installed: False
    [10:48:37]: Info: :Version Installed=7.1.10226.0
    [10:48:37]: Info: :Info:OMReporting is installed: False
    [10:48:37]: Info: :Info:OMWebConsole is installed: False
    [10:48:37]: Info: :Finished evaluation of rule 'BlockPre2012SP1'
    [10:48:37]: Info: :Finished evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:37]: Info: :Beginning evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:37]: Debug: :Condition wasnt defined for rule 'Check that Unsupported SKU does not exist for SCOM setup.'.
    [10:48:37]: Info: :Info:MOMAEM is installed: False
    [10:48:37]: Info: :Info:MOMEval is installed: False
    [10:48:37]: Info: :Finished evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:37]: Debug: :OMForwardToStartPageTrackPageHandler: Moving to page ARPStartPageSwitch
    [10:48:37]: Always: :Entering Page: ARPAddRemovePage
    [10:48:40]: Always: :Begin: Rationalize components.
    [10:48:40]: Always: :Begin: Rationalize command line arguments (first run).
    [10:48:40]: Always: :RationalizeCommandLineArguments succeeded.
    [10:48:40]: Always: :End: Rationalize command line arguments (first run).
    [10:48:40]: Always: :Begin: Rationalize ARP scenario.
    [10:48:40]: Always: :Begin: Rationalize final steps.
    [10:48:40]: Info: :Beginning evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:40]: Debug: :Condition wasnt defined for rule 'Block Unsupported MOM versions.'.
    [10:48:40]: Info: :Beginning evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:40]: Debug: :Condition wasnt defined for rule 'PreOM12RTMRulesGroup'.
    [10:48:40]: Info: :Version Installed=7.1.10226.1009
    [10:48:40]: Info: :Info:MOMSelect is installed: False
    [10:48:40]: Info: :Info:MOMAEM is installed: False
    [10:48:40]: Info: :Info:MOMEval is installed: False
    [10:48:40]: Info: :Info:MOMOEM is installed: False
    [10:48:40]: Info: :Info:MOMAgent is installed: False
    [10:48:40]: Info: :Info:MOMGW is installed: False
    [10:48:40]: Info: :Info:MOMReporting is installed: False
    [10:48:40]: Info: :Finished evaluation of rule 'PreOM12RTMRulesGroup'
    [10:48:40]: Info: :Beginning evaluation of rule 'BlockPre2012SP1'
    [10:48:40]: Debug: :Condition wasnt defined for rule 'BlockPre2012SP1'.
    [10:48:40]: Info: :Version Installed=7.1.10226.1009
    [10:48:40]: Info: :Info:OMServer is installed: False
    [10:48:40]: Info: :Version Installed=7.1.10226.0
    [10:48:40]: Info: :Info:OMConsole is installed: False
    [10:48:40]: Info: :Version Installed=7.1.10226.0
    [10:48:40]: Info: :Info:OMReporting is installed: False
    [10:48:40]: Info: :Info:OMWebConsole is installed: False
    [10:48:40]: Info: :Finished evaluation of rule 'BlockPre2012SP1'
    [10:48:40]: Info: :Finished evaluation of rule 'Block Unsupported MOM versions.'
    [10:48:40]: Info: :Beginning evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:40]: Debug: :Condition wasnt defined for rule 'Check that Unsupported SKU does not exist for SCOM setup.'.
    [10:48:40]: Info: :Info:MOMAEM is installed: False
    [10:48:40]: Info: :Info:MOMEval is installed: False
    [10:48:40]: Info: :Finished evaluation of rule 'Check that Unsupported SKU does not exist for SCOM setup.'
    [10:48:40]: Always: :End: Rationalize final steps.
    [10:48:40]: Always: :End: Rationalize components.
    [10:48:40]: Debug: :CustomDelegates: ForwardToPageBasedOnPropertyValueHandler: Property bag entry for ARPRun is 2.  This means that we will move to a next page id ComponentsPage.
    [10:48:40]: Always: :Entering Page: ComponentsPage
    [10:48:40]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:40]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:40]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:40]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:40]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:40]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:40]: Info: :Server Installed:True  InstallingNow:False
    [10:48:41]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:41]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:41]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:41]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:41]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:41]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:41]: Info: :Server Installed:True  InstallingNow:False
    [10:48:42]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:42]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:42]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:42]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:42]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:42]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:42]: Info: :Server Installed:True  InstallingNow:False
    [10:48:42]: Always: :Entering Page: PrerequisitesProgressPage
    [10:48:43]: Debug: :LoadPrerequisites: Start adding ComponentTitles
    [10:48:43]: Always: :LoadPrerequisites: Start adding DataItems
    [10:48:43]: Always: :memoryCheckTitle
    [10:48:43]: Always: :memoryCheckTitle
    [10:48:43]: Always: :ntfsCheckTitle
    [10:48:43]: Always: :DriveSpaceCheckTitle
    [10:48:43]: Always: :DriveSpaceCheckTitle
    [10:48:43]: Always: :OSVersionCheckTitle
    [10:48:43]: Always: :OSVersionCheckTitle
    [10:48:43]: Always: :PowershellCheckTitle
    [10:48:43]: Always: :DomainControllerCheckTitle
    [10:48:43]: Always: :WindowsInstallerCheckTitle
    [10:48:43]: Always: :PendingRebootCheckTitle
    [10:48:43]: Always: :WinRMCheckTitle
    [10:48:43]: Always: :RemoteRegistryCheckTitle
    [10:48:43]: Always: :ReportViewerCheckTitle
    [10:48:43]: Always: :ClusteredServerCheckTitle
    [10:48:43]: Always: :ActiveDirectoryCheckTitle
    [10:48:43]: Always: :IsComputerNameValidTitle
    [10:48:43]: Always: :SEViewerInstalledCheck
    [10:48:43]: Always: :AVIcodeAgentCheck
    [10:48:43]: Always: :MOMASPAgentInstalledCheck
    [10:48:43]: Always: :IISCheckTitle
    [10:48:43]: Always: :IISMetabaseCheckTitle
    [10:48:43]: Always: :AspNetCheckTitle
    [10:48:43]: Always: :WindowsAuthRoleCheckTitle
    [10:48:43]: Always: :StaticContentRoleCheckTitle
    [10:48:43]: Always: :DefaultDocumentRoleCheckTitle
    [10:48:43]: Always: :DirectoryBrowsingRoleCheckTitle
    [10:48:43]: Always: :HttpErrorsRoleCheckTitle
    [10:48:43]: Always: :HttpLoggingRoleCheckTitle
    [10:48:43]: Always: :RequestMonitorRoleCheckTitle
    [10:48:43]: Always: :RequestFilterRoleCheckTitle
    [10:48:43]: Always: :StaticContentCheckTitle
    [10:48:43]: Always: :IISConsoleCheckTitle
    [10:48:43]: Always: :IsapiAllowedCheckTitle
    [10:48:43]: Always: :IsAspNetIntegratedHandlerInstalledTitle
    [10:48:43]: Always: :HttpActivationCheckTitle
    [10:48:43]: Always: :HttpActivationCheckTitle
    [10:48:43]: Always: :LoadPrerequisites: Done adding prerequisites checks
    [10:48:43]: Info: :Approximated Memory = 8192
    [10:48:43]: Info: :Approximated Memory = 8192
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and MemoryCheck-1gbFail: 0CheckPrerequisites:   Logic Type:and MemoryCheck-2gbWarn: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  memoryCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and NTFSDrive-Fail: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  ntfsCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and DriveSpaceCheck-Fail: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  DriveSpaceCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:     ProductType was not a match.  Looking for: LanmanNT Found: ServerNTCheckPrerequisites:   Logic Type:or OSVersion-w2k8R2-Fail: 2CheckPrerequisites:   Logic
    Type:or OSVersion-w2k8R2-Fail: 0CheckPrerequisites:   Logic Type:and ArchitectureIs64Check-Fail: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  OSVersionCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[Successfully parsed version numbers.  Required: 3.1  Actual: 5.0CheckPrerequisites:   Logic Type:and WindowsInstallerVersionCheckDelegate-v31: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  WindowsInstallerCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Error: :<![CDATA[CheckPrerequisites:   Logic Type:and PendingReboot-Fail: 1]]>
    [10:48:43]: Error: :
    [10:48:43]: Error: :CheckPrerequisites:  PendingRebootCheckTitle: Warning
    [10:48:43]: Error: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and ADCheck-Fail: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  ActiveDirectoryCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[IsComputerNameValid: Hostname: SERVER  Len: 6CheckPrerequisites:   Logic Type:and IsComputerNameValid: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  IsComputerNameValidTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and AvicodeAgentInstalled-x86: 0CheckPrerequisites:   Logic Type:and AvicodeAgentInstalled-x64: 0]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  AVIcodeAgentCheck: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :IsServiceInstalled: RemoteRegistry?  True.
    [10:48:43]: Debug: :ServiceControlFunctions.IsEnabledAndRunning(): Starting...
    [10:48:43]: Debug: :IsServiceInstalled: RemoteRegistry?  True.
    [10:48:43]: Debug: :ServiceControlFunctions.IsEnabledAndRunning(): Checking second time because first time result was False.
    [10:48:43]: Debug: :IsServiceInstalled: RemoteRegistry?  True.
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Debug: :<![CDATA[CheckPrerequisites:   Logic Type:and PassIfWin8Anything: 0CheckPrerequisites:   Logic Type:and ServiceCheck-WinRM-enabled: 0CheckPrerequisites:   Logic Type:or ServiceCheck-WinRM-running:
    2]]>
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :CheckPrerequisites:  RemoteRegistryCheckTitle: Passed
    [10:48:43]: Debug: :
    [10:48:43]: Debug: :**************************************************
    [10:48:43]: Always: :CheckPrerequisites: Return Value 1
    [10:48:43]: Always: :Entering Page: AdditionalPrerequisitesPage
    [10:48:43]: Info: :Info:Attempting to get the text for the prereq: PendingRebootCheckTitle
    [10:48:45]: Debug: :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [10:48:45]: Debug: :GetServerInstallState: OpsMgr Server is installed on this machine
    [10:48:45]: Debug: :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [10:48:45]: Debug: :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [10:48:45]: Debug: :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [10:48:45]: Debug: :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [10:48:45]: Always: :Entering Page: SelectReportingInstance
    [10:48:45]: Always: :SQL Server SRS Instance (escaped name) RS_MSSQLSERVER
    [10:48:45]: Info: :Attempting to get the SSRS version from:
    \\SERVER\Root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER:__NAMESPACE
    [10:48:45]: Debug: :Path is
    \\SERVER\Root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\V11:MSReportServer_Instance
    [10:48:45]: Always: :SRS instance on SERVER. Version 11.0.3000.0.
    [10:48:45]: Always: :No SRS instances on SERVER.
    [10:48:45]: Info: :Info: SERVER SRS version = 11.1.3000.0
    [10:48:45]: Info: :Attempting to check SRS version
    [10:48:45]: Info: :Info: SERVER SRS version = 11.1.3000.0
    [10:48:45]: Info: :Attempting to check SRS version
    [10:48:45]: Info: :Info: SERVER SRS version = 11.1.3000.0
    [10:48:46]: Debug: :GetSRSProperties: SRS Server is: SERVER.
    [10:48:46]: Always: :GetSRSProperties: SRS Instance is: MSSQLSERVER
    [10:48:46]: Debug: :GetSRSProperties:  Actual SRS reg location is: SOFTWARE\Microsoft\Microsoft SQL Server\MSRS11.MSSQLSERVER\Setup
    [10:48:46]: Info: :Attempting to get the SSRS version from:
    \\SERVER\Root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER:__NAMESPACE
    [10:48:47]: Debug: :GetSRSProperties: SRS DatabaseServerName is SERVER.
    [10:48:47]: Debug: :GetSRSProperties: SRS InstanceName is MSSQLSERVER.
    [10:48:47]: Debug: :GetSRSProperties: SRS DatabaseName is ReportServer.
    [10:48:47]: Debug: :GetSRSProperties: SRS Report Server folder is C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\.
    [10:48:47]: Debug: :GetSRSProperties: SRS Config File is C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rssrvpolicy.config.
    [10:48:47]: Debug: :GetSRSProperties: SRS binary folder is C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin.
    [10:48:47]: Info: :Attempting to get the SSRS version from:
    \\SERVER\Root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER:__NAMESPACE
    [10:48:47]: Info: :Info:Found url for given RS instance:SERVER. RS
    URL:https://SERVER.DOMAIN.com.br:443/ReportServer
    [10:48:47]: Debug: :GetSRSProperties: ReportServer Url is
    https://SERVER.DOMAIN.com.br:443/ReportServer.
    [10:48:47]: Always: :Reporting URL:
    https://SERVER.DOMAIN.com.br:443/ReportServer
    [10:48:47]: Info: :Attempting to connect to above URL
    [10:49:12]: Always: :Create dummy schedule
    [10:49:19]: Always: :Delete dummy schedule
    [10:49:20]: Always: :Entering Page: AccountsInformationPage
    [10:49:42]: Info: :Info:AccountsInformationPage: In OnNextFinalValidationsDoWork to validate account access.
    [10:50:03]: Error: :Error:Could not validate the specified account because the SQL Server Instance was null.
    [10:50:03]: Info: :Standalone Reporting needs to validate the Data Reader account against the Management Group for clean install.
    [10:50:03]: Error: :Error:GetUserNameGivenAccount: Account Name was not specified
    [10:50:03]: Error: :Failed to check if Data Reader account is same as that in the management group: Threw Exception.Type: System.ArgumentNullException, Exception Error Code: 0x80004003, Exception.Message: Value cannot be null.
    Parameter name: account.accountUserName
    [10:50:03]: Error: :StackTrace:   at Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.SetupUtils.GetUserNameGivenAccount(Account account, String& userName)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingComponent.IsDataReaderAccountSameInManagementGroup(Account dataReaderAccount, String managementServerName)
    [10:50:03]: Info: :Info:AccountsInformationPage: Async account validation thread returned to UI thread.

    The user running setup is not in sysadmin role in the reporting database. This one took a little bit longer to tackle. The SDK account (the
    Data Reader and Data Writer account as well) did have sysadmin permissions on that database
    (ReportServer).
    Verify that user who used in setup has sysadmin role
    Also checked the Data Warehouse database (hosted on the same server) and the same permissions were in place there as well. A last check was performed on
    Security > Server Roles > sysadmin.
    Also you can refer below link
    http://thoughtsonopsmgr.blogspot.com/2011/08/scom-r2-reporting-installation-keeps-on.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical

  • Error when running report in CMC and Infoview

    Hi all,
    i have this following problem:
    - when i try to run report in cmc it fails and i get this error message: Error in File ~tmp1a745af945b59b0.rpt: Failed to load database information
    - when i try to run the report in infoview the error message looks like this: Error in File test_4: Failed to load database information.
    Where can be the possible problem ?
    Thanks for any suggestions.

    <b>i dont know if this could help you, but i found something when trying to refresh report in infoview - the full error log:</b>
    2009-05-27 08:40:54
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Error in File Vykaz_2:
    Failed to load database information.---- Error code:-2147215357 Error code name:internal
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.findGroup(Unknown Source)
         at com.businessobjects.report.web.event.q.a(Unknown Source)
         at com.businessobjects.report.web.event.z.a(Unknown Source)
         at com.businessobjects.report.web.event.bt.broadcast(Unknown Source)
         at com.businessobjects.report.web.event.ak.a(Unknown Source)
         at com.businessobjects.report.web.a.q.if(Unknown Source)
         at com.businessobjects.report.web.e.a(Unknown Source)
         at com.businessobjects.report.web.e.a(Unknown Source)
         at com.businessobjects.report.web.e.if(Unknown Source)
         at com.crystaldecisions.report.web.viewer.CrystalReportViewerUpdater.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
         at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.if(Unknown Source)
         at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         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:664)
         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(Thread.java:595):
    Edited by: Martin  Zluky on Jul 27, 2009 9:35 AM

  • Error when running reports: "File Server needs to be re-initialized"

    Hi.
    This error "File Server needs to be re-initialized" appears when our users try to run reports on 11.5.10. EBS.
    There is also a message box that appears and reads:
    "A error occurred while attempting to establish a conection to Application File Server. There may be a network configuration problem, or the TNS listener may not be running."
    This is a problem in our test environment. We recently ran autoconfig on the test side.
    I have checked Metalink and also wider google search.
    Perhaps we have an issue with the tnsnames files? Well, I verified this and the tnsnames in production and test, and they are the same.
    Perhaps a listener.ora file issue?
    "The issue is caused by the variables APPLFSTT and APPLFSWD is not being set properly in the <8.0.6_ORACLE_HOME> listener.ora file. " (Note 263654.1)
    I am trying to verify the meaning of the following (in listener):
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /oracli2/oracle/testora/8.0.6 )
    ,APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE;PROD_FO,APPLFSWD=/or
    acli2/oracle/testappl/admin;/oracli2/oracle/testcomn/temp;/oracli2/oracle/testco
    mn/html/oam/nonUix/launchMode/restricted' )
    In the APPLFSTT entry, should there be any mention of "PROD" ? Shouldnt this all be changed to TEST?
    Also, comparing this to the PROD listener, the order of APPLFSTT is different:
    TEST: APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE
    PROD:APPLFSTT=
    PROD_806_BALANCE;PROD;PROD_BALANCE;PROD_FO,
    I have made a copy of our listener in TEst, so I can edit the existing one. Trouble is, not sure if I even should try to edit it!
    Any suggestions, much appreciated.
    Oracle 9.2.0. AIX 5.2.
    Notes covered in Metalink:
    274177.1
    303971.1
    304568.1
    263654.1

    Yes thanks for that. Metalink has informed me to do the same, basically.
    But I am in the middle of a cloning, so I will finish that then run autoconfig once again.
    I already ran Autoconfig on both source and target, so will do again once this process is over.
    Cheers.
    DA

  • Error when running reports on the WEB

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

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

  • Error while running report..

    Hi, We use 9iAS on linux and while running one report , we get this error:
    REP-0177: Error while running in remote server
    REP-300: date format is too long for internal buffer
    (sign(decode( ==> trunc(imp.tnr_matu_date),
    When i run the same report on my system (WINDOWS) it runs fine..Even on my dev UNIX box , it runs without any problem..Could somebody help me out?Thanks..

    Hi
    Check that eul user discoverer user has the select right to the data table(s).
    Ott Karesz
    http://www.trendo-kft.hu

  • "Failed to open report" error while running reports using Crystal Report

    We have a web application develeoped in ASP.Net, SQL Server 2005 , Crystal Reports 10.0. Sometimes if a large number of users run reports from their individual nodes they receive an error "Failed to open report ", if we restart the IIS they are able to run the reports. In addition to this the users also sometimes get the error "Maximum Report limit attained". Can any one provide me with a solution other than restarting the IIS.

    Hi,
    Use the close and dispose method for Report object. Its a best practice to code also gc.collect for garbage collection.
    It might help you!!
    Regards,
    Amit

Maybe you are looking for

  • How to install my company's image of Windows 7 onto a Bootcamp partition?

    My company uses a reimaging DVD to install Windows 7, MS Office, and all other propietary company software and settings.  On a PC, you boot to the disk, it asks is you want to erase the entire and reimage the entire disk.  It does not recongize parti

  • Problem about RMAN-06023: no backup or copy of datafile 5 found to restore

    here is the error info when i duplicate database use rman RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: ====================================

  • Settlement on tooling with AIAB

    Hello, I have an error when I run a settlement on tooling FXA with transaction AIAB The error detail is the following: what can be the reason ? Receiver categ. FXA is not allowed by settlement prof. NS for this sender Message no. KD031 Diagnosis The

  • IMPDP take too much time at TABLE STATISTICS

    Hi experts. on of my database is taking taking to much time during IMPDP at TABLE STATISTICS. it take alomost 20 mints to import TABLE STATISTICS while on the other hand all other objects are imported within 5 to 7 minits. my database version is 10.2

  • Gradient Editor won't open

    When I hover over the gradient to be able to click it to open the Editor, it does not open the editor. I am unable to modify any gradients. It sort of freezes my screen and if I do not hit RETURN, I am unable to navigate anywhere. Once RETURN is hit