Query conversion from Brio 6 to Hyperion 8.5

Hi, All.
A user has a Brio 6 query that contains 3 pivots and 6 reports. When she opens it in Hyperion, she loses all 6 of the reports.
Has anyone seen this issue? Is there a solution for it? The reports are fairly complex and it would require serious effort to recreate them.
Thanks.
Barbara

By other copies...I mean do you have older copies of the file or copies in other locations? on the server or other people's computers. And have you tried those.
Some of my clients use a version control software like "SourceSafe" or implement a versioning practice when developing bqys so that if a file gets corrupted they have a backup file to use.
when a version control system is not available I have often started each day by making a backup of the file and adding the year, month, day (YYYYMMDD) to the end of the file name. And if it is a day with quite a bit of development I will even save a backup with the time (HHMM) after the date.
Also have you opened a Service Request with Oracle?
You can contact me offline and I may be able to offer other suggestions (email address in my profile)
Wayne Van Sluys
TopDown Consulting

Similar Messages

  • Query conversion from access to sql server

    I have sql in access I need to convert to sql server . I am stuck three days please help me
    TRANSFORM First(Eval1to4.answer) AS FirstOfanswer SELECT Eval1to4.evalOid, Membershiptypemap.mappedvalue as membership, First(Eval1to4.answer) AS [Total Of answer] FROM (Members RIGHT JOIN (Eval1to4 LEFT JOIN Orders ON Eval1to4.evalOid = Orders.oid) ON Members.CID
    = Orders.cid) LEFT JOIN MembershipTypeMap ON (Members.MembershipStatus = MembershipTypeMap.membershipstatus) AND (Members.Membership = MembershipTypeMap.membershiptype) WHERE Orders.program = 20141128 AND Eval1to4.evalProgID=20141128 GROUP BY Eval1to4.evalOid,
    Membershiptypemap.mappedvalue PIVOT Eval1to4.questionID

    There isn't an exact equivalent to pivot queries in t-sql.
    There is a pivot operator but it requires that you know and explicitly specify the pivoted columns when you're creating your code.
    Just a heads up... Some one here will most assuredly either provide you with or point you to code that will allow you to do a "dynamic pivot"... Yes, it will allow you to pivot the data the way you're used to doing it in Access (without having
    to specify the pivoted column names). The problem with dynamic pivots is the fact that they are useless. You can't put them in views, functions or stored procs and I'm not aware of any reporting software that can work with a variable number of input columns.
    So, unless you simply want to copy & paste from SSMS to Excel, they aren't good for anything other than patting yourself on the back.
    So... My 1st suggestion is to not pivot the data at all in SQL. Instead, pivot the data in whatever application you're using to display the data.
    Since no one ever wants to hear suggestion #1, use aggregated case expressions. Based on the code you provided, it should look kinda like this...
    SELECT
    Eval1to4.evalOid,
    Membershiptypemap.mappedvalue as membership,
    SUM(CASE WHEN Eval1to4.answer = 1 THEN 1 END) AS Answer1,
    SUM(CASE WHEN Eval1to4.answer = 2 THEN 1 END) AS Answer2,
    SUM(CASE WHEN Eval1to4.answer = 3 THEN 1 END) AS Answer3,
    SUM(CASE WHEN Eval1to4.answer = 4 THEN 1 END) AS Answer4,
    SUM(CASE WHEN Eval1to4.answer = 5 THEN 1 END) AS Answer5
    FROM
    Eval1to4 e
    JOIN Orders o
    ON e.evalOid = o.oid
    JOIN Members m
    ON m.CID = o.cid
    LEFT JOIN MembershipTypeMap mtm
    ON m.MembershipStatus = mtm.membershipstatus
    AND m.Membership = mtm.membershiptype
    WHERE
    o.program = 20141128
    AND e.evalProgID = 20141128
    GROUP BY
    e.evalOid,
    mtm.mappedvalue
    #3... There is still the "PIVOT" operator. I personally don't use it because the aggregated case expressions are more flexible... But some people love them, so do a little Googleing and decide for yourself.
    #4... Dynamic Pivot... If you're dying to try it, the interwabs are full of examples... or wait a bit and someone will post some for you.
    HTH,
    Jason
    Jason Long

  • Can we merge data from multiple sources in Hyperion Interactive Reporting ?

    Hi Experts,
    Can we merge data from multiple sources in Hyperion Interactive Reporting ?Example can we have a report based on DB2
    Oracle,
    Informix and Multidiemnsional Databases like DB2,MSOLAP,ESSBASE?
    Thanks,
    V

    Yes, Each have their own Query and have some common dimension for the Results Sections to be joined together in a final query.
    look in help for Creating Local Joins

  • Error while migrating repository files from Brio to Interactive reporting

    Hi,
    I am doing migration of Brio from 8.3.1 to Hyperion Interactive Reporting version 11.1.2.1. I am referring http://docs.oracle.com/cd/E12825_01/epm.111/hs_migration.pdf
    I am facing error when I am migrating resitory files from brio 8 to Interactive reporting version11 environment.
    Error [[ENOENT]] Accessing path: /c2cnas/Oracle/Hyperion_Home/EPMSystem11R1/products/biplus/opencat
    when I checked at my Linux server I do not see "opencat" directory under /c2cnas/Oracle/Hyperion_Home/EPMSystem11R1/products/biplus path. I don't know why this directory or folder was missed after Hyperion Interactive Reporting Installation. Do we need to create this folder manually for newer versions( 11.x)?
    Has anyone aware of this error? will it impact my migration? I am thinking that migration utility is looking to place .oce files in this directory but it could not find. is my understanding correct?
    Please help me on this.

    Usually in 11.1.2.1 the folder will be  "EPMSystem11R1\products\biplus\data\Open Catalog Extensions"
    I haven't seen a opencat folder.
    Can you check the migration logs.Also check permission for the user on the folders.
    Thanks,
    KK

  • Implicit Conversion from data type sql_variant to datetime is not allowed.

     Getting a odd error. This code was working perfectly before a SQLServer upgrade.
    The linked database is working, I'm able to pull up data from it in separate queries just fine.
    I'm getting the following error.
    Implicit conversion from data type sql_variant to datetime is not allowed. Use the CONVERT function to run this query.
    Invalid column name 'TotalDay'. (.Net SqlClient Data Provider)
    can anyone spot the issue? I've tried sever variations of the same code, but still get the same thing.
    If I put this section in a query by it self it works just fine.
    ( DATEDIFF(ss,
    CONVERT(VARCHAR(10),( SELECT TOP ( 1 )
    TimeDate
    FROM [nav].AcsLog.dbo.EvnLog AS X3
    WHERE UDF2 = E.No_
    AND CONVERT(VARCHAR(10), X3.TimeDate, 101) = CONVERT(VARCHAR(10), @sdate, 101)
    ORDER BY TimeDate ASC
    ),101),
    CONVERT(VARCHAR(10),( SELECT TOP ( 1 )
    TimeDate
    FROM [nav].AcsLog.dbo.EvnLog AS X4
    WHERE UDF2 = E.No_
    AND CONVERT(VARCHAR(10), X4.TimeDate, 101) = CONVERT(VARCHAR(10), @sdate, 101)
    ORDER BY TimeDate DESC
    ),101)) ) AS TotalDayBadge ,

    >ANDCONVERT(VARCHAR(10),X3.TimeDate,101)=CONVERT(VARCHAR(10),@sdate,101)
    It is not a good idea to use string dates for predicates in WHERE clauses.
    Use DATETIME or DATE in predicates.
    If you are not interested in the time part of DATETIME, use DATE datatype.
    Example:
    SELECT CONVERT(DATE, getdate());
    -- 2014-08-25
    Datetime conversions:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Between dates:
    http://www.sqlusa.com/bestpractices2008/between-dates/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Migration from Brio8 version to Hyperion Interactive reporting version11

    Hi,
    We are migrating from Brio8 environment to Hyperion Interactive Reporting version 11 environment. I am referring hs_migration.pdf version 11. I am using migration utility tool to do migration.
    my question is if I am migrating artifacts from Brio 8 repository to Hyperion 11 reposotory. Will it migrate all the old UUIDS of all the reports to the new repository or will it create new UUIDS  for the reports. If that is the case reports which were saved offline referring to webbased queries will work?

    Hi.
    We are just now attempting an upgrade from Brio 6.5 and the On-Demand Server to Hyperion 9.3. Are any of you able and willing to address questions as they come up? I understand the set up and security of the Brio product thoroughly .. and create reports and EIS sections. BUT ... the terminology change from Brio to Hyp 9 is daunting and I'm needing to know how to begin to construct what in Brio I think of as the "Catalog". I'm interested in keeping our initial Hyp9 implementation simple ... and not take advantage of all the options in Hyp 9 which are not part of Brio.
    Thank you!
    Jeanne
    [email protected]
    920-832-6613

  • Disallowed implicit conversion from data type datetime to data type timestamp

    Received error: [Macromedia][SQLServer JDBC
    Driver][SQLServer]Disallowed implicit conversion from data type
    datetime to data type timestamp, table 'myTbl', column 'duration'.
    Use the CONVERT function to run this query.
    I have a field named duration hh:mm:ss.lll that I am trying
    to insert into MS SQL. DB has field defined as [duration]
    [timestamp] NOT NULL,
    My insert has this: INSERT INTO myTbl( duration) VALUES(
    <cfqueryparam value="2006-05-26 11:12:13"
    cfsqltype="CF_SQL_TIMESTAMP"/> )
    Why does this not work? rrrrrrrrrrrrrr! BTW: also tried with
    seconds as 13.111 which did not work. Does the db duration need to
    be date? I just want to store a duration for the time of a movie...
    10 Q

    quote:
    Originally posted by:
    quiet1
    Received error: [Macromedia][SQLServer JDBC
    Driver][SQLServer]Disallowed implicit conversion from data type
    datetime to data type timestamp, table 'myTbl', column 'duration'.
    Use the CONVERT function to run this query.
    I have a field named duration hh:mm:ss.lll that I am trying
    to insert into MS SQL. DB has field defined as [duration]
    [timestamp] NOT NULL,
    My insert has this: INSERT INTO myTbl( duration) VALUES(
    <cfqueryparam value="2006-05-26 11:12:13"
    cfsqltype="CF_SQL_TIMESTAMP"/> )
    Why does this not work? rrrrrrrrrrrrrr! BTW: also tried with
    seconds as 13.111 which did not work. Does the db duration need to
    be date? I just want to store a duration for the time of a movie...
    10 Q
    Duration as a timestamp? How odd, most people would store it
    as an integer. Or, if you want to build your own string, the syntax
    is {ts 'yyyy-mm-dd hh:mm:ss'}. The seconds might not be required.
    In any event, use createodbcdatetime() for the value you want
    to put into your table.

  • Conversion from  varchar(20) - to_date

    HI if any one could help me on the below query please,
    SCEANRIO IS THIS:
    conversion from varchar(20) - > to_date
    EX: SUSR4 = VARCHAR(20)
    SUSR4 = 25-MAY-2011
    i need to convert this varcahar(20) to to_date as follows
    Result coms..: SUSR4 = to_date('25/05/2011','dd/mm/yyyy')
    and i want use this filed below condition
    SUSR4 >= to_date('20/05/2011','dd/mm/yyyy')
    NOTE: please revert back to me with the result . tkx in advance.
    can u reply this mail id.. [email protected]

    HI FRIEND....
    BELOW MENTIONED THE FORMAT I TRIED BUT IM GETTING ERROR MESSAGE "DATE FORMAT NOT RECOGNIZED"....
    BELOW QUERY ONLY IM TRYING TO RUN
    select      od.SKU,
                s.DESCR as "DESCRIPTION",
                lx.LOT,
                LX.LOC,
                (od.SHIPPEDQTY+od.QTYPICKED) as Qty,
                od.SUSR4 as PalletID,
                (select  to_char(rd.ADDDATE,'mm/dd/yyyy')  from receiptdetail rd where rd.TOID in (od.SUSR4)
                and  trunc(rd.ADDDATE)>=  to_date('26/04/2011','dd/mm/yyyy') and rownum=1) as RECEIVEDDATE,
                od.SUSR5 as Shipdate,
                to_char(o.ACTUALSHIPDATE,'mm/dd/yyyy') as ACTUALSHIPDATE,
                (SELECT R.CONTAINERKEY FROM RECEIPT R LEFT OUTER JOIN RECEIPTDETAIL RD ON RD.RECEIPTKEY=R.RECEIPTKEY
                 WHERE RD.TOID IN (OD.SUSR4) AND RD.QTYRECEIVED>0
                 AND TRUNC(RD.ADDDATE) >= TO_DATE('26/04/2011','DD/MM/YYYY') AND ROWNUM=1) AS CONTAINERKEY
    from        orderdetail od ,orders o , sku s,lotxlocxid lx
    where       od.sku=s.sku and lx.ID=od.SUSR4
                and od.ORDERKEY=o.ORDERKEY
                and s.SKU='AAFESDD'
                --and o.ACTUALSHIPDATE <= to_date('30/05/2011','dd/mm/yyyy')
                AND TO_DATE(OD.SUSR5,'DD/MMM/YYYY')<=TO_DATE('30/05/2011','dd/mm/yyyy')THANKS,
    PRABU AMMAIAPPAN
    Edited by: BluShadow on 31-May-2011 12:27
    added {noformat}{noformat} tags.  Please read {message:id=9360002} for info on how to format your code and ask a question.
    Also please note that UPPERCASE is considered shouting and thus is not polite on the forums.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Use evdre to query data from a SQL View

    Hi all
    I believe that it is possible to use evdre to query data from a SQL View. If this is possible then how does one go about setting it up in the evdre options (assuming that the view has already been created)?
    Regards,
    Byron

    Byron,  perhaps this is no longer supported, it might be worth opening up a case at service.sap.com on this.  However, I did find the following on Page 11 of the "Usages and Considerations of EVDRE" pdf file.  This doc is imbedded in the helpfile for BPC 7 SP5 (which was released in August of 2009, well after note 1315011 was last updated.
    It looks like you are limited to one custom view per application, since you have to name the view in a parameter at the APPLICATION level.  Go into BPC Administration, login to the application related to the custom view, choose "Set Application Parameters" and enter the name of the view to the Application Parameter called "EVDRE_QUERYVIEWNAME"  If it is not listed, go ahead and create it at the bottom of the Application parameter screen.
    Also:  I interpreted the following info from Page 10 of the same doc:
    In your EVDRE, set the following options:
    QueryEngine: MANUAL
    QueryType:  enter either NEXJ  OR TUPLE  see below:
    NEXJ  - Use two-dimensional queries using the nonemptycrossjoin function
    TUPLE  - Use two-dimensional queries using tuples"
    And I'm assuming you'd enter a Y for the following two parameters:
    QueryViewName
    "..to enforce the query engine to use a used-defined SQL view of the fact tables, when trying to read the values using SQL queries. This option is typically used in conjunction with the SQLOnly option (see below). "
    Option SQLOnly
    "..to enforce the query engine to only execute SQL queries, when reading data. This can be achieved using this option."

  • Not able insert ,query data from forms

    hi,
    I am not able to insert data or query data from forms(10g devsuite).getting error frm-40505,frm 40508 .i am able to insert and select record from sql plus.the block ihave created is control block .it is connected to the table using the properties.
    should i do anything to insert record.please help

    the block ihave created is control block .it is connected to the table using the properties.A Control Block, by definition, is a non-database block. This means the block is not directly connected to a table so you have to manually display data in the block and any DML you want to perform on data in this block you must do manually as well.
    There are four database objects you can base your database block on; 1) a Table, 2) a View, 3) From Clause Query (basically an In-line View), and 4) a database stored procedure. I recommend you use one of these four methods rather than manually display your data.
    Craig...

  • Getting ÿþ as saved conversations from Lync in Outlook in Office 2013

    Hi,
    I've been trying to get to the bottom of this and have found similar posts, but no one seems to have an answer.
    When I IM someone using Lync 2013, they get a pop up notification but instead of the message they see ÿþ<.  Once they open the chat window, they can see my typed text.  Occasionally, certain people can't see the first line of my chat, but as
    long as they keep the chat window open, they can see everything new I type.
    All my conversations that are saved in outlook show ÿþ< for the text and are unreadable.  I've disabled the saving of conversations because they have become worthless.
    I believe it has to do with BOM but have not been able to find a way to fix this.
    If I copy a conversation from the chat window and paste it into Microsoft Word it shows ÿþ<, but if I paste it into notepad the conversation appears.
    (I had inserted a screenshot here, but am unable to because I am unable to figure out how to get my account "verified")
    I've tried changing the preferred encoding for outgoing messages: to Unicode (UTF-8) in Outlook, but this had no effect and I can't find a similar option in Lync 2013.
    (I had inserted a screenshot here, but am unable to because I am unable to figure out how to get my account "verified")
    I enabled logging for Lync and the event IDs that come up are 1, 11 and 12, to which I cannot find any information for at the moment.
    Any help and or suggestions would be appreciated.

    Hi,
    Did the issue happen only for you or for multiple users?
    Please try to delete Lync User Profile and information on Registry, then repair Office 2013.
    The path of Lync User Profile: %UserProfile%\AppData\Local\Microsoft\Office\15.0\Lync
    The path for information on Registry: HKCU\Software\Microsoft\Office\15.0\Lync\[email protected]
    Then test the issue again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to get the query values from the url in a servlet and pass them to jsp

    ok..this is the situation...
    all applications are routed through a login page...
    so if we have a url like www.abc.com/appA/login?param1=A&param2=B , the query string must be passed onto a servlet(which is invoked before the login page is displayed)..the servlet must process the query string and then should pass all those values(as hidden values) to the login jsp..then user enters username and pswd, then there should be another servlet which takes all the hidden values of jsp and also username and pswd, authenticates the user and sends the control back to that particular application along with the hidden values...
    so i need help on how to parse the query string from the original url in the servlet, pass it out to jsp, and then pass it back to the servlet and back to the original application...damnn...any help would be greatly appreciated...thanks

    ok..this is the situation...Sounds like you have a bad design on your hands.
    You're going to send passwords in a GET request as clear text? Nice security there.
    Why not start with basic security and work your way up?
    %

  • Delete WorkBook and Query file from Server .

    Dear All Experts .
    I dun know i posted in correct places or not .. (correct me if i m wrong) .. i want to ask about the BW Workbook and query.
    How we going to remove the remove the workbook or query files from Server ? bc i tried to delete from Analyzer(excel 2007), the file is deleted from the view , but havent delete from the server... So how i going to remove the file from server ?
    Thank.

    Hello I have the same problem. Can you please tell me how you finaly manage to delete the workbook.
    thank's you for advance,
    Akiba

  • Project Conversion from 11.03 to R12- need help

    Hi All,
    I need some information regarding conversion from 11.03 to R12 along with Capital Project's conversion, do we need to take care Asset Assignment and Assets information at the time of Project Conversion. Iam doing Project and Task conversion different. Is there any good mapping document or Conversion FD, if any body have please send my mail ID. [email protected]
    Thanks for your help.
    Thanks,
    Srini..

    Usually only Open Invoices and Unapplied Receipts are migrated from Old system to New Instance.
    Post Migration Reconciliation shall be tough in that scenario. Reconsider/Rediscuss with Client.
    Migration can be done using APIs or Custom Scripts using Standard Interfaces.
    Hope this is helpful
    Regards,
    Sridhar

  • Performance tuning for ABAP Query (created from t-cd SQ01)

    Hello all,
    We created ABAP Query report from transaction SQ01.
    But the generated report has an appropriate SQL statement which causes performance problem.
    To solve this issue, I guess the easiest way is;
    0. Give up to use it.
    1. Copy it to another object in the customer namespace.
    2. Ajust SQL statement.
    But I'm wondering if there're appropriate ways to adjust SQL statement of Query.
    Could anybody give me any better idea?
    Thank you
    Yuko

    You can try this: Create 2 ranges, for objnr and cdtcode and fill like:
    ra_objnr-sign = 'I'.
    ra_objnr-option = 'CP'.
    ra_objnr-low = 'OR*'.
    append ra_objnr.
    ra_code-sign = 'I'.
    ra_code-option = 'CP'.
    ra_code-low = 'CO*'.
    append ra_code.
    SELECT objnr udate utime
    FROM jcds
    INTO TABLE it_jcds
    WHERE objnr IN ra_objnr
    AND stat = l_tj02t
    AND cdtcode IN ra_code
    AND inact = space
    Regards,
    John.

Maybe you are looking for

  • ITunes Sharing Drops out with Xserve G5

    Hello All, I have an Xserve G5 running 10.4.11, and clients running 10.4.9. We're running iTunes 7.5 everywhere. The server sits on a university network, but does dole out IP adresses for a subnet existing in a computer lab. So, I am using the server

  • BT 2.0 compatible with 1.2 (Headset)?

    Hello, i own the 5610 xpressmusic which supports the BT 2.0 standard. I'd like to buy a new Stereo-Headset, but the BH-503 is far to expensive ~~. The BH-501 would be cool but it only supports BT 1.2. Will this combo (5610 xpressmusic + BH-501) work

  • View issue

    Hi All, could you please some one assist for my query, i am trying to create View, here is my query and want to get these result two more columns I want to B_S_Ratio: If B>S then Abs(B Volume /S Volume) , else if S>B then ( S Volume / B Volume) in th

  • Topology - Physical Architecture issues

    Hi, I am trying to reverse engineer and add tables from SQL server and getting the following error. ODI-17549: Source data type "int identity" for thetechnology "1017" does not exist Please help. Thanks for your time.

  • How can i check rfc working in R3?

    Hi, how can i check that an RFC was executed in the RFc after Xi called r3?