Exception when connecting to Reporting and Analysis services from Java API

Hello,
I'm trying to connect to Hyperion Reporting and Analysis services from Java API using [Developer's guide|http://www.bidw.in/docs/hs_developer.pdf] .
I get this error:
com.sqribe.rm.ReportMartException: com/hyperion/css/CSSException
     at com.sqribe.rm.SessionImpl.convertError(Unknown Source)
     at com.sqribe.rm.AASessionImpl.open(Unknown Source)
     at com.sqribe.rm.AASessionImpl.internalInit(Unknown Source)
     at com.sqribe.rm.AASessionImpl.<init>(Unknown Source)
     at com.sqribe.rm.SessionFactory.getInstance(Unknown Source)
     ...My code:
String user = "user";
String pwd = "password";
String host = "my.hyperion.server";
int port = 6800;
try {
     Session theSession = SessionFactory.getInstance(user, pwd, host, port);
     Repository theRepository = theSession.getRepository();
} catch (UserValidationException e) {
     e.printStackTrace();
} catch (UnknownReportMartException e) {
     e.printStackTrace();
} catch (ReportMartException e) {
     e.printStackTrace();
}I have tried to look at my services running, and it all looks OK. I've checked user/passowrd/port for GSM. What can be wrong?
I also tried to run samples from \BIPlus\SDK\samples\java, e.g. Login.java:
#> java Login user password my.hyperion.server 6800with this effect
com.sqribe.rm.ReportMartException: SystemExceptionError
        at com.sqribe.rm.SessionImpl.convertError(Unknown Source)
        at com.sqribe.rm.AASessionImpl.open(Unknown Source)
        at com.sqribe.rm.AASessionImpl.internalInit(Unknown Source)
        at com.sqribe.rm.AASessionImpl.<init>(Unknown Source)
        at com.sqribe.rm.SessionFactory.getInstance(Unknown Source)
        at Login.<init>(Login.java:36)
        at Login.main(Login.java:69)I'm sure that I'm connecting to the server because when put wrong passowrd or user as input to Login class I get this:
com.sqribe.rm.ReportMartException: AUTHEN_CSSLoginFailed
        at com.sqribe.rm.SessionImpl.convertError(Unknown Source)
        at com.sqribe.rm.AASessionImpl.open(Unknown Source)
        at com.sqribe.rm.AASessionImpl.internalInit(Unknown Source)
        at com.sqribe.rm.AASessionImpl.<init>(Unknown Source)
        at com.sqribe.rm.SessionFactory.getInstance(Unknown Source)
        at Login.<init>(Login.java:36)
        at Login.main(Login.java:69)so it is there but something is wrong later. Any idea what?
Please help.
regards,
Pawel
Edited by: Paoro on 2010-09-27 02:02

HI,
I am getting the same error while running the Login file, Did any one resolve this issue?
Please share the solution.
Thanks.

Similar Messages

  • SmartView connection for reporting and analysis

    Anyone else using version 11.1.2? We have installed SmartView and there is not an option to change service provider so that we can connect to reporting and analysis. We have successfully connected to the HFM office provider, however when entering the listxml URL for reporting and analysis like we entered the HFMofficeprovider it cannot connect. Oracle has advised us there is supposed to be the ability to add a service and we are missing that. They have advised that we run the EPM configuraton again, however we dont think that will help since we have run this a few times already. We are waiting feedback but just reaching out if anyone else has or had this issue
    Edited by: jshoe on Jun 17, 2010 1:35 PM

    With 11.1.2, Smart View uses Workspace to keep track of the Shared Connection providers (including R&A). It should show up as "RAFramework - 11.1.2 - Reporting and Analysis Framework".
    R&A registers with workspace when it is configured. In order for workspace to pick up this regsitration, you have to re-run the configuration for the Foundation tasks of "Configure Logical Address for Web Applications", "Configure Oracle Configuration Manager" and "Configure Web Server".
    I would then re-boot the server for the changes to take affect.

  • Problem when connecting locally to Oracle Database 10g from Java code

    Good afternoon,
    I try to connect to my local Oracle 10g from JAVA code. Could somebody tells me what are the 'values' to enter in place of 'value1, value2, value3' in the following:
    final String connectionURLThin = "jdbc:oracle:thin:@value1:value2:value3";
    I tried to put my 'user' and 'pw' credentials I used when connecting with SQL*PLUS:
    value1=my_user_name
    value2=my_pw
    value3=my_schema
    but it doest work. Besides where could have I to put the 'WORKSPACE" name?
    Thanks for any help.
    Claude
    Details:
    ERR MESSAGE----------------------
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/dms/instrument/ExecutionContextForJDBC
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:365)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:854)
    at java.sql.DriverManager.getConnection(DriverManager.java:620)
    at java.sql.DriverManager.getConnection(DriverManager.java:200)
    at javaapplication6.ConnectionExample.driverManager(ConnectionExample.java:138)
    at javaapplication6.Main.main(Main.java:36)
    Caused by: java.lang.ClassNotFoundException: oracle.dms.instrument.ExecutionContextForJDBC
    at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:319)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:264)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332)
    ... 8 more
    Java Result: 1
    BUILD SUCCESSFUL (total time: 0 seconds)
    ---------------------ERR MESSAGE
    JAVA code------------------it compiles but throw an error when running there -> (*)...
    final String driverClass = "oracle.jdbc.driver.OracleDriver";
    final String connectionURLThin = "jdbc:oracle:thin:@jeffreyh3:1521:CUSTDB";
    final String userID = "scott";
    final String userPassword = "tiger";
    final String queryString = "SELECT" +
    " user " +
    " , TO_CHAR(sysdate, 'DD-MON-YYYY HH24:MI:SS') " +
    "FROM dual";
    public void driverManager() {
    Connection con = null;
    Statement stmt = null;
    ResultSet rset = null;
    try {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = DriverManager.getConnection(connectionURLThin, userID, userPassword); // (*) prob here
    stmt = con.createStatement ();
    rset = stmt.executeQuery(queryString);
    rset.close();
    stmt.close();
    } catch (SQLException e) {e.printStackTrace();
    --------------------JAVA JDK 1.6
    My system ------------------------
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production

    Yes, the network connection could not be established. Like the error said.
    What you're asking about is the exact reason, but that could be any number of things and not at all related to code. You could have the wrong host, the wrong port. A firewall could be blocking the outgoing connection, a firewall could be blocking the incoming connection. Etc. etc.

  • Hyperion Reporting and Analysis - DAS, IR and Job Services Replication..

    Dear All,
    We are on Hyperion System 9.3.1 on Windows box and Repository in Oracle 10g Database. We have around 300 Interactive scheduled jobs.
    When these jobs are getting executed Hyperion Services are getting hang and In logs we are getting "Process out of memory..".
    In order to overcome "Process out of Memory.. Exiting" error. We need to replicate DAS, Interactive Reporting and Job Services on the same machine.
    I am doing Hyperion's IR, DAS, JOB Services Replication in Development environment. To achieve the same I performed the following tasks :
    # I have installed and configured Hyperion System 9.3.1 below components on MS Windows XP professional SP2 and Repository in Oracle 10g database.
    Hyperion Shared Services 9.3.1
    Hyperion Reporting and Analysis BI+ Services
    Hyperion Reporting and Analysis UI+ Services
    Every thing was configured fine.
    # To replicate the IR, DAS and Job Services. I started the Hyperion Reporting and Analysis BI+ Setup on the same machine then I select IR, DAS and Job Services.
    # Next I started Configuration Utility. Which ask me to configure Database. I selected the same database which I used for BI Services previously. Database Configuration was successful.
    # I changed the Port as below
         Core Services to 7801 instead of 6801
         Chaged the port for Job Service 7796 instead of 6796.
    # Next started Service Configurator where System was showing one more Job Service (JF2_<hostname>) in Remote Service Configurator. And in Local Service Configurator System was showing new BI and DAS. Then I configured Data Sources in DAS.
    # Started the Services.
    Next I started the Scheduled Jobs. It is taking same time as earlier. In logs it is showing that Only JF2_<hostname> Service is getting used. System is not using JF1_<HOSTNAME> anymore.
    I have few query regarding this.
    1) Why Configuration Utility didn't ask for GSM host and Port? Do I need to configure it manually?
    2) I have not chaged the port for DAS and IR Services. my concern is regarding port usage by new DAS and IR Services ? Do I need to configure it or It will be managed by system itself?
    Please show me the direction. Any help would be highly appreciable.
    Regards,
    Manmohan Sharma

    We have replicated the Hyperion Reporting and Analysis Services by changing the port number of Replicated Services to non-default port.
    Services are working fine.
    Regards,
    Manmohan Sharma

  • Hyperion Reporting and Analysis

    Hello Gurus,
    So I installed Hyperion (11.1.2.2) foundation services(all componants), essbase(all componants), planning (all componants. well, it was only one componant), Reporting and Analysis framework (web application, services and common libraries. i installed only these two because hyperion planning depends on them), financial management ADM driver (chosen by default when i want to install hyperion reporting and analysis). i installed them and configured them all togather. I'm using a Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production on Windows 2008 SP2 32bits.
    Configuration of Reporting and Analysis framework failed, and that caused several problems when i ran the EPM system Diagnosis. this is what i got. Note: I'm gonna list only the errors/warnings in anything other than reporting and Analysis. as for reporting and analysis, i'm gonna list everything. sorry it's so long....
    Hyperion Foundation
    FAILED HTTP: HTTP Checking availability of HTTP context http://DC-HYPERIONT01:19000/raframework/index.jsp
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    0 seconds
    EPM System Registry
    FAILED REG: Registry Next issues are present:
    LOGICAL_WEB_APP (id: fa67b59381bd8c85S4cc267951398ff60006S73df):
    "webAppType" property missed
    "context" property missed
    "port" property missed
    "SSL_Port" property missed
    "isSSL" property missed
    "host" property missed
    "" child missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S7bc8):
    "applicationId" property missed
    "RA_PRODUCT" parent missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S74c6):
    "applicationId" property missed
    "DATABASE_CONN" child missed
    Error: Checker execution failed.
    Recommended Action: Refer to the validation logs for exception details.
    Financial Reporting
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: ORA-00942: table or view does not exist
    Recommended Action: Refer to the validation logs for exception details.
    0 seconds
    Reporting and Analysis
    FAILED CFG: Configuration Validating that configuration tasks have been completed
    Error: EPMVLD-01004: The following configuration tasks have not been completed:
    FrameworkServicesConfiguration: Configuration Failed
    Recommended Action: Attempt to configure referenced tasks
    0 seconds
    PASSED DB: Database Connectivity Checking connection to database jdbc:oracle:thin:@dc-hypdbt01.nuqulgroup.loc:1521:hybdb
    0 seconds
    PASSED SVR: Essbase Java API Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect ****** DC-HYPERIONT01:1423 Embedded
    5 seconds
    PASSED EXT: External Authentication Check Native Directory external authentication provider configuration
    0 seconds
    PASSED REG: Configuration Checking if product has only one product node in registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    0 seconds
    FAILED RA: Reporting and Analysis Check if all required RAF properties exist under the RAF Logical Web App component.
    Error: Some required properties are not found in the RAF Logical Web App component: WebClient.SmartPages.DefaultSmartPage.PreconfiguredCategories, WebClient.SmartPages.ColorScheme.ColorScheme1.BackgroundColor, WebClient.Applications.DAServlet.OpenNewWindow, WebClient.UserInterface.Localization.localLanguageCode, WebClient.SmartPages.ColorScheme.ColorScheme2.HeaderColor, WebClient.Cache.Objects.HeadlinesPageTTL, WebClient.SmartPages.ColorScheme.ColorScheme0.FooterColor, WebClient.Internal.Cookies.EncryptCookies, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizard, WebClient.SmartPages.ColorScheme.ColorScheme0.HeadingColor, WebClient.UserInterface.Localization.localCountryCode, WebClient.Cache.Domain.DomainInfoTTL, WebClient.SmartPages.ColorScheme.ColorScheme3.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.Name, RCPDirectoryURL2, WebClient.Cache.Objects.CategoryCacheSize, WebClient.UserInterface.JobOutput.MIMETypeToDisplayForSQRProgramOutput, WebClient.Cache.Objects.TaskListingTTL, WebClient.Cache.Objects.CategoryTTL, SmartViewContext, WebClient.Internal.Transfer.PassDCByStream, WebClient.SmartPages.ColorScheme.ColorScheme2.FooterColor, WebClient.SmartPages.ColorScheme.ColorScheme2.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.HeaderColor, OfficeAddinSupport, WebClient.SmartPages.ColorScheme.ColorScheme0.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeaderColor, WebClient.Applications.iHTML.PollingTimeSec, WebClient.SmartPages.ColorScheme.ColorScheme3.LeftColor, WebClient.Cache.Objects.CacheModifyTTL, WebClient.SmartPages.ColorScheme.ColorScheme1.LeftColor, WebClient.Cache.Objects.CacheListTTL, WebClient.UserInterface.Subscription.ShowSubscriptions, WebClient.SmartPages.ColorScheme.ColorScheme2.LeftColor, WebClient.Diagnostics.Log.Configuration, WebClient.UserInterface.JobOutput.ShowHTMLOutputForSQRPrograms, WebClient.UserInterface.Localization.ShowTimeOrder, WebClient.Applications.DAServlet.DASResponseTimeout, WebClient.Applications.DAServlet.PollingTimeSec, WebClient.UserInterface.Localization.localVariant, WebClient.SmartPages.ColorScheme.ColorScheme0.LinkColor, WebClient.UserInterface.SmartCut.ShowAsLink, WebClient.SmartPages.ColorScheme.ColorScheme3.BackgroundColor, WebClient.UserInterface.JobOutput.ShowSPFOutputForSQRPrograms, WebClient.SmartPages.ColorScheme.ColorScheme3.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme3.LinkColor, WebClient.SmartPages.General.MaxNumberOfInitializedFromPublished, WebClient.Internal.Upload.MaxFileSize, WebClient.SmartPages.ColorScheme.ColorScheme2.RightColor, WebClient.SmartPages.ColorScheme.ColorScheme3.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme1.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme2.HeadingColor, WebClient.UserInterface.Localization.ShowDateOrder, WebClient.Cache.Objects.BrowseQueryTTL, RelatedContentProtocol, WebClient.Cache.Objects.PublishedSmartPagesQueryTTL, WebClient.CorporateWorkspage.Folder, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainFrame, WebClient.SmartPages.Publish.Location, WebClient.SmartPages.General.MaxNumberOfSmartPages, WebClient.SmartPages.ColorScheme.ColorScheme2.Name, WebClient.SmartPages.ColorScheme.ColorScheme3.Name, WebClient.SmartPages.DefaultSmartPage.DefaultColorScheme, WebClient.Cache.Objects.CacheListSize, WebClient.UserInterface.Configuration.EnableMSReportsIntegration, WebClient.SmartPages.ColorScheme.ColorScheme2.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.RightColor, WebClient.Internal.Temp.Location, WebClient.SmartPages.ColorScheme.ColorScheme0.BCMessagesColor, WebClient.Applications.iHTML.BQServiceResponseTimeout, RAFVersion, customSmartcutUrl, WebClient.UserInterface.PortalColor.MainFrame.Title.ColorMainTitleUnderline, WebClient.SmartPages.ColorScheme.ColorScheme1.FontColor, WebClient.Applications.iHTML.DiskCachePollingPeriod, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizardBorder, WebClient.Cache.Objects.JobTTL, WebClient.SmartPages.General.ShowHeadings, WebClient.SmartPages.ColorScheme.ColorScheme3.FooterColor, WebClient.Applications.DAServlet.ZAC, Folder0, WebClient.SmartPages.ColorScheme.ColorScheme3.RightColor, WebClient.Cache.Notifications.NotificationQueryTTL, WebClient.Internal.Cookies.KeepCookiesBetweenBrowserSessions, WebClient.SmartPages.DefaultSmartPage.ShowBookmarks, WebClient.SmartPages.DefaultSmartPage.PreconfiguredEmbeddedObjects, WebClient.Cache.Browse.JobOutputSummaryListing, WebClient.SmartPages.DefaultSmartPage.ShowExceptionsDashboard, WebClient.SmartPages.ColorScheme.ColorScheme0.Name, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainLinkFont, WebClient.SmartPages.ColorScheme.ColorScheme3.HeaderColor, WebClient.Internal.Redirect.RedirectPolicy, WebClient.SmartPages.ColorScheme.ColorScheme0.LeftColor, WebClient.SmartPages.ColorScheme.ColorScheme1.RightColor, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainFont, WebClient.SmartPages.ColorScheme.ColorScheme1.FooterColor, WebClient.UserInterface.Localization.Show24HourTime, WebClient.SmartPages.ColorScheme.ColorScheme0.FontColor.
    Recommended Action: Ensure that you ran the config tool and configured the RAF Web App component.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Agent (AGENT) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if RAF Services are available.
    No RAF Services (Agent Module) components found in Registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Job Factory data folder exists.
    Data file locations are valid.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module is associated with some Agent.
    Every Agent Module is associated with some Agent.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Setup (RA_SETUP) component exists.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT.
    Error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS).
    Error: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agent Modules and corresponding Agents belong to the same host.
    Agent Modules and corresponding Agents belong to the same host.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if all required RAF properties exist under the Reporting and Analysis Setup component.
    The Reporting and Analysis Setup component is not found.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Service Broker data folder exists.
    Data file locations are valid.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Service (RA_SERVICE) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Agent Module (AGENT_MODULE) components exist.
    Error: Components not found.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required Workspace configuration files exist under the RAF Logical Web App component.
    All required files exist.
    0 seconds
    WARNING RA: Reporting and Analysis Checker execution failed.
    Check if Agents are available.
    No Agent components found in Registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Reporting and Analysis Service is associated with some Agent Module.
    Every Reporting and Analysis Service is associated with some Agent Module.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Event Server data folder exists.
    Data file locations are valid.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent is associated with some Agent Module(s).
    Every Agent is associated with some Agent Module(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists.
    Found: 1.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Repository data folder exists.
    Data file locations are valid.
    0 seconds
    FAILED WA: Essbase connectivity Check connectivity between Web Analysis Server and Essbase Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Essbase Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: HFM connectivity Check connectivity between Web Analysis Server and Financial Management Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Financial Management Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: Login Check the possibility to login on Web Analysis Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that Web Analysis Web Application is configured and started.
    0 seconds
    PASSED WEB: Web Application Availability of Web application context http://DC-HYPERIONT01:9000/WebAnalysis
    0 seconds
    Many Many thanks in advance,
    Zain

    Hello Krishna,
    yes, looks like i didn't have moduke 7 downloaded. however after i did and installed it, i still got the following errors that seemed to do with connectivity to RAFRAMEWORK and it's database. I am going to list errors in all modules, except for Reporting and Analysis, i'm going to post everythign else.
    Hyperion Foundation
    FAILED HTTP: HTTP Checking availability of HTTP context http://DC-HYPERIONT01:19000/raframework/index.jsp
    Error: com.hyperion.cis.utils.BadResponseCodeException: Bad response code with GET method: 404
    Recommended Action: Check that the application is started
    0 seconds
    EPM System Registry
    FAILED REG: Registry Next issues are present:
    LOGICAL_WEB_APP (id: fa67b59381bd8c85S4cc267951398ff60006S73df):
    "webAppType" property missed
    "context" property missed
    "port" property missed
    "SSL_Port" property missed
    "isSSL" property missed
    "host" property missed
    "" child missed
    RA_FRAMEWORK (id: fa67b59381bd8c85S4cc267951398ff60006S74c6):
    "applicationId" property missed
    "DATABASE_CONN" child missed
    Error: Checker execution failed.
    Recommended Action: Refer to the validation logs for exception details.
    Financial Reporting
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: Datasource property raframeworkDatasource not found.
    Recommended Action: Fix failure manually with epmsys_registry tool.
    0 seconds
    FAILED REG: Datasource Checking if datasource property exists in the registry
    Error: Datasource JNDI property raframeworkDatasourceJNDI not found.
    Recommended Action: Fix failure manually with epmsys_registry tool.
    0 seconds
    Reporting and Analysis
    PASSED CFG: Configuration Validating that configuration tasks have been completed
    0 seconds
    PASSED DB: Database Connectivity Checking connection to database jdbc:oracle:thin:@dc-hypdbt01.nuqulgroup.loc:1521:hybdb
    0 seconds
    PASSED SVR: Essbase Java API Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect ****** DC-HYPERIONT01:1423 Embedded
    6 seconds
    PASSED EXT: External Authentication Check Native Directory external authentication provider configuration
    0 seconds
    PASSED REG: Configuration Checking if product has only one product node in registry.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Web App (RA_FRAMEWORK_WEB_APP) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    Every Agent Module (except IR Log) is associated with some Reporting and Analysis Service(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if IR BI Services are available.
    All IR BI Services are available: IRBI_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if the Reporting and Analysis Service (RA_SERVICE) components exist.
    Found: 37.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the Agent (AGENT) components exist.
    Found: 1. Hosts for the components: DC-HYPERIONT01.
    0 seconds
    FAILED RA: Reporting and Analysis Check consistency of the Service Agent properties between Registry and database tables (V8_SERVICEAGENT, V8_SA_PROPS).
    Error: There is inconsistency between Registry and V8_SERVICEAGENT for the following items: JF1, SB1, RM1, ES1.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis Service component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Service Broker data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if the Agent Module (AGENT_MODULE) components exist.
    Found: 6.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Repository data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if IR Job Services are available.
    All IR Job Services are available: IRJOB_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    Reporting and Analysis Services and corresponding Agent Modules belong to the same host.
    3 seconds
    PASSED RA: Reporting and Analysis Check if RAF Services are available.
    All RAF Services are available: RAF_AGENT_MODULE (Agent on dc-hyperiont01), RAF_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if IR Log Services are available.
    All IR Log Services are available: IRLOG_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required Workspace configuration files exist under the RAF Logical Web App component.
    All required files exist.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Reporting and Analysis Service is associated with some Agent Module.
    Every Reporting and Analysis Service is associated with some Agent Module.
    1 seconds
    PASSED RA: Reporting and Analysis Check consistency of the Service Agent sets between Registry and V8_SERVICEAGENT.
    Data in Registry and database are consistent.
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent is associated with some Agent Module(s).
    Every Agent is associated with some Agent Module(s).
    0 seconds
    PASSED RA: Reporting and Analysis Check if every Agent Module is associated with some Agent.
    Every Agent Module is associated with some Agent.
    0 seconds
    FAILED RA: Reporting and Analysis Check if all required RAF properties exist under the RAF Logical Web App component.
    Error: Some required properties are not found in the RAF Logical Web App component: WebClient.SmartPages.DefaultSmartPage.PreconfiguredCategories, WebClient.SmartPages.ColorScheme.ColorScheme1.BackgroundColor, WebClient.Applications.DAServlet.OpenNewWindow, WebClient.UserInterface.Localization.localLanguageCode, WebClient.SmartPages.ColorScheme.ColorScheme2.HeaderColor, WebClient.Cache.Objects.HeadlinesPageTTL, WebClient.SmartPages.ColorScheme.ColorScheme0.FooterColor, WebClient.Internal.Cookies.EncryptCookies, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizard, WebClient.SmartPages.ColorScheme.ColorScheme0.HeadingColor, WebClient.UserInterface.Localization.localCountryCode, WebClient.Cache.Domain.DomainInfoTTL, WebClient.SmartPages.ColorScheme.ColorScheme3.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.Name, RCPDirectoryURL2, WebClient.Cache.Objects.CategoryCacheSize, WebClient.UserInterface.JobOutput.MIMETypeToDisplayForSQRProgramOutput, WebClient.Cache.Objects.TaskListingTTL, WebClient.Cache.Objects.CategoryTTL, SmartViewContext, WebClient.Internal.Transfer.PassDCByStream, WebClient.SmartPages.ColorScheme.ColorScheme2.FooterColor, WebClient.SmartPages.ColorScheme.ColorScheme2.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.HeaderColor, OfficeAddinSupport, WebClient.SmartPages.ColorScheme.ColorScheme0.BackgroundColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeaderColor, WebClient.Applications.iHTML.PollingTimeSec, WebClient.SmartPages.ColorScheme.ColorScheme3.LeftColor, WebClient.Cache.Objects.CacheModifyTTL, WebClient.SmartPages.ColorScheme.ColorScheme1.LeftColor, WebClient.Cache.Objects.CacheListTTL, WebClient.UserInterface.Subscription.ShowSubscriptions, WebClient.SmartPages.ColorScheme.ColorScheme2.LeftColor, WebClient.Diagnostics.Log.Configuration, WebClient.UserInterface.JobOutput.ShowHTMLOutputForSQRPrograms, WebClient.UserInterface.Localization.ShowTimeOrder, WebClient.Applications.DAServlet.DASResponseTimeout, WebClient.Applications.DAServlet.PollingTimeSec, WebClient.UserInterface.Localization.localVariant, WebClient.SmartPages.ColorScheme.ColorScheme0.LinkColor, WebClient.UserInterface.SmartCut.ShowAsLink, WebClient.SmartPages.ColorScheme.ColorScheme3.BackgroundColor, WebClient.UserInterface.JobOutput.ShowSPFOutputForSQRPrograms, WebClient.SmartPages.ColorScheme.ColorScheme3.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme3.LinkColor, WebClient.SmartPages.General.MaxNumberOfInitializedFromPublished, WebClient.Internal.Upload.MaxFileSize, WebClient.SmartPages.ColorScheme.ColorScheme2.RightColor, WebClient.SmartPages.ColorScheme.ColorScheme3.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme1.LinkColor, WebClient.SmartPages.ColorScheme.ColorScheme1.HeadingColor, WebClient.SmartPages.ColorScheme.ColorScheme2.HeadingColor, WebClient.UserInterface.Localization.ShowDateOrder, WebClient.Cache.Objects.BrowseQueryTTL, RelatedContentProtocol, WebClient.Cache.Objects.PublishedSmartPagesQueryTTL, WebClient.CorporateWorkspage.Folder, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainFrame, WebClient.SmartPages.Publish.Location, WebClient.SmartPages.General.MaxNumberOfSmartPages, WebClient.SmartPages.ColorScheme.ColorScheme2.Name, WebClient.SmartPages.ColorScheme.ColorScheme3.Name, WebClient.SmartPages.DefaultSmartPage.DefaultColorScheme, WebClient.Cache.Objects.CacheListSize, WebClient.UserInterface.Configuration.EnableMSReportsIntegration, WebClient.SmartPages.ColorScheme.ColorScheme2.FontColor, WebClient.SmartPages.ColorScheme.ColorScheme2.BCMessagesColor, WebClient.SmartPages.ColorScheme.ColorScheme0.RightColor, WebClient.Internal.Temp.Location, WebClient.SmartPages.ColorScheme.ColorScheme0.BCMessagesColor, WebClient.Applications.iHTML.BQServiceResponseTimeout, RAFVersion, customSmartcutUrl, WebClient.UserInterface.PortalColor.MainFrame.Title.ColorMainTitleUnderline, WebClient.SmartPages.ColorScheme.ColorScheme1.FontColor, WebClient.Applications.iHTML.DiskCachePollingPeriod, WebClient.UserInterface.PortalColor.MainFrame.General.ColorMainWizardBorder, WebClient.Cache.Objects.JobTTL, WebClient.SmartPages.General.ShowHeadings, WebClient.SmartPages.ColorScheme.ColorScheme3.FooterColor, WebClient.Applications.DAServlet.ZAC, Folder0, WebClient.SmartPages.ColorScheme.ColorScheme3.RightColor, WebClient.Cache.Notifications.NotificationQueryTTL, WebClient.Internal.Cookies.KeepCookiesBetweenBrowserSessions, WebClient.SmartPages.DefaultSmartPage.ShowBookmarks, WebClient.SmartPages.DefaultSmartPage.PreconfiguredEmbeddedObjects, WebClient.Cache.Browse.JobOutputSummaryListing, WebClient.SmartPages.DefaultSmartPage.ShowExceptionsDashboard, WebClient.SmartPages.ColorScheme.ColorScheme0.Name, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainLinkFont, WebClient.SmartPages.ColorScheme.ColorScheme3.HeaderColor, WebClient.Internal.Redirect.RedirectPolicy, WebClient.SmartPages.ColorScheme.ColorScheme0.LeftColor, WebClient.SmartPages.ColorScheme.ColorScheme1.RightColor, WebClient.UserInterface.PortalColor.MainFrame.Text.ColorMainFont, WebClient.SmartPages.ColorScheme.ColorScheme1.FooterColor, WebClient.UserInterface.Localization.Show24HourTime, WebClient.SmartPages.ColorScheme.ColorScheme0.FontColor.
    Recommended Action: Ensure that you ran the config tool and configured the RAF Web App component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Job Factory data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if IR DAS Services are available.
    All IR DAS Services are available: IRDAS_AGENT_MODULE (Agent on dc-hyperiont01).
    0 seconds
    PASSED RA: Reporting and Analysis Check if Event Server data folder exists.
    Data file locations are valid.
    1 seconds
    PASSED RA: Reporting and Analysis Check if the Interactive Reporting Product (INTERACTIVE_REPORTING_PRODUCT) component exists.
    Found: 1.
    0 seconds
    FAILED RA: Reporting and Analysis Check if the Reporting and Analysis Setup (RA_SETUP) component exists.
    Error: Found: 2, which is more than 1. This indicates some problem.
    Recommended Action: Ensure that you ran the config tool and configured the Reporting and Analysis component.
    0 seconds
    PASSED RA: Reporting and Analysis Check if all required RAF properties exist under the Reporting and Analysis Setup component.
    All required properties exist.
    0 seconds
    PASSED RA: Reporting and Analysis Check if the RAF Logical Web App (LOGICAL_WEB_APP) component exists.
    Found: 1.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agent Modules and corresponding Agents belong to the same host.
    Agent Modules and corresponding Agents belong to the same host.
    0 seconds
    PASSED RA: Reporting and Analysis Check if Agents are available.
    All Agents are available: Agent on dc-hyperiont01.
    0 seconds
    PASSED SDKC: SDK checker Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat PingBQService ****** localhost 6800
    11 seconds
    PASSED SDKC: SDK checker Launch external checker with next command: D:\install03092012\user_projects\epmsystem1\config\validation\11.1.2.0\launchChecker.bat FetchCategory ****** localhost 6800 /Sample Content
    16 seconds
    FAILED WA: Essbase connectivity Check connectivity between Web Analysis Server and Essbase Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Essbase Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: HFM connectivity Check connectivity between Web Analysis Server and Financial Management Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that: 1) Financial Management Server is configured properly and started; 2) Web Analysis Web Application is configured and started.
    0 seconds
    FAILED WA: Login Check the possibility to login on Web Analysis Server.
    Error: An error occurred while running the check.
    Recommended Action: Ensure that Web Analysis Web Application is configured and started.
    1 seconds
    PASSED WEB: Web Application Availability of Web application context http://DC-HYPERIONT01:9000/WebAnalysis
    0 seconds
    Many many thanks in advance,
    Zain

  • Could not find  a Hyperion Reporting and analysis -system 9

    Dear Experts ,
    i have installed Essbase and planning
    i have configured work space
    http://localhost:19000/worspace
    when i am trying to log in to work space the following error is showing
    Could not find a Hyperion Reporting and analysis -system 9 server running on Hyperion at port 6800.please verify your server connect string confirm that the server is up
    i have started all Hyperion services
    could you please help me in this regard,
    thanks in advance
    Kishore

    Have you installed Reporting and Analysis Services?
    If you have already installed then start the Reporting and Analysis Services..
    Hope this helps..
    Regards,
    Manmohan Sharma

  • Separating Reporting and Analysis from Compact deployment

    Hi,
    We need to separate Reporting and Analysis from the compact deployment since need to have better control and already have many reports created. (I already separated Planning and that worked fine)
    Reporting and Analysis has three applications:
    •     Financial Reporting Web App (includes financial reporting Print Server)
    •     Web Analysis web app
    •     Framework web app
    I plan to use configtool.sh which has following options:
    •     Configure Database (will NOT select this, since DB is already configured)
    •     Deploy to Application Server (will select this for sure)
    •     Configure Reporting and Analysis Services (not sure if need to select this again since was done in the compact deployment) ??
    •     Configure Framework Service ( also not sure if need to select this, since was done before in compact)??
    •     Configure Framework Reporting RMI Ports (also not sure if need to select this, since was done before in compact )??
    My questions:
    1. Do I need to reselect to reconfigure the last three R&A options above (or it doesn't matter if I select as originally? Note we already have developed reports)
    2. Can I specify to deploy the three Web applications to a new separate Managed server (e.g. Reporting0 and port 8200 i.e. deploy with Financial Reporting) or better deploy each to new separate managed server?
    Plan to do this in couple of days. Appreciate the advice.
    Thanks
    Edited by: user8769031 on Feb 6, 2013 5:35 PM

    John,
    No, I don't believe it will remove the apps and I have to change the target for each of the three apps to remove them from EPMSever0, and ensure they are in new managed server(s).
    That's what I had to do when I separated Planning. (That was your hint, thanks)
    Hope my plan is fine. (Sure will be doing a cold backup)
    Thanks
    Edited by: user8769031 on Feb 7, 2013 11:02 AM

  • Reporting and Analysis Framework stuck - status yellow"Startup in Progress"

    I just installed 11.1.2.2.0.66 on Win Server 2008 R2 - Foundation Services, Planning, and Essbase. 64bit computer, 500gb hard drive, physical box, 16gb memory - more than enough i would hope to run an EPM Planning development instance.
    IIS 7.x .net framework 3.5.1 with Oracle Database 11g.
    So each time i launch Workspace and log in as admin, it hangs for about three to five minutes and throws back the error stating that the reporting and analysis services on 6800 aren't responding.
    In the workspace, navigate>administer, reporting and analysis, services, it shows reporting & analysis still trying to start.
    The message in "RaFramework_stdout_console_Servlets" log in c:\oracle\midleware\user_projects\domains\epmsystem\servers\epmserver0\logs\
    says
    [SRC_METHOD:  flush:?] GSM at localhost:6800 is not up

    I will look through those logs. Thanks.
    I did notice that there is a time_wait on the 6800 port - I can't understand if its something to do with the operating system or EPM; I don't have a firewall rule in place on that port and the OS was configured to turn off any firewalls.

  • Unable to register Hyperion Reporting and Analysis with Shared Services

    Hello everybody,
    I'm trying to install and configure Foundation Services in order to schedule Brio Query documents execution and distribution.
    IBM DB2 Express has been installed and configured.
    Shared Services have been installed and configured.
    Reporting and Analysis - System 9 Services have been installed and not yet configured.
    Reporting and Analysis - System 9 UI Services have been installed and not yet configured.
    When proceeding with Hyperion Reporting and Analysis configuration in registering with Shared Services, provided with the same host, port, user profile and password used for configuring Shared Services, I get the following message:
    "An unknown CSS error occured.
    Please check that the information entered is correct."
    Messages from configtool.log file:
    "(Aug 21, 2008, 09:32:32 AM), com.hyperion.cis.config.CmsRegistrationUtil, DEBUG, Getting CSS instance
    (Aug 21, 2008, 09:32:32 AM), com.hyperion.cis.config.CmsRegistrationUtil, DEBUG, URL for CSS.xml = https://itblq001.wincor-nixdorf.com:58080/interop/framework/getCSSConfigFile
    (Aug 21, 2008, 09:32:32 AM), com.hyperion.cis.config.CmsRegistrationUtil, DEBUG, Authenticate LStoppa user to CSS.
    (Aug 21, 2008, 09:32:32 AM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, Failed to authenticate user = LStoppa"
    I can't understand what's happening. May you help me?
    Thank you for every hints.
    Regards
    Lucia

    The service runs until I try to confirm the registration while configuring HRA. Then it stops.
    Apologies for the simple question, as I am trying to make the whole Hyperion System 9 running with little knowledge of it: how do I log to shared services?
    Thanks

  • Hyperion Reporting and Analysis Framework

    Hi Everyone,
    In the services, the Hyperion Reporting and Analysis Framework is not STARTED. When I start it manually, it starts but again after a minute the START status goes away, meaning it stops by itself.
    What could have happened?
    Any input would be appreciated.
    Thanking you in advance.

    These are the kinds of logs it has.
    Checking the log in this location
    [2012-09-20T10:17:44.299-04:00] [RaFramework0] [INCIDENT_ERROR] [] [oracle.EPMRAF.com.brio.one.web.log.CUServerMonitor] [tid: 20] [userId: <anonymous>] [ecid: 0000JbUajWR6qIC0ZFM6Vr1GMS55000000,1:24476] [SRC_CLASS: com.brio.one.web.log.CUServerMonitor] [APP: RAFRAMEWORK#11.1.2.0] [SRC_METHOD: printServerStatus:?] Servlet pulse, memory( free = 603394288 used = 470347536 total = 1073741824 ) total users = 0 active req = 0 max concurrent req = 0
    D:\oracle\Middleware\user_projects\domains\EPMSystem\servers\RaFramework0\logs
    [2012-09-18T08:55:49.009-04:00] [RaFramework0] [ERROR] [EPMREG-11037] [oracle.EPMREG.REG] [tid: 11] [userId: <anonymous>] [ecid: 0000JbPSg2e6qIC0ZFM6Vr1GM6xB000000,0:1] [SRC_CLASS: com.hyperion.hit.registry.Registry] [APP: RAFRAMEWORK#11.1.2.0] [SRC_METHOD: getConnection] An error occured when checking the status of the registry connection and reseting it.[[
    com.hyperion.hit.registry.exceptions.RegistryException: java.sql.SQLException: ORA-28001: the password has expired

  • Reporting and analysis Server Issue

    I have Installed OEPM 11.1.2 and configured everything and all of them were successfully configured except for Reporting and analysis where it failed to deploy to the application server. What could be the issue. I couldn't log in to workspace as it says the reporting and analysis server is not up and running at port 6800.
    When I validated the setup it advises me to start the web analysis application and run the configuration again but there is no specific Web Analysis service in listed in the services window. Whatever the services are listed I've started and ran the configuration again but no success. Am i forgetting something?
    Please help me with this guys. Thank You.
    Junaid

    Hi Junaid,
    OS is OK!
    It seems some services not configured correctly; I can just comment if possible then you can stop all hyperion services and reconfigure most of the time it resolve issues related to Configuration.
    Thanks
    Focusthread Hyperion Trainer
    [http://focusthread.com/training]

  • Could not find a Hyperion Reporting and Analysis  in  workspace

    i installed hyperion 9 system them with reporting and essbase ..
    after configured all .. configure shows sucess but after shared services configuration failed in BI
    unable to open workspace
    when i tried to open Workspace
    "Could not find a Hyperion Reporting and Analysis in workspace9 server running on server at port 6800. Please verify your server connect string and confirm that the server is up."
    Edited by: user1624634 on Mar 10, 2010 12:28 AM

    Hello
    May i suggest adressing this question to a Hyperion/Essbase forum:, here is the link i am certain you'll get your answer quicker.
    Essbase
    Thanks

  • Separate Reporting and Analysis from Workspace

    In the prior releases we have dedicated a separate server for Financial Reporting modules (FR web, scheduler, print server, etc.).  In 11.1.2.x, we have Hyperion Financial Reporting - Web Application and Hyperion Reporting and Analysis Framework - Web Application.
    What is the difference between these two?  If I want to dedicate a single host for only report generation/report viewing how, could I separate Framework and Web services apart from Workspace (which we want on a server with the rest of Foundation services (HSS/APS/EPMA/OHS/EAS, etc.).  Currently I have Reporting and Analysis Framework and Hyperion Reporting and Analysis Framework - Web Application on one server and Financial Reporting - Web Application by itself on a second.  Which service needs the most horsepower/resources  when executing batches/books and/or the odd 'large report'?  I think it was implied that the Web deployments can be on more than one server and one can load balance the two instances.  But suppose I really want to isolate the report processing away from Foundation Services/  Is there a recommended way to do that?
    Thanks in advance,
    -Vince

    John,
    No, I don't believe it will remove the apps and I have to change the target for each of the three apps to remove them from EPMSever0, and ensure they are in new managed server(s).
    That's what I had to do when I separated Planning. (That was your hint, thanks)
    Hope my plan is fine. (Sure will be doing a cold backup)
    Thanks
    Edited by: user8769031 on Feb 7, 2013 11:02 AM

  • Reporting and Analysis server down need to move to another server

    I lost my original server for RA and re-installed the components on another server, however, when I try to access from workspace, I receive the message *"Could not find a Hyperion Reporting and analysis server running on "old server name' at port 6800. Please veriify your server connect string and confirm the server is set up".*
    I've re-run the installer and configuration to no avail. Is there a configuration file that I have to update someplace?

    This basically means that the HSS registry is still pointing to the old server name for RA_FRAMEWORK component.You will have to check through the registry report whether there are multiple instance of RA framework registered (one with the old server and another with the new server).If yes you can delete the old one from registry through the epmsys_registry command tool and reconfigure with the new server.
    If you want assistance with the same,please raise an SR with Oracle support and should be able to guide you through.

  • Reporting and analysis not working in workspace

    the startup document specified does not exist in the repository. select a new startup document on the general preference tab.
    when i click ok
    a not found error occurred communicating with server
    click show details
    uri: http://server:19000/raframework/conf/toolsconfig.xml
    state 404 not found
    and then when i click preference, the reporting and analysis framework seems to be not working because for example for financial reporting and web analysis, we can see things like $(/raframework.....epmstatic/raframework.....etc)
    any help would be fine regarding waht i could have done wrong
    thanks

    Has it ever worked, have you checked the logs,  have you logged into Oracle Support and had a look the documents available e.g. 1422178.1
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • My wifi will not detect networks and will not search for other networks when I search for them. Do I need a new iPhone or can I fix it myself?

    My wifi is on and when it tries to find a wifi connection, the gray little circle just keeps spinning and will not detect our home wifi. I have tried to search for it and connect to it manually, but it will not search for the network name. I'm hoping

  • Submit button doesn't work

    I created a static form in LiveCycle. Then, in order enable the reader rights and allow users to add attachments in the comments, I opened it in Acrobat Pro and enabled the rights and distributed it. But, when it's posted on the intranet, the user se

  • Copying

    Our 6500A Plus will only copy in black and white.

  • Popup for entering Reason for Rejection

    Hi Experts, I have a workflow which has a user deciision step for approval and rejection. On rejecting i want a popup to appears where in user can select the reason for rejection and then exceute the workitem. I have tried using POPUP_GET_VALUES . I

  • Music Videos worse with every iTunes update

    I have purchased a number of music videos over the years. In the past they played fine on Windows XP. With every iTunes update, they've gotten more unstable, beginning with the inability to preview videos on iTunes. (The audio worked, but the image w