Hyperion reports to BI queries/workbooks

HI,
Can you anyone please give me some idea how to convert old Hyperion reports to BI queries/workbooks.
What are the steps involved in conversion?
Regards,
Ashok

Hi Ashok,
BW data could be reported from Hyperion by connecting the system with the right adapter,
the other way around isn't possible (querying hyperion data via BW) except by setting the hyperion DB as a DB/UD Connect source system and having remote IProviders on-top of it.
If you need then you can  synchronize BW metadata in Hyperion then,
create a report in Hyperion which will retrieve data from a BW query released for OLE/DB for OLAP (query properties/extended).
now you can access any BW query / cube / multiprovider in BW system
Hope it helps.....
Regards,
Zakir

Similar Messages

  • Hyperion Reports 7.25 Report Runs 10 - 20 Times Slower in FR 11.1.1.3

    I exported a Report from Hyperion Reports V7.2.5 and Imported it into Financial Reporting V11.1.1.3 via Workspace. When I run the report in Financial Reporting Studio 11.1.1.3 or Workspace 11.1.1.3 it is 10 to 20 times slower.
    Note, no changes have been made to the Report structure or the structure of the Essbase database that is being used as a datasource.
    However, the Essbase Version is now 11.1.1.3. It was 7. Also, the server hosting the Financial Reporting 11.1.1.3 application is a VMWare Server - the server hosting Hyperion Reports V7.2.5 was a physical server not VMWare.
    The only thing I did notice that was different in the report is when you highlight the entire grid and right-click to view Data Optimization Settings - there is an option in 11.1.1.3 that says "Essbase Queries use MDX" "Combined Queries with Member". This doesn't exist in Hyperion Reports V7.2.5.
    Has anyone experience a simlar issue with this extreme performance degradation? I am using more robust servers with faster cpu's and more memory.
    I did play around with the tcp/ip settings as recommended in a version 9.x support document, but this did nothing.

    Thanks for replying Natesh.
    Unfortunately I don't have a physical server to play around with. This was one of my concerns with using VMWare.
    I didn't make any product configurations for Hyperion Reports V7.2.5. The only configurations I made were for tcp/ip settings.
    I did try to run a V 7.2.5 report against Essbase 11 and it ran just as fast as it did against Essbase 7. This definitely leads me to believe the slower performance is related to Financial Reporting V11.1.1.3 or something on the server - note the performance issue is only on reports that retrieve large data sets. For all smaller reports there is no issue.

  • Hyperion Reports on top of IOP?

    Can Hyperion Reports provide reports from an IOP repository?
    Thank you.

    IOP supports MDX queries and there are "snapshot" commands that take MDX query as an argument and stores the results in a relational table. The MDX query can be used to serve any slice of cubular data and for any scenario. Once the data is in relational form, you can then use any reporting tool.
    IOP also has an integration with OBIEE and that can be used for reporting against IOP data.

  • Automating a Hyperion Report

    Hi,
    I'm trying to automate pulling a report out of essbase. The data export calcs create a level0 txt file which is hard to validate line by line against an an oracle report. I'm pretty much wanting to pull everything at the top level except the accounts dimension whiich needs to be at level 0 so I can compare the balance in Oracle to Hyperion. This needs to be an automated solution and I'll be using VBScript to run sql queries out of Oracle. Is it possible to pull a report at different levels within essbase in maxl or any other form? I'm really not familiar with Hyperion Reports. Is it possible to run a Hyperion Report via a script and have it produce a txt file?
    I really appreciate any information on this and hope someone can help.

    Hi,
    Have you considered using the Essbase Report Script? It's got some capability to format the exported file. However, running report script can be slower than calc scripts in which some tuning may be required.

  • How to remove business area from the Hyperion report

    Hi All,
    Kindly tell me the steps required to remove the business area from the Hyperion report.
    Regards,
    Ajay

    s

  • Bursting a report with multiple queries

    Hi,
    I need to set-up bursting in BIP for a report with multiple queries. The output format is pdf and delivery is through e-mail. Since the queries need to be linked, I'm trying to do this using data template. I've set-up split and burst based on a field (store_id) from the first query which is used as a bind variable in the subsequent queries. So I'd ideally want the report to be split based on store_id. The report works fine if I use a parameter for store_id and view the output by store_id. When I try to schedule the report for bursting, it generates and e-mails the reports but only the last report appears to have correct data output while the others have only the output from the first query (and all other queries appear to return nothing in the report).
    Any suggestions on what could be the issue here? Thanks!
    Here is the data template for the report:
    <dataTemplate name="Report" description="Report" dataSourceRef="ReportDB">
    <dataQuery>
    <sqlStatement name="STORE_VENDOR">
    <![CDATA[SELECT STORE.STORE_ID Q1_STORE_ID, VENDOR.VENDOR_ID Q1_VENDOR_ID, VENDOR.VENDOR_DESC Q1_VENDOR_DESC, PERSON.NAME Q1_NAME
                   FROM STORE, SERVICE_TICKET, VENDOR, ROLE, ROLE_TYPE, PERSON, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = VENDOR.SOURCE_ID AND SERVICE_TICKET.VENDOR_ID = VENDOR.VENDOR_ID)
                   AND (STORE.SOURCE_ID = ROLE.SOURCE_ID AND STORE.STORE_ID = ROLE.STORE_ID)
                   AND (ROLE.SOURCE_ID = ROLE_TYPE.SOURCE_ID AND ROLE.ROLE_TYPE_ID = ROLE_TYPE.TYPE_ID AND ROLE_TYPE.TYPE_DESC = 'PIC')
                   AND (ROLE.SOURCE_ID = PERSON.SOURCE_ID AND ROLE.PERSON_ID = PERSON.PERSON_ID)
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   GROUP BY STORE.STORE_ID, VENDOR.VENDOR_ID, VENDOR.VENDOR_DESC, PERSON.NAME
                   ORDER BY STORE.STORE_ID]]>
    </sqlStatement>
    <sqlStatement name="WO">
    <![CDATA[SELECT STORE.STORE_ID Q3_STORE_ID, 'Nightly Cleaning' Q3_NIGHTLY_CLEANING, 'Nightly Cleaning' Q3_DESCRIPTION, SERVICE_TICKET.TICKET_ID Q3_TICKET_ID, TO_CHAR(SERVICE_TICKET.END_DATE, 'MM/DD/YYYY') Q3_END_DATE, 'Excellent' Q3_QUALITY_RATING_1, 'Satisfactory' Q3_QUALITY_RATING_2, 'Unsatisfactory' Q3_QUALITY_RATING_3
                   FROM SERVICE_TICKET, STORE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4']]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_1">
    <![CDATA[SELECT STORE.STORE_ID Q4_STORE_ID, ZONE.ZONE_DESC Q4_ZONE_DESC, SERVICE_TICKET_LINE.SERVICE_COST Q4_SERVICE_COST, SERVICE_TICKET_LINE.TICKET_ID Q4_TICKET_ID, TO_CHAR(SERVICE_TICKET_LINE.WO_END_DATE, 'MM/DD/YYYY') Q4_WO_END_DATE, 'Excellent' Q4_QUALITY_RATING_1, 'Satisfactory' Q4_QUALITY_RATING_2, 'Unsatisfactory' Q4_QUALITY_RATING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'ABC'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TICKET_LINE.SOURCE_ID, SERVICE_TICKET_LINE.TICKET_ID, SERVICE_TICKET_LINE.LINE_ID]]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_2">
    <![CDATA[SELECT STORE.STORE_ID Q5_STORE_ID, ZONE.ZONE_DESC Q5_ZONE_DESC, SERVICE_TICKET_LINE.SERVICE_COST Q5_SERVICE_COST, SERVICE_TICKET_LINE.TICKET_ID Q5_TICKET_ID, TO_CHAR(SERVICE_TICKET_LINE.WO_END_DATE, 'MM/DD/YYYY') Q5_WO_END_DATE, 'Excellent' Q5_QUALITY_RATING_1, 'Satisfactory' Q5_QUALITY_RATING_2, 'Unsatisfactory' Q5_QUALITY_RATING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'XYZ'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TICKET_LINE.SOURCE_ID, SERVICE_TICKET_LINE.TICKET_ID, SERVICE_TICKET_LINE.LINE_ID]]>
    </sqlStatement>
    <sqlStatement name="SERVC_TYPE_3">
    <![CDATA[SELECT STORE.STORE_ID Q6_STORE_ID, ZONE.ZONE_DESC Q6_ZONE_DESC, 'Excellent' Q6_QUALITY_RATING_1, 'Satisfactory' Q6_QUALITY_RATING_2, 'Unsatisfactory' Q6_QUALITY_RATING_3, 'One' Q6_QTY_MISSING_1, 'Two' Q6_QTY_MISSING_2, '3 or More' Q6_QTY_MISSING_3
                   FROM SERVICE_TICKET_LINE, SERVICE_TICKET, STORE, SERVICE_TYPE, ZONE, PERIOD PERIOD_FROM, PERIOD PERIOD_TO
                   WHERE (SERVICE_TICKET.SOURCE_ID = SERVICE_TICKET_LINE.SOURCE_ID AND SERVICE_TICKET.TICKET_ID = SERVICE_TICKET_LINE.TICKET_ID)
                   AND (SERVICE_TICKET.SOURCE_ID = STORE.SOURCE_ID AND SERVICE_TICKET.STORE_ID = STORE.STORE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = SERVICE_TYPE.SOURCE_ID AND SERVICE_TICKET_LINE.SERVICE_TYPE_ID = SERVICE_TYPE.TYPE_ID)
                   AND (SERVICE_TICKET_LINE.SOURCE_ID = ZONE.SOURCE_ID AND SERVICE_TICKET_LINE.ZONE_ID = ZONE.ZONE_ID)
                   AND SERVICE_TYPE.TYPE_DESC = 'PQR'
                   AND SERVICE_TICKET.START_DATE BETWEEN PERIOD_FROM.START_DATE AND PERIOD_TO.END_DATE
                   AND STORE.STORE_ID = :Q1_STORE_ID
                   AND PERIOD_FROM.PERIOD_DESC = 'Cal Week 1'
                   AND PERIOD_TO.PERIOD_DESC = 'Cal Week 4'
                   ORDER BY SERVICE_TYPE.TYPE_ID]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
         <group name="G_STORE_VENDOR" source="STORE_VENDOR">
              <element name="Q1_STORE_ID" value="Q1_STORE_ID"/>
              <element name="Q1_VENDOR_ID" value="Q1_VENDOR_ID"/>
              <element name="Q1_VENDOR_DESC" value="Q1_VENDOR_DESC"/>
              <element name="Q1_NAME" value="Q1_NAME"/>
         </group>     
         <group name="G_WO" source="WO">
              <element name="Q3_NIGHTLY_CLEANING" value="Q3_NIGHTLY_CLEANING"/>
              <element name="Q3_DESCRIPTION" value="Q3_DESCRIPTION"/>
              <element name="Q3_TICKET_ID" value="Q3_TICKET_ID"/>
              <element name="Q3_END_DATE" value="Q3_END_DATE"/>
              <element name="Q3_QUALITY_RATING_1" value="Q3_QUALITY_RATING_1"/>
              <element name="Q3_QUALITY_RATING_2" value="Q3_QUALITY_RATING_2"/>
              <element name="Q3_QUALITY_RATING_3" value="Q3_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_1" source="SERVC_TYPE_1">
              <element name="Q4_ZONE_DESC" value="Q4_ZONE_DESC"/>
              <element name="Q4_SERVICE_COST" value="Q4_SERVICE_COST"/>
              <element name="Q4_TICKET_ID" value="Q4_TICKET_ID"/>
              <element name="Q4_WO_END_DATE" value="Q4_WO_END_DATE"/>
              <element name="Q4_QUALITY_RATING_1" value="Q4_QUALITY_RATING_1"/>
              <element name="Q4_QUALITY_RATING_2" value="Q4_QUALITY_RATING_2"/>
              <element name="Q4_QUALITY_RATING_3" value="Q4_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_2" source="SERVC_TYPE_2">
              <element name="Q5_ZONE_DESC" value="Q5_ZONE_DESC"/>
              <element name="Q5_SERVICE_COST" value="Q5_SERVICE_COST"/>
              <element name="Q5_TICKET_ID" value="Q5_TICKET_ID"/>
              <element name="Q5_WO_END_DATE" value="Q5_WO_END_DATE"/>
              <element name="Q5_QUALITY_RATING_1" value="Q5_QUALITY_RATING_1"/>
              <element name="Q5_QUALITY_RATING_2" value="Q5_QUALITY_RATING_2"/>
              <element name="Q5_QUALITY_RATING_3" value="Q5_QUALITY_RATING_3"/>
         </group>     
         <group name="G_SERVC_TYPE_3" source="SERVC_TYPE_3">
              <element name="Q6_ZONE_DESC" value="Q6_ZONE_DESC"/>
              <element name="Q6_QUALITY_RATING_1" value="Q6_QUALITY_RATING_1"/>
              <element name="Q6_QUALITY_RATING_2" value="Q6_QUALITY_RATING_2"/>
              <element name="Q6_QUALITY_RATING_3" value="Q6_QUALITY_RATING_3"/>
              <element name="Q6_QTY_MISSING_1" value="Q6_QTY_MISSING_1"/>
              <element name="Q6_QTY_MISSING_2" value="Q6_QTY_MISSING_2"/>
              <element name="Q6_QTY_MISSING_3" value="Q6_QTY_MISSING_3"/>
         </group>
    </dataStructure>
    </dataTemplate>

    Hello user6428199,
    When you use ":Q1_STORE_ID" in your queries, BI Publisher looks for a report parameter named Q1_STORE_ID. Change all your report queries to get data for all the store_id's available. As you are bursting the report using the store_id as the bursting key, BI Publisher will split the report based on the stored_id and delivers content based on it. No matter how many queries you may have, BI Publisher will loop through all the store_id's available and all the queries will return data for that particular id in a report.
    Thanks,
    Machaan

  • Error while running batch in Hyperion Reports

    Has anybody run accross this error while trying to run a batch in Hyperion Reports:
    Unexpected Error creating query to datasource in createCubeViews:
    The book the batch is running is big...

    Have you ever successfully scheduled a batch? Make sure the scheduled batch name does not contain an ampersand "&" symbol or an apostrophe/single tick symbol. Those cause batches to error out for us.
    -Karen

  • Report with Multiple queries too slow in BI Publisher 11g

    Hi, I have a report in 11g where i need to create multiple queries to show them in report. I tried to combine everything in one query, but i found that the query is too huge and hard to understand and maintain. I created 3 data sets and linked them together. In SQL dev, the main query is returning about 315 records and first detail query returns less than 100 records and second detail query is returning one record which is BLOB. Each query returns data within a couple of seconds from SQL Developer. The entire report from BI Publisher should be just 21 page PDF output. Did anyone face performance issues while running reports with multiple queries in 11g? I ran reports that have single query which returned 10K pages PDF and never had an issue while everthing is in one query. This is the first time Iam attempting to create multiple queries. Can someone help me understand what i might be doing wrong or missing here. Thank you.

    Isn't there a way for you to do this via a Package/Procedure versus having multiple queries?
    Per the BI Publisher guide,
    Following are recommended guidelines for building data models:
    Reduce the number of data sets or queries in your data model as much as possible. In general, the fewer data sets and queries you have, the faster your data model will run. While multiquery data models are often easier to understand, single-query data models tend to execute more quickly. It is important to understand that in parent-child queries, for every parent, the child query is executed.
    You should only use multiquery data models in the following scenarios:
    To perform functions that the query type, such as a SQL query, does not support directly.
    To support complex views (for example, distributed queries or GROUP BY queries).
    To simulate a view when you do not have or want to use a view.
    Thanks,
    Bipuser

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

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

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

  • Hyperion Reporting Studio 9.3.1

    Any idea on how to import batch reports from previous Hyperion Reports. Currentyl, I have to import one report at a time and it is time consuming. Also, I would to know how to set up Web Forms and Data Grid in Workspace 9.3.1

    I was wondering if you might know what my problem is! (Well hyperion related anyway).
    I built an entire development environment for our 9.3.1 systems, including Financial Reporting. I attempted to export / import an entire zip folder full of reports; however, nothing happens on the import! When you supply the file, the status meter starts working and then it quickly ends without any success or failure message. Additionally, when I look in the folders, none of the reports have been imported. At first I thought the issue might have been related to the size of my zip file as I exported a large number of folders/reports. Unfortunately, I still receive the same issue when I try importing a much smaller file of ~10 reports.
    Any thoughts as to what the issue might be?
    Thanks!

  • Hyperion Reports 2.6 updating substituion variables in a prompt

    I'm running into a problem where I update a substitution variable on my Essbase server and then go to pull a report in Hyperion Reports v2.6.The report is set up to prompt the user to choose a member from the Time dimension, I have the default set to use the substitution variable 'cur_week'.The problem is when I update the variable on Essbase and pull the report, the report defaults to the old variable value. The only way I can get it to display the new value is to restart the Report Server.Has anyone experienced this? Do you know of a way to work around this?Thanks in advance

    Decided to go with a batch script to restart the service on Report Server. Combined with a MaxL script to update the subvariables. Run both back to back and it seems to work.Not the ideal solution, but as long as I don't kick off while a report is running, it seems like it will work.

  • Table of Contents In Hyperion Reports

    <BR>Hi,<BR><BR>I setup a Hyperion Report with location used for pages. When I print report, I get the expected result of each page being a location I specified, and in the order I specified. I'd like to distribute same report as pdf, but incorporate a table of contents based on page definition in report. Page 1 would have my table of contents, page 2 would have the first location, page 3 the second location, etc. Is this feasible?<BR><BR>Thanks in advance for your help.<BR><BR>-Carl

    <p>Hi Carl</p><p> </p><p>Can I ask you something before I give you the feedback on thisone. Do you use the system built in table of contents or did youdesign one?</p><p> </p><p>(1) If you have designed the table of contents  I would sayit is feasible to incorporate them in pdf  formataccording</p><p>to your order in the report book</p><p>BUT</p><p>(2) If you use the system built in table of contents the orderwill be determined by the number of your reports  you add inthe report book</p>

  • Hyperion Reports 11.1.2.2 database login issue

    HI ,
    We are on Hyperion reports v11.1.2.2 , for some reason whenever user logged in and try to pull the report ..it is prompting for database user credentials for first time(first report).
    After that it wont ask for any other report. How to avoid this prompt?? ..is there anyway that we can save password forever, ...so it wont ask for each login. or is there anyway that we can pass the login credenitials of workspace to even for database.
    Did anyone faced this issue.?? Can you please post your experineces on this..
    Thanks

    Hi,
    11.1.1.3 and 11.1.2.3 are totally different in many aspects. Again there are various factors which decide the performance like  OS, DB, App Server, Web Server and Component level. So its hard to forecast the performance even before we get in to the the environment. In general unlike your 11.1.1.3 there are so many performance tuning parameters we have in 11.1.2.3.
    Regards,
    Nowshad.

  • Text file imported into Hyperion report BQY

    Hi,
    I would like to know the internal process how Hyperion works in the scenario
    1. The Hyperion report query in select * from emp
    2. A text file containing list of emp ids has been imported into the report bqy
    I believe the query which gets fired on the underlying database is still select * from emp. If so, is it true that the result set of the "select * from emp" then is filtered in the Hyperion server memory based on the emp ids listed in the text file which is embedded in teh report bqy?
    I am using Hyperion 9.3.0.
    Any input would be appreciated.
    Regards,
    Suresh

    Try using the package UTL_FILE.
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96612/u_file.htm#998101

  • Using a prompt in Grid1 also changes Grid2 in Hyperion Reports

    <p>In Hyperion Reports, I have a report that is made up of twogrids.  The first grid points to an income statement database,and the second grid points to a balance sheet grid.  Bothgrids have the same column sets, but different row sets because ofthe different databases.  What I am trying to do use a promptto change the members in the columns for both grids. Currently, I have two sets of prompts for the report, one foreach grid - each asking for the same selections.  This makesthe report prompts repetitive.  Is there a way to have Grid2pull the same members that Grid1 prompts for - similar to the"Same As Member Selection In" function that works for themembers within a single grid?</p><p> </p><p>Thanks</p>

    <p>Hi Kahlua17,</p><p> </p><p>You can define your grids' POVs to "Current PointView". It will inherit the propertie values on the main reportPOV values and display the result you want based on the values youhave set.</p><p> </p><p>Ruel</p>

Maybe you are looking for

  • Transfer Ownership in same household

    Hi. I have read several of the posts that have been helpful regarding transferring ownership and multiple ipods on one computer. I didn't find any specifics, though, on doing that within the same household. I just bought myself a new ipod and want to

  • Remote Desktop Connection won't work from Leopard to Windows XP

    Hi, folks: I'm unable to connect to my work XP computer via my home iMac (Leopard 10.5.7) using Microsoft's Remote Desktop Connection for Mac. The XP settings are correct, I'm connected on my work network VPN, and I don't believe I have any router fi

  • OWB and Workflow

    I'm running OWB 10g on a 10g database. I'm attempting to deploy the workflow process developed in OWB to the edw schema in my database. I'm receiving the following error. RPE-02018: Oracle Workflow schema OWF_MGR on host 10.150.10.20 cannot be access

  • Can I convert each playlist into one single mp3 file

    I have had great success creating and burning a playlist to a CD however I'd really prefer to save an ENTIRE playlist of about 20 songs as a SINGLE MP3 file.  I can then I burn each file (composed of songs in a playlist)  to a CD and have a nice set

  • Skype to Go - Home Area Code not listed in set up

    I live in the 807 area code in Canada and it is not listed when I try to set up my skype to go number(s). Is this a glitch, or is the service not available in all areas? Thanks for letting me know. John