Change formatting of table of contents in Hyperion Financial Reporting

Hi
We're using Hyperion Financial Reporting to generate carefully formatted books of reports. Users complain about the default table of contents in these books, specifically:
--> formatting: the basic text-only, portrait-only, formatting does not fit with the "look and feel" of reports within the books.
--> placement: the fact that it doesn't seem possible to place anywhere within a book, apart from as the first page (they like a title page to sit at the front of a book of reports).
--> content: having a limited options for defining the text identifying each item within the table of contents. For example, the same combination of dimension members appear for each item in the table of contents, so the first few items look something like:
Report1_Label
Dimension2_Label, Dimension1_Label, Dimension3_Label, Dimension4_Label ....................1
Report2_Label
Dimension3_Label, Dimension1_Label, Dimension4_Label, Dimension2_Label ....................2
I remember reading somewhere that it's possible to define custom table of contents. Has anyone had any experience of hacking this? Where can I find relevant documentation on defining custom table of contents?
Grateful if anyone has any advice.
Thanks
Nathan
Edited by: naaaate on 01-Apr-2011 09:22
Edited by: naaaate on 01-Apr-2011 09:41
Edited by: naaaate on 01-Apr-2011 09:42
Edited by: naaaate on 01-Apr-2011 09:42

Hi Nathan
I've never done this before but there is a section in the Financial Reporting Workspace Administrators Guide (chapter 5). However this involves accessing the css style sheets and in my experience this can have unwanted and unexpected effects in other areas. It does appear to be fairly well documented though in this case so perhaps it is more reliable in this instance.
It does specifically mention HTML format and not PDF format so if you are publishing to PDF it is worth checking the impact on that too. Take a look at the attached for version 11.1.2 but I'm fairly sure this was available in earlier versions too.
http://download.oracle.com/docs/cd/E17236_01/epm.1112/fr_webadmin.pdf
Hope this helps
Stuart

Similar Messages

  • What HFM Table contains the Hyperion Financial Reporting Modify Date

    Does anyone know the name of the HFM table that contains the Hyperion Financial Reporting Modify Date field of a Report?
    Thanks!
    Edited by: user2609991 on Sep 1, 2009 8:49 AM

    1. no "HFM Table" stores any information about Financial Reporting reports. Financial Reporting is part of the "BI+" / "Reporting and Analysis" product, so if there was any information to be found in a relational database, it would be in the BI+ schema not the HFM one.
    2. Oracle / Hyperion do not support customers trying to build their own relational database integrations directly into product repositories. To interact with the BI+ product (e.g. to extract modified by dates of FR reports) you should read up on the API and write custom code using that API. More information can be found in the Developers Guide here http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/hs_developer.pdf and in the "javadoc" documentation that comes with the BI+ product.

  • How to get XML format output from Hyperion Financial Reporting

    Dears,
    We are using Hyperion Financial Reporting to replace FSG in fusion. I found that Hyperion FR report can be exported to html/excel/pdf format. However, I would like the report to export to xml format.It means I only need the xml data source.
    Anyone who knows how to get the xml format output from Hyperion FR, is there any avaiable API?

    I think if you export the report, you will be able to open the .des file in Notepad/Wordpad and see xml content.

  • Not able to change exportfolders value in MBeans for FRConfig.cmd for Hyperion Financial reporting 11.1.2 version.

    I am not able to change exportfolders value in MBeans for FRConfig.cmd for Hyperion 11.1.2 Financial reporting .
    When I enter the value , it just vanishes. Am I missing something here.?
    I need to set export path for PDF generation in Hyperion financial report for batches.

    Edit FRConfig.cmd and update
    set EPM_ORACLE_INSTANCE=%MIDDLEWARE_HOME%\user_projects\epmsystem1
    update epmsystem1 to the correct epm instance name
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • 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

  • Difference between Hyperion Financial Reporting version 7.0 and 9.3.1 ?

    Hi All,
    Can you please difine Difference between Hyperion Financial Reporting version 7.0 and 9.3.1 ?

    I migrated from 7.5 to 9.3.1 a couple years back so hopefully this is somewhat helpful.
    From a developer perspective, the report designer itself looks about the same. The most annoying changes for me were that they started migrating functionality AWAY from the client program and to the web. For instance, managing security is a pain as it is done through Workspace and it is a bit clunkly. I also ran into some issues where my old report's security information is not visible in Workspace. It is still 'working', but when you view report properties, it shows nothing for who has assigned security. Also, things like deleting/moving reports and creating folders are done through workspace and not the client program. "Copying" can be done through the client program by using "Save As" functionality.
    There is a migration tool to move your old stuff to 9.3.1. It seemed to work OK; however, the User Interface was a bit screwy. For instance, it said I was 138% complete when it finished. It copied more reports than it showed as existing.... :)
    On the back end, things changed quite a bit. In the older Financial Reports, the report objects existing in a single database table and if you wanted to, you could extract everything from that table. In 9.3.1, part of the information is in Workspace database (i.e. Report names/ID's, security access, hierarchy) and the actual report file itself is stored in a psedo-filesystem under the RM webapp. The names are not user friendly at all and you'll need to XREF from the database to make sense of it. When you finally find the actual report "file", they are compressed/encrypted.
    From an end user perspective, things pretty much work the same way as always.

  • 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

  • Create unit cost reports in Hyperion Financial Reporting

    Hi,
    I have some doubts regarding the creation of "per unit" reports in Hyperion Financial Reporting. In the business model we have:
    - different cost and revenue groups (identified by accounts dimension)
    - different business channels (identified by business channel dimension)
    - units different for each business channel (identified by accounts dimension and by currency dimension)
    What would be the most efficient way to easily construct per unit reporting? Reporting should be able to show data as:
    (*in principle, the "$ per unit" column is the most important one. The other columns could be hidden without problem)
    (**the main challenge is to be able to easily reflect per unit values calculated with different units, depending on the business channel and potentially other dimensions)
    More precisely, the questions are:
    1. What should be the dimensions structure? Units in separate dimension? Or inside accounts dimension and differentiate with currency dimension?
    2. The calculation of per unit amounts should be done within the reporting or should it be precalculated value?
    2a. If within reporting - how to technically include this calculations? Show $ and units and then use the formula?
    2b. If precalculated - how to solve the problem that the TOTAL per unit values are not the sum of per unit values for each Business channel separately (as each Business channel has its per unit calculated only with the units of this Business channel)? (please take into account that Business channel may not be the only dimension that changes the units to be used in per unit calculation - we can also have different units for different cost centers etc.)
    3. How to show $ and units separately, as in the example, if, when limiting a row by Revenue, for example, is making the units value for this row 0? How to overcome this?
    Many thanks in advance for your help and best regards,
    Pawel

    I came up with one concept of how to deal with this problem - let me know what you think. The idea is pictured in the image below:
    The answers to the 3 questions using this solution would be:
    1. What should be the dimensions structure? Units in separate dimension? Or inside accounts dimension and differentiate with currency dimension?
    Units would be a separate account in the "accounts" dimension. But also, units could be differentiated by the "currency" dimension.
    2. The calculation of per unit amounts should be done within the reporting or should it be precalculated value?
    2a. If within reporting - how to technically include this calculations? Show $ and units and then use the formula?
    Withing the reporting, as I have no solution to precalculate per unit values using so many different groups of units - if we want to have different per unit per each business channel or cost center etc. I understand we would need that many different precalculated "per unit" values, which would be a lot...
    Regarding 2a, a simple formula would do (box C). However, for rows with auto totals, the formula would need to have priority over the autototals (box D) - how is that done? Is it possible and easy?
    3. How to show $ and units separately, as in the example, if, when limiting a row by Revenue, for example, is making the units value for this row 0? How to overcome this?
    As we can differenciate units using both accounts and currency dimension, with the accounts placed in rows, the elements selected would always include the units (box A). Then, in the columns, using "currency" you would choose whether to show the cost and revenue accounts ($) or units (box B). Like this you would not get 0 in units, neither you would distort $ amounts.
    What is your opinion? Best regards!

  • 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

  • Hyperion Financia reporting ..Conditional Suppression

    We have user POV as Scenario in financial reporting. User can select Current budget or Next budget as scenarios.<BR><BR>If the selected budget is current, then report should display years in column as FY07, FY08, FY09, FY10, and FY11.<BR><BR>If the selected budget is next, then report should display years in column as FY08, FY09, FY10,FY11,FY12.<BR><BR><BR>How do we achieve this in Hyperion Financial reporting 9.2?<BR><BR><BR>Thanks,<BR>Manohar Anchan<BR>

    Thanks a lot for your suggestion.It worked except for some formatting issue .I wanted every month to be in seperate column.As far as Current variable being set to Dec is concerned , I need to figure that out.Atlesat I got some lead to start with.........<BR><BR>Thanks,<BR>Mnaohar Anchan

  • Hyperion Financial Reporting - Export to Excel converting Data to Text

    We are using Hyperion Financial Reporting 11.1.2.2 with Hyperion Workspace 11.1.2.2 reporting on an ASO Essbase cube version 11.1.2.2.
    When we export a report to Excel any data values that are displayed in the report with a negative ('-', '()', etc.) sign come into Excel as a text value. The cell has the green flag and the single quote in it denoting this a text field. The format is listed as 'Custom'. Updating the format does not remove the single quote.
    The same result is happening if we display the natural sign in the report or if we flip the sign in the report. This DOES NOT happen when choosing the export query ready, only when using the File -> Export -> Excel.
    Does anyone know if there is a hot fix or service pack or configuration to resolve this? How about a work around?
    I thought I remember this happening in 9.2 and being resolved in 9.3. We have recently upgraded from 9.3.1 to 11.1.2.2 and the issue is happening again.
    The users would like to export the formatted report to Excel and be able to interact with the data cells as numbers.

    The issue is reported as a bug. Installing patch 14625370 (11.1.2.2.302) and/or 16088101 (11.1.2.2.303) should fix the problem.

  • Hyperion financial  reports issue

    I have problem but with Months and years in Hyperion Financial Reports.
    if i run the reports for JAN 2007 it has to show for previous 12 months
    in my case the year is not changing to 2006 for DEC i'm using Relative member -1 function
    can please let me know how to slove this issue .Ts is very urgent.

    try to do it in 2 columns ( let say you have selected 'Jul' and '2007'
    First column
    2006 - x to Dec
    2007 - Jan to y
    where x = prev month
    y= current month
    there may be problem while selecting Dec 2007 cot in that case you will have to show only 2007 months. i think that you can do based on some conditional suppression
    hope this helps.
    Regards,
    Rahul

  • How to include look and feel features in the Hyperion Financial Reports

    Hi,
    Can anybody suggest me how I can enhance the look and feel features of Hyperion Financial Reports, any references
    2) Will traffic lighting functionality is present in Hyperion Reports (FR), if not present how can achieve this functionality
    in FR ?
    3) We have user look and feel features like pinboard in the web analyis reports, but are there any certailn features
    in Hyperion Reports ??

    You can use Conditional Formatting to produce stoplights in Report Studio.
    If you know of specific things that you want to see, try reading the manual. I cannot give you details of every type of formatting you may want to see from such a vague post.

  • Thread: In Hyperion Financial Reporting can we show comments entered in dat

    Hi,
    I want to show comments in Hyperion financial reports. The data form are against BSO cube and when users enter comments in it they want to see in reports which are against ASO.
    Also, if you can help me if it is possible against same cube?

    Hi,
    I think we can't show it in ASO, but if we have a BSO cube then we have to connect our reports with the Planning data source instead of an Essbase data source and specify on the report to show supporting detail.
    You have to do some settings in the FR_Global.properties which are:
    AllowCellTextAsAnnotation=true, the Cell Text check box on the Report Property sheet is shown (for Financial Management and Planning, not Essbase yet). The default setting will be unchecked (turned off).
    AllowPlanningUnitAnnotationsAsAnnotations=true, the Planning Unit Annotations check box on the Report Property sheet is shown for Planning. The default setting will be unchecked (turned off).
    AllowDocAttachmentsAsAnnotations=true, the Document Attachments check box on the Report Property Sheet is shown for Financial Management. The default setting will be unchecked (turned off).
    Hope this helps.
    Regards
    SST.....

Maybe you are looking for

  • How to connect two monitors using macbook pro?

    Hi, I have a Macbook Pro through which I want to extend the displays to two individual monitors. The two monitors should show two different windows which is opened through my macbook. I have observed that macbook has only one mini display port throug

  • Read from a property file which is in a zip

    I have the problem, that I can�t read a property file in a zip. A class which I ca get in the same zip needs this property to init. I call this in a batchfile. The message is like: c:/xx/core.zip!/com/xx/Prop.properties Path of the zip Path of the Pr

  • Porting from Oracle 10g AS to Oracle 11g Weblogic server

    Hi, I am trying to port J2EE applicatin from Oracle 10g AS to Oracle 11g Weblogic Server. I have jsp files which contains sql code embedded to fetch data from the DB. The components used in this application are Java, JSP, Servlets and Stateless sessi

  • Screen resolution on Remote desktop

    Can someone please confirm if the native resolution of 1366 by 768 affects the way a remote desktop to a Windows PC is displayed ? Thanks, KR

  • Reverse/cancel outgoing excise invoice

    Hello, We are using version 2005B.  We created an outgoing excise invoice by copying from a goods return.  We then noticed that the ship to address was posted incorrectly and need to reverse/cancel the outgoing excise invoice.  After looking through