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

Similar Messages

  • 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

  • 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

  • VBA to pull from Financial Reporting Studio/Reporting and Analysis Framework

    Hi all,
    I just started using Financial Reporting Studio, and I did a lot of research online to try to answer the questions I have below but to no avail, so I'm hoping I can get answers from the experts here.
    1. I was wondering if it's possible to use SmartView VBA to pull a report from the "Reporting and Analysis Framework" onto Excel? If yes, how?
    2. When I tried to pull lots of data from "Reporting and Analysis Framework" onto Excel using SmartView, it keeps getting the error message "New report failed to insert properly". Is there a way around this? Essentially, what I'm trying to do is pull the Expense data (Actuals, Budget, Forecast) from year 2011 to 2015 (by month) for every department (with each department being on its own worksheet using the split feature). If I reduce the number of departments or columns, it'll work, but when I try to keep everything, it fails.
    Thanks for your guys' help!

    Hi there,
    There is VBA manual for smartiview application however I am not sure that you will be able to automate the retrieve of a report.
    Check chapter 19 of http://docs.oracle.com/cd/E12825_01/epm.111/sv_user.pdf
    Regards,
    Thanos

  • 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.

  • How to chage Workspace Start Page without installing Reporting and Analysis

    Hi:
    any one know how to chage Workspace Start Page without installing Reporting and Analysis?
    thanks

    Not totally sure what you are asking but if you want to change the start page for users/groups have a read of - http://download.oracle.com/docs/cd/E17236_01/epm.1112/bpmui_admin/frameset.htm?assigning_default_preferences.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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/

  • 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 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.

  • 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

  • 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]

  • 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

  • Configure Database is getting failed under Reporting and analysis in 11.1.2.3

    Hi,
    When I am trying to configure the database under Reporting and Analysis its getting failed and when I check the configtool.log it says
    [2014-10-16T05:33:37.446-04:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01107] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] Running file: C:\Oracle\Middleware\EPMSystem11R1\products\biplus\database\Common\postInit.sql
    [2014-10-16T05:33:37.461-04:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] trace: UPDATE V8_CONTAINER SET CREATION_DATE = null, LAST_MODIFIED_DATE = null where CREATION_DATE is null
    [2014-10-16T05:33:37.461-04:00] [EPMCFG] [TRACE] [EPMCFG-01102] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] Execute SQL: UPDATE V8_CONTAINER SET CREATION_DATE = null, LAST_MODIFIED_DATE = null where CREATION_DATE is null
    [2014-10-16T05:33:37.461-04:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] trace: UPDATE V8_CONT_VERSION set CREATION_DATE = null WHERE CREATION_DATE is null
    [2014-10-16T05:33:37.461-04:00] [EPMCFG] [TRACE] [EPMCFG-01102] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] Execute SQL: UPDATE V8_CONT_VERSION set CREATION_DATE = null WHERE CREATION_DATE is null
    [2014-10-16T05:33:37.477-04:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] trace: UPDATE V8_CONT_VERSION set LAST_MODIFIED_DATE = null WHERE LAST_MODIFIED_DATE is null
    [2014-10-16T05:33:37.477-04:00] [EPMCFG] [TRACE] [EPMCFG-01102] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] Execute SQL: UPDATE V8_CONT_VERSION set LAST_MODIFIED_DATE = null WHERE LAST_MODIFIED_DATE is null
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01104] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.DBConfigurator] postInit.sql Processed (3) Success (3) Errors (0)
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [TRACE] [EPMCFG-07558] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] Called : Storage.getComponent(com.hyperion.hit.registry.ComponentType)("RA_FRAMEWORK")
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [TRACE] [EPMCFG-07561] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] Called : Storage.getComponent(com.hyperion.hit.registry.ComponentType)("64711b2385581a47S60706d4c148f4212621S7cb4") : Returned RA_FRAMEWORK
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [TRACE] [EPMCFG-07561] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] Called : Storage.getChildren(com.hyperion.hit.registry.Component,com.hyperion.hit.registry.ComponentType)("RA_FRAMEWORK/64711b2385581a47S60706d4c148f4212621S7cb4,DATABASE_CONN") : Returned 1
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.config.AbstractProductDBConfigurator] trace: This is not datasource db component.  Doing clean up now.
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01110] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.config.AbstractProductDBConfigurator] remove old link only
    [2014-10-16T05:33:37.493-04:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: Removing link from RA_FRAMEWORK ( 64711b2385581a47S60706d4c148f4212621S7cb4 ) to DATABASE_CONN (64711b2385581a47S615148421490d7dbbddS77a8)
    [2014-10-16T05:33:37.508-04:00] [EPMCFG] [NOTIFICATION] [EPMCFG-01112] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.cis.config.AbstractProductDBConfigurator] Create new database component and link it
    [2014-10-16T05:33:37.508-04:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] trace: Storage.getComponents(com.hyperion.hit.registry.ComponentType)(DATABASE_CONN)
    [2014-10-16T05:33:37.508-04:00] [EPMCFG] [TRACE] [EPMCFG-07561] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] Called : Storage.getComponents(com.hyperion.hit.registry.ComponentType)("DATABASE_CONN") : Returned 10 component(s)
    [2014-10-16T05:33:37.571-04:00] [EPMCFG] [TRACE] [EPMCFG-05955] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.document.Storage] Setting link. Parent: id [RA_FRAMEWORK/64711b2385581a47S60706d4c148f4212621S7cb4], componnet type [RA_FRAMEWORK]. Child: id [customURL:HRA/64711b2385581a47S615148421490d7dbbddS77a8], component type [DATABASE_CONN]
    [2014-10-16T05:33:37.602-04:00] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle.EPMCFG] [tid: 20] [ecid: 0000K^OJPaCCslW5Pz_Aid1KFt1l000004,0] [SRC_CLASS: com.hyperion.config.wizard.impl.RunAllTasks] Error: [[
    com.hyperion.cis.config.ProcessingException: Failed to configure HPSU component: {0}, {1}
    at com.oracle.reportinganalysis.config.RADBConfigurator.configure(RADBConfigurator.java:57)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeDbConfigTask(RunAllTasks.java:650)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:296)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:92)
    at java.lang.Thread.run(Thread.java:662)
    All the required tables got created the Schema(SchemaName: HRA) but still the database configuration is getting failed.
    All Other hyperion products got successfully configured.
    Regards,
    VJ.

    Hi Nowshad,
    Thanks for your reply.
    I have did that couple of time but still getting the same above message.  I have also followed the below document from metalink  but still no luck.
    Reporting And Analysis Configuration with New Database Fails (Doc ID 1482499.1)
    I am not sure what I am missing.
    Regards,
    Vijaya Krishna.

  • Install Financial Reporting and Analysis

    Hi All,
    I have a Classic Planning Application on EPM 11.1.1.1.0
    I have hyperion installed in a distributed env..(on three boxes..one running windows xp(machine 1), two running windows server 2003(machine 2 and machine 3.)
    Machine 2 has ...Essbase Server and Oracle.
    Machine 3 has ...Hyperion Planning,Workspace.
    Machine 1 has ...EPMA and Calc Mgr.
    Now i need to install Financial Reporting and analysis..
    Can somebody please guide me as to which box should i go about installing it..?
    Regards.
    Alicia
    Edited by: Alicia on Aug 27, 2009 11:34 PM

    Hello John...
    let em describe my config
    I have a UNIX box and a windows server 2003 box. Now EPMA and calc manager must be installed on Windows
    so that part is fixed ...
    And on the Unix machine i am going to install sharedservice, essbase,eas,planning
    now if i want to install reporting ,then on which machine i should do it?
    Unix Box
    Shared Services
    Essbase Server
    EAS
    HP
    PS
    Workspace
    Windows Server Box
    EPMA
    Calc Man
    Int Rep
    Finan Rep
    SQR Rep
    Web Analysis
    FDM
    Windows Box
    EPMA and CALC
    mgr
    I am using EPM sytem 11.
    Thanks

  • 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.

Maybe you are looking for

  • AutoComplete not working properly in Outlook 2013

    The AutoComplete List is a feature which displays suggestions for names and e-mail addresses as you begin to type them. These suggestions are possible matches from a list of names and e-mail addresses from the e-mail messages that you have sent. Auto

  • How to select a random row with for update?

    Hi, I have a package that needs to assign a random, reusable number (ID) that is not currently being used - to a procedure. I'm trying to simulate a pool of numbers (IDs) using a table that has an ID and IS_USED columns. How do I do: select a random

  • MAC as a gift need to register

    Hello, This is my daughter's Mac that was given to her as a gift by a friend. No sales receipt is available. Is there a way for her to register and get an Apple ID without the proof of purchase?

  • Script to Grant Role for All User Objects.

    Hi DBAs, I have created a select_only role. I need a script to populate that role with all user_objects belonging to one person and eventually grant that role to another person. Perhaps a dynamic sql. Please help. Thanks -Samar-

  • Compare SPRO between DEV and QAs

    Hi there, I'm in GoLive eve and all consultants are desperate with the future problems. Is there a way that I can compare the customizing (SPRO) between DEV and QAS or another system? Thanks, Dany Anderson Edited by: Dany Anderson Alves on Mar 4, 200