Hyperion Financial Reporting server 9.3.1 - Performance with Large batches

I have not been able to find any help yet, so hopefully someone here can help.
We have several financial reporting servers so that we can schedule reports and have users on seperate servers so that they do not interfere with each other.
The problem is that when bursted batch reports that select 100 - +1000 members from the bursting dimension run, the resources are maxing out memory and if multiple batches with the same large number of (but different members) are run at the same time, we start having failures on the services where they hang or worse the server crashes (one server crashed early this morning).
The Windows 2003 servers are Dell 2950 1x intel core 2 duo 3GHz with 8GB of RAM.
We found that if we set the java memory parms at anything higher than 1.5GB the services do not start, so all 8GB available is hardly being used by the server since the FR services (batch scheduler, print server, reports, RMI) are the only things running.
The batches are bursting the report for each member to a network folder for users to access and for archival purposes.
We may need to get Oracle involved, but if anyone here has insight I'd appreciate the assistance.

Hi Robert
I have come across similar issues where the reports take much longer to run as part of a batch than it does when accessed direct via the workspace. Our issue was that Financial Reporting was not dropping the connection to Essbase. We were using windows os and had to add a few DWORDs to the registry:
1. Open the registry and navigate to Local Machine\System\CurrentControlSet\Services\TCPIP\Parameters
2. Add new DWORD Value named TcpTimedWaitDelay, right click and select Modify. Select decimal radio button, type in 30 (this is the number of seconds that TCP/IP will hold on to a connection before it is released and made available again, the default is 120 seconds)
3. Add new DWORD Value named MaxUserPort, right click and select Modify. Select decimal radio button, type in 65534 (this determines the highest port number TCP can assign when an application requests an available user port from the system, the default is 5000)
4. Add new DWORD Value named MaxFreeTcbs, right click and select Modify. Select decimal radio button, type in 6250 (this determines the number of TCP control blocks (TCBs) the system creates to support active connections, the default is 2000. As each connection requires a control block, this value determines how many active connections TCP can support simultaneously. If all control blocks are used and more connection requests arrive, TCP can prematurely release connections in the TIME_WAIT state in order to free a control block for a new connection)
I think we did this to both our essbase and application server and rebooted both afterwards, it made a dramatic improvement to batch times!!
As a personal note I try not to have too many batches running at once as they can interfere with each other and it can lead to failures. Where I have done this before we tend to use windows batch (.bat) files to launch the FR batches from the command line, if time allows I run a few batches to get a reasonable estimate of the time to complete and in my .bat file I add a pause of around that amount of time in between sending the batch requrests to the scheduler. Admittedly I've not done it yet where the number of reports in a bursting batch is as many as 1000.
Hopefully this will help
Stuart

Similar Messages

  • Hyperion Financial Reporting ports for remote access

    Hi,
    May I know what ports should I open if to allow remote access to Hyperion Financial Reporting server to create reports through Hyperion Financial Reporting Studio in home pc?
    Thanks

    Hi,
    You can find a detailed write up on the Hyperion product ports here: http://hyperionism.blogspot.com/2008/11/hyperion-product-ports.html
    This document might be useful to you :- http://www.oracle.com/technetwork/middleware/bi-foundation/epm-component-communications-1112-167817.xls
    You could have also look into SERVERPORTBEGIN and SERVERPORTEND
    http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_tech_ref/frameset.htm?serverportbegin.html
    Hope this helps
    Greetings
    SST.....

  • Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format

    We are unable to open pdf reports in Workspace with the following error. It was all working fine and doesn't work now for unknown reasons.
    Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format
    We are on 11.1.2.1 environment. Ghost Script 8.54 and Java heap settings xms256m and xmx512m.
    Please advice.

    hello,
    just to clarify
    a) the parameter is named DESFORMAT not :DESFORMAT, there is
    no : in front of the name, if you submit it via URL !
    b) there are some issues with acrobat5 and IE but those are not
    only caused by PDFs generated with oracle reports.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Hyperion Financial Reporting Studio "Failed to Connect to Server"

    One of my report developers recently got a new laptop. Since then, she hasn't been able to open an existing report or create a new one. She can log into Financial Reporting Studio, but when trying to open an existing report or create a new report, she gets the error message "Failed to Connect to Server".
    We've tested using her laptop and using mine. We are both fine on my laptop. We both have same issue on her laptop. Therefore, we don't think it's a security/credentials issue.
    We've searched help documentation and other threads in this forum but haven't been able to find what we need.
    We suspect that file(s) are missing or something wasn't configured properly during the new install. Maybe the Planning ADM Driver?? Our company's tech support hasn't been able to help. This is a new implementation, the consultants are gone, and our IT staff isn't up to speed yet.
    Can anyone offer help as to what file/configuration could be the cause and exactly how to correct?
    Thanks.

    We had the same issue after installing the Financial Reporting Studio client.
    If you run the batch script HRRunAnt.cmd in the directory C:\Hyperion\products\biplus\install\bin after installation this fixes the problem.

  • Location of Hyperion Financial Reports on Server

    Hello,
    Are the Hyperion Financial Reports available as raw files on the web server somewhere? I'd like to restore one from backup and was hoping they'd be in the \Hyperion directory as .des files. Probably won't be this easy, but any info would be great.
    Thanks.

    For 7.2.5 Reports, they are in a SQL database table (i think something RPTS) and the binary data field has the text of the report. (I actually like this because if you wanted to check what reports made use of a account, entity, etc, you could just do a freetext search on the table.....)
    For 9.3.1 Reports, they are in a crazy file structure, with crazy names, and are compressed. You will find them under the RM service/web application folder. In order to X-REF the names properly, you'll need to look into the BI Plus database a bit. The table of interest is V8_CONTAINER.
    I put together a SQL 2005 script that will generate you a listing of all of the reports in a hierarchy format. This will will also help you tie out the folders / reports in the file structure......
    NOTE : WHERE d.PARENT_FOLDER_UUID = 'REPORTMART'
    ^ This will return a hierarchy of EVERYTHING in the table which will probably include stuff you don't want to look at. Simply change 'REPORTMART' to match a UUID specified in the results and then the query will show you all items at that point instead.
    Hope this helps
    Charles
    USE your DB name here;
    GO
    WITH Reports (PARENT_FOLDER_UUID, CONTAINER_UUID, NAME, DESCRIPTION, Level, Sort, CREATION_DATE, LAST_MODIFIED_DATE)
    AS
    -- Anchor member definition
    SELECT d.PARENT_FOLDER_UUID, d.CONTAINER_UUID, d.NAME, d.DESCRIPTION, 0 as level, cast(NAME as nvarchar(1024)) as sort, d.CREATION_DATE, d.LAST_MODIFIED_DATE
    FROM V8_CONTAINER as d
    WHERE d.PARENT_FOLDER_UUID = 'REPORTMART'
    UNION ALL
    -- Recursive member definition
    SELECT d1.PARENT_FOLDER_UUID, d1.CONTAINER_UUID, d1.NAME, d1.DESCRIPTION,
    Level + 1, cast(Sort + '|' + d1.Name as nvarchar(1024)), d1.CREATION_DATE, d1.LAST_MODIFIED_DATE
    FROM V8_CONTAINER as d1
    INNER JOIN Reports AS r
    ON d1.PARENT_FOLDER_UUID = r.CONTAINER_UUID
    -- Statement that executes the CTE
    SELECT replicate(' ',Level) + NAME, DESCRIPTION, CREATION_DATE, LAST_MODIFIED_DATE, Level, PARENT_FOLDER_UUID, CONTAINER_UUID
    FROM Reports
    order by sort
    GO

  • Issue on Hyperion Financial Reporting Services -URGENT

    Hi Gurus,
    I would like to know the steps to be performed to take the back up of the Financial reports when all the Financial Services are stopped running.
    Production server is down and noticed that all the services are running fine except the Financial Reporting services.
    I need your advice on how to bring back the Financial reports server to work.
    1) Do I need to take back up of all the Reports before going for server reboot? If yes, can you give me the detailed steps on how to take the back of these reports.
    2) If I go and raised the request to restart the server, is there any effect to the Reports?
    Can you please tell me the procedure/process on how to deal with this kind of issues?
    Awaiting for your help..
    Regards,
    Upendra.

    Hi,
    What happens when you try and start it? Is there anything in the logs or the event viewer ?
    Financial report information is stored in the database repository, so restarting the server is not a problem.
    Reports are usually backed up by exporting them or backing up the database (though you have to back up all hyperion databases at the same time so they can be put back into sync)
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Hyperion financial reporting studio not responding

    hi all,
    I have Hyperion financial reporting studio "client" (Hyperion 9.3.1) installed in my local machine - windows 32 bit machine.
    The machine configuration is:
    P4 3.0 GHz and 1 GB RAM.
    When I launch Hyperion financial reporting studio with username , password and report server information the System performance parameter ( As found in task manager) goes following change:
    CPU usage:fluctuates between 45 - 100% which was initially 1%
    PF usage:jumps to 1.32GB which was initially 362MB
    Physical memory available : drops down from 762188(K) to 1728(K)
    application status: Not responding
    AND ULTIMATELY THE WINDOW OF FINANCIAL REPORTING STUDIO VANISHES .There is no error log created ??
    I cannot proceed further. Please help me out...
    Thanks in advance

    Please post these type of queries to Hyperion BI Workspace & Reporting module

  • 5200 : Error in executing  query -- Hyperion Financial Reporting

    Problem in accessing the Hyperion Financial Reports.User is having full access and able to access all the folders except one folder(Legal Folder reports). We are getting 5200: Error Executing the query error. Recently we have upgraded Hyperion to 11.1.1.3 version . Before upgrade user is not facing the problem. After Upgrade user is getting these errors while accessing the reports. we did research and found in "Error 5200: Error Executing Query" When Viewing Financial Reporting (FR) Reports". Is this error is relevant to the Information provided in Metalink and also can you please tell us is there any impact on doing the solution provided in the below. Why is this error is coming is any preferences needs to be changed.Please help us on this.
    Error Description:
    5200: Error executing query
    Servername/ApplicationName/DatabaseName/Error(1007090) Unknown Member name [Current Point of view for years] in Outline Query
    Doc ID 1107142.1:
    Possible Cause 1:
    If members have recently been added, moved, or deleted from the data source, Essbase, HFM, or Planning, the existing User POV records become out of sync.
    The User Point of View record uses indexing to identify the member. If the index changes because of changes in the outline, the User Point of View record no longer points to the correct location in the outline.
    To resolve the issue, you need to run the ManageUserPOV utility on a Windows server that has the Financial Reporting Reports Server, or in a Unix or Linux environment, has the Financial Reporting Print Server installed.
    You will need to provide a BIPlus Global Administrator user ID and password to run the utility.
    The utility will provide the correct syntax to run the command.
    1. In \Hyperion\products\biplus\bin\ManageUserPOV.properties, specify the following parameters:
    a. ReportServer
    b. DatasourceUser
    c. DatasourcePassword
    d. User
    e. Datasource (You can find the datasource in Workspace under Tools>Database Connection Manager in the Name column.)
    2. From the command line, cd to Hyerion\products\biplus\bin
    3. Type in "ManageUserPOV" without the quotes. The executable will read the parameters previously set in the ManageUserPOV.properties file.
    Thanks,
    Naresh.

    Take a look at this: http://adistrategies.com/index.php?loc=knowledge1&item=291
    Hope it helps.
    Mehmet

  • Hyperion Financial Reporting-Print Service is not Starting-11.1.2.1

    Hi,
    We are using Hyperion 11.1.2.1 and when i look at my Hyperion Financial Reporting-Print service it shows me at stopping and when i right click to stop/start it the options are greyed out.
    I have completely stopped all the hyperion services and started them again and now the HFR Print service is showing me as Starting.
    Kindly help me what should i do to resolve this issue.
    You can see the screen shot at my blog.
    http://hyperion-consulting.blogspot.in/2012/08/hi-we-are-using-hyperion-11.html
    Regards,
    AS
    Edited by: Don'tKnow999 on Aug 30, 2012 9:52 PM

    Hi John,
    Thanks a lot for your reply. I saw the log file however i am not able to understand where the issue lies. Can you kindly hlep me out. Below is the FRPrintLogging.log
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T02:42:54.565-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vQRewCSs85njp2iZ1GG5mQ000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:12:21.914-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Oracle Workspace
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] Copyright&#169 2000, 2011 Oracle and / or its affiliates.
    [2012-08-31T03:12:22.198-04:00] [EPMFR] [NOTIFICATION] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.printserver.StandalonePrintServerLauncher] [SRC_METHOD: <init>] All Rights Reserved.
    [2012-08-31T03:13:46.993-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: getObjectFromURL] [[
    java.net.ConnectException: Connection timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
         at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
         at java.net.Socket.connect(Socket.java:529)
         at java.net.Socket.connect(Socket.java:478)
         at java.net.Socket.<init>(Socket.java:375)
         at java.net.Socket.<init>(Socket.java:249)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:80)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:122)
         at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:707)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
         at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323)
         at com.hyperion.reporting.registry.FRSystem.getObjectFromURL(Unknown Source)
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.011-04:00] [EPMFR] [ERROR] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.registry.FRSystem] [SRC_METHOD: lookupHsServer] [[
    com.hyperion.reporting.util.HyperionReportException: Could not connect to the server.
    Please make sure that the server is running as specified in the logon dialog (including port number if not default).
         at com.hyperion.reporting.registry.FRSystem.lookupHsServer(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    [2012-08-31T03:13:47.025-04:00] [EPMFR] [WARNING] [] [oracle.EPMFR.core] [tid: main] [ecid: 0000J_vXVlrCSs85njp2iZ1GG6FM000000,0] [SRC_CLASS: com.hyperion.reporting.config.FRConfig] [SRC_METHOD: getFRConfig] [[
    java.lang.NullPointerException
         at com.hyperion.reporting.config.FRConfig.getFRConfig(Unknown Source)
         at com.hyperion.reporting.config.FRConfig.getString(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.initSocketFactory(Unknown Source)
         at com.hyperion.reporting.util.HRPortAllocator.<clinit>(Unknown Source)
         at com.hyperion.reporting.util.FRRemoteObject.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.PrintServer.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.<init>(Unknown Source)
         at com.hyperion.reporting.printserver.StandalonePrintServerLauncher.main(Unknown Source)
    ]]

  • Overflow error in Hyperion Financial Reports

    Hi All,
    I'm using Hyperion Financial Reporting Studio version 9.3.1. Recently we are facing few issues with FR. When we try to copy a column, we are getting the "overflow" error. Can someone help on how to resolve this issue ?
    FYI. The no. of Rows in the Report are approx. 3000 and columns around 20. Pls. help
    Thanks,
    PVR

    Hi John,
    The no. of rows in the Report are (Design mode) approx. 1700. When we run the report, the total no. of rows showing is around 3000. The no. of columns, rows cause the overflow issue ?
    How we can clear the buffer ? We Restarted the server also, but no luck. The same error appearing
    Thanks,
    PVR

  • Cell Text Annotations of Hyperion Planning on Hyperion Financial Reporting

    Hello,
    There is a business requirement to show Cell text entered as annotation on each cells in data form to be reported using Hyperion Financial Reporting.
    Also there is a case of some of the data types being text. Some of the forms also have supporting details.
    Now I want to check how easy or difficult is it to report from Hyperion Planning V11.1.2 for the above mentioned.
    Are there any noticeable performance issues?
    Is it possible to report the cell text annotations , Supporting details & Datatype 'Text' from data form on Financial Report?
    Thanks in advance,
    XX

    I haven't used the text data type, however I have done quite a bit of reporting on supporting detail. All you have to do is use a Hyperion Planning data source instead of an Essbase data source. (and specify on the report to show supporting detail). In general, Hyperion Planning data sources are slightly slower than Essbase data sources. How much slower depends on a lot of factors, but supporting detail can certainly slow things down.
    One key limitation with reports that display this type of data is that it doesn't "roll up" the hierarchies. Your report has to be at the same level (in all dimensions) where the supporting detail was entered. So you can't pick an upper level Entity and show all of the supporting detail for it's descendants unless your report also includes the descendants. I understand why this limitation exists, but I routinely have clients that would like this functionality. (For Example - Show me all of the supporting details for the entire plan.)

  • User login records on Hyperion Financial Reporting

    Hi all,
    We understand we can turn on audit to capture the user login (authentication) in Hyperion Planning. Can we have the same option/feature for Financial Reporting to turn on audit so that we know that which reports in one day was generated by end users?

    jts wrote:
    I think so..take a look at what I found below on page 301 of the financial reporting user guide under the administrative tasks section, report server tasks subsection:
    Log File Output Management
    Financial Reporting uses the log4j logging mechanism to manage log file output. Logging
    settings can be configured and are set in the fr_repserver.properties file for each Financial
    Reporting server component.
    This code is an example of Financial Reporting Server default settings in the
    fr_repserver.properties file. Settings you might modify are shown in bold text.
    # log4j.rootLogger=ERROR,dest1
    # log4j.appender.dest1=org.apache.log4j.RollingFileAppender
    # log4j.appender.dest1.ImmediateFlush=true
    # log4j.appender.dest1.File=C:/hyperion/BIPlus/logs/FRReportSrv.log
    # log4j.appender.dest1.Append=true
    # log4j.appender.dest1.MaxFileSize=512KB
    # log4j.appender.dest1.MaxBackupIndex=5
    # log4j.appender.dest1.layout=org.apache.log4j.PatternLayout
    # log4j.appender.dest1.layout.ConversionPattern=%d{MM-dd
    HH:mm:ss} %-6p%c{1}\t%m%n
    Note:
    See fr_global.properties for details on logging levels (FATAL, ERROR, WARN, INFO,
    DEBUG) and formatting options. The Financial Reporting logging settings can be changed
    without restarting the servers. The .properties files are monitored for changes to the logging
    setting every minute. The frequency is set in fr_global.properties. This can be very handy
    if you want to set the logging levelThanks a lot! So the login/logout information will be captured in which log file?

  • Hyperion Financial Reporting : Error 1001

    While connecting from Hyperion Reports 7.0 to an Essbase cube (Ver 7.1.6.6) stored on another server, I am getting an error (Error 1001: Unable to connect to datasource) while running any report. However I am able to create reports using the metadata of the cubes.
    The problem occurs only when I try executing any report. :-(
    Is there any API issue out here?
    Can anyone help me debug this situation?

    Very old post, but anyway...
    In my case restart of Hyperion Financial Reporting  -  report server service helped and reports were available again.
    L

  • Hyperion Financial Reporting PDF Preview

    Hello,
    We are currently having an issue related to hyperion workspace, we are unable to see hyperion financial reports in PDF preview, only HTML view we can see, is there any possible solution for this issue. We are using system 9.3 ; windows environment, If you need more information please let me know, Any help would be great.
    Thank you,
    T.Khan

    Error I found on log file.
    12-17 00:11:30 ERROR PrintServer     Error No: 3006com.hyperion.reporting.util.HyperionReportException: Could not find information about PDF generation for instance number:
         at com.hyperion.reporting.printserver.PrintServer.getOutputFileName(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor26.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
         at sun.rmi.transport.Transport$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Hyperion Financial Reporting - Need Help

    Hello Experts,
    Currently I am working on to create new Financial reports in Financial Reporting Studio. I am very new to Reporting and trying to create new reports, was able to modify existing reports, but facing problems while creating new reports.
    If anyone of you have any documents or reference guides, Could you please pass it to me so that i can go through it and familiar with Financial reporting. Your help in this matter is greatly appreciated.
    Thank you in advance..... Please pass me to [email protected]
    Regards,
    Anil

    The FR User guide is the first one I'd recommend:
    - called "Studio User’s Guide" under the "Oracle Hyperion Financial Reporting, Fusion Edition" heading.
    http://download.oracle.com/docs/cd/E12825_01/nav/portal_4.htm
    This gives a basic overview to most tasks and some advanced ones too.
    This assumes you're on the latest release, otherwise other docs can be found through here:
    http://www.oracle.com/technetwork/middleware/performance-management/documentation/index.html
    Cheers, Iain

Maybe you are looking for

  • Reg.Calculate Raw material cost(Fabric)+Process cost(semifinished -cutting)

    Dear Friends Please consider our below scenario In AFS, PO is created and stock is maintained in unrestricted (Raw material) and then Production order is created for Cut pcs and Raw material is issued to production order through 261 mvt type next Cut

  • Compare two XML files: Analysis and Design

    Hi, Java/XML/JDOM experts, I realised that an open source of Java utility to compare two XML is still missing. So I would like to write one for my JDOM excises. I plan to do it in three steps: 1.Define the problem domain. 2.Design the classes to be d

  • Doubt in Hierarchial column

    HI I created a ragged hierarchy in obiee 10 g it is for goegraphy table which consists of 3 level country->state->city now i created a row with only country and state i.e city=null ex: india-> maharashtra so city is null now now in answers if i click

  • Unity Virtualization Question

    Hello, I'm in the planning phase of upgrading Unity to 8.X and moving into a virtual environment.  The virtual environment is Cisco UCS M2 B series blades, the blades that are dedicated to Collaboration apllications have 64 gigs of memory and 2 Intel

  • Installing java proxy runtime

    hi, can any one send me doc related to installing JPR in xi system. or steps to install jpr. thanks and regards vijender