Merging 2 reports

I need to combine 2 reports into 1. Is there an easy way to merge all of the columns, along with the formulas, summaries and queries, into an existing report?

Martha
It is not possible to merge two reports definition. It is als that "merge" here is to vag, It could mean two reports one after other or make liknks of two queries in the data model and create a resulant report etc. You can use srw run report to call two reports from a dummy report and sumbitting a single request for the masetr dummy report
Thanks
The Oracle Reports team

Similar Messages

  • How to Merge Report of ManagedBy Attribute with Collection Membership

    I would like to merge the query below:
    SELECT
      v_R_System.Name0
      ,v_R_System.managedBy0
      ,v_R_User.Full_User_Name0
      ,v_R_User.Distinguished_Name0
    FROM
      v_R_System
      INNER JOIN v_R_User
        ON v_R_System.managedBy0 = v_R_User.Distinguished_Name0
    With a query similar to that in the built-in "All Resources in a Specific Collection" report:
    SELECT
        fcm.Name,
        CASE WHEN coll.CollectionType = 1 THEN fcm.SMSID ELSE fcm.Name END as Id,
     CASE WHEN ResourceType = 3 THEN '*' ELSE '' END as C066,
     CASE WHEN ResourceType = 4 THEN '*' ELSE '' END as C067,
     CASE WHEN ResourceType = 5 THEN '*' ELSE '' END as C068,
     SiteCode,
     CASE IsDirect
      WHEN 1 THEN '*'
      WHEN 0 THEN ''
     END AS C069,
            coll.CollectionType
    FROM fn_rbac_FullCollectionMembership(@UserSIDs)  fcm
    INNER JOIN fn_rbac_Collection(@UserSIDs)  coll on fcm.CollectionID = coll.CollectionID
    WHERE fcm.CollectionID = @ID
    The merged query would be used to build a table that has System_Name, Managed_By, Is_Member as its fields.  The Is_Member field would contain a * if the system is a member of the designated collection, and be null if it is not.

    Untested, because again, I don't have managedby attribute being pulled in via system disc in my lab.  And yeah, you either never said it, or I never read your request that way, that you wanted to 2 collectionIDs.
    ;with CollMembers as
     Select coll.Collectionid, fcm.resourceid, coll.name,
     case when coll.collectiontype=1 then fcm.smsid else fcm.name end as ID,
     case when fcm.resourcetype=3 then '*' else '' END as 'UserGroup',
     case when fcm.resourcetype=4 then '*' else '' END as 'User',
     case when fcm.resourcetype=5 then '*' else '' END as 'System',
     fcm.SiteCode,
     case fcm.isDirect
      when 1 then '*'
      when 0 then '*'
      end as 'Is Direct Membership',
     case coll.CollectionType
      when 0 then 'Other'
      when 1 then 'User'
      when 2 then 'Device'
      end as 'CollectionType'
     from v_fullcollectionmembership fcm
     join v_collection coll on fcm.collectionid=coll.collectionid
     where coll.CollectionID=@CollectionIDWhereIWantaStar 
     Select s1.Name0 as 'ComputerName',
     usr.Full_User_Name0 as 'Assignee',
     case when CollMembers.Resourceid=s1.Resourceid then '*'
     else '' end as 'Member of Collection'
     from v_r_system s1
     join v_r_user usr on s1.managedby0=usr.Distinguished_name0
     left join Collmembers on CollMembers.resourceid=s1.resourceid
     join v_fullcollectionship fcm on fcm.resourceid=s1.resourceid
     where fcm.collectionid=@CollectionIDOfTheLargerCollection 
     order by 'Member of Collection' desc, s1.name0
    Standardize. Simplify. Automate.
    One final tweak and we've got it!  Thanks Sherry!

  • PDF Merge - merged report ages are not continuous but starting in new page.

    Hi,
    we tried using - FOUtility.mergeFOs(java.io.Reader[] foReaders, java.util.Properties prop) to merge and create a single PDF file but its not working as expected.
    Issue:
    The space of output pdf page 1 is discarded and the second merged file always starting in new page.
    Input:
    Report1 having 1 page
    Report2 having 2 pages - (another description )
    Expected Output PDF:
    Page 1 ( report1) , Page 1( report 2's page1 and continues ) to page 2(report 2)
    Actual Output PDF :
    Page 1 ( report 1), Page 2( report 2's page1), Page 3 ( report 2's page 2)
    Issue:
    The space of output pdf page 1 is discarded and the second merged file always starting in new page.
    Anyone faced this issue before, if yes, how did you solve it ?
    Thanks,
    Ayaps

    The output is a chm file. I am compiling as MS HTML Help
    under RoboHelp x5.
    After doing a little more trail work, I have noticed some
    other "strange" happenings. I can get the porjects to merge, but
    from the TOC all of the articles open in a new window. From the
    index, however, they all open as they should--in the topic frame
    from the main window. Not sure why that is.
    For a brief synopsis, here is what I have at this point:
    A "master" project file that includes:
    One new project for a section that is
    complete.
    One project from the existing documentation.
    I am not sure if I need to have the window definitions for
    each project would impact this or not.
    Through trial and error, I have narrowed down the problem to
    the original documentation project. If I remove it from the TOC and
    generate the project, the new topics display as they should.
    I will keep testing and see what I came come up with. If you
    have any idea as to what I might change in the original
    documentation to get it to work just let me know.
    Thanks for all your help!
    Aaron

  • Possible to Merge Reports?

    I was wondering if it is possible to concatenate several different reports in PDF format together, so the user can click on a web link that will show multiple reports in one PDF file rather than have to click through to each seperate report.
    Can it be done with any version of Oracle Reports, or with any 3rd party software, other than manually building one giant report that is an aggregate of the smaller ones?

    Brian,
    I am using a java library (http://www.lowagie.com/iText/) to merge pdf files. There are also other command line tools to merge pdf files like pdcat from Glance (http://www.pdf-tools.com/de/index.html).
    Regards
    Uwe

  • Merge reports with external PDF

    I would like to know if it's possible to merge only with Reports a generated report with an external PDF. I already know about "File Link" object but it doesn't support PDF format, only images or text. It's even possible to embed an external PDF to somewhere in a RDF file? Or I have to merge it with an external tool? I've found PDFBox from Apache guys but then I'm forced to do some webservice between forms and reports, with all the inconveniences and security issues.
    Thanks in advance.
    Ricard Flores.

    I could provide source sample if anyone ask for it.That would be a good idea if you can post it here. This question has been asked before, so it is good to have a thread with an answer.
    I have done something similar before, with a Word document stored in the database and adding this doc as an OLE file format column to the report. I am interested how you solved it with PDF, though.

  • Merging Report Layouts.

    H,
    I have a question relating managing modifications in report layout files.
    Is there any successful way to  to merge two report layouts? (as in merging source code).
    Typical example  . merging a two modified versions of the same layout, as we would do in any other source code?
    Any tooling suggestions? Any ways to do the merge semantically that changes get reflected and .RDL and the end result is a valid working .RDL?
    Regards
    Asitha Weerasinghe.

    Hi Asitha,
    According to your description, you want to find a tool to merge RDL files, right?
    In Reporting Services, there is no tool can merge two RDL files directly. In your scenario, if you want to get expected results based on the two reports’ layout, I would like to suggest you design a new report with the same settings as those two reports.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Merge Reports of Multiple Accounts

    Hi Experts,
    I need to create a merge crystal report from 3 companies(Accounts from SAP B1), please give me some advice on how to do it. Some told me to create a Merge Database on SQL and create a report from this database but I am a newbie on SQL....
    Please give me some procedure or anything than can solve my problem...
    Thanks a lot and god bless,
    John

    Hi,
    Assume that your three company Database is Name like this.
    Eg: To build a consolidated chart of accounts table.
    First Company:
           Company Name: ABC
           Database Name: DB1
    Second Company:
           Company Name: DEF
           Database Name: DB2
    Third Company:
          Company Name: XYZ
          Database Name: DB3
    Now we have to choose any one company, to view the report or else create a seperate SQL database to store the consolidated data.
    CREATE VIEW ChartOfAccounts
    AS
    Select A.AcctCode as 'Account Code',A.AcctName as 'Account Name',
    A.CurrTotal as 'ABC Company Balance', B.CurrTotal as 'DEF Company Balance', C.CurrTotal as 'XYZ Company Balance',
    (A.CurrTotal + B.CurrTotal + C.CurrTotal) as 'Consolidated Account Balance' 
    from [DB1].[dbo].[OACT] A Inner Join [DB2].[dbo].[OACT] B On A.[AcctCode] = B.[AcctCode] Inner Join [DB3].[dbo].[OACT] C On B.AcctCode = C.AcctCode
    After Executing the Above Code. The View ChartOfAccounts Will be created in your database.
    It is a virtual table.
    Then you can write a simple select statement to select the data from ChartOfAccounts View.
    For Eg.
    Select * from ChartOfAccount

  • Merging Report and Form's portlet

    I made the Form and corresponding Report. I tried to insert in the Form's "After displaying the page", code:
    begin
    portal30.wwv_component_control.run_as_portlet (p_module_id=>2280059543);
    end;
    It works, Form passes the parameter and report is displayed correctly, but there is always Oracle Logo in the middle of the page :)
    Q: What is alternative API that can perform something similar?
    Btw. Where can I get some 'real' documentation about Portal and Portal API?
    thanks

    Srdjan,
    As far as I can tell there are two ways of doing this:
    1. Create an unstructured template without any headers/footers and use that template for your report.
    2. Each component has a parameter called showheader (datatype varchar2, look at the "Call Interface" in component management screen for details), with 'YES' beign default, if you set value for this parameter to 'NO' the template will not be used.
    Thanks,
    Dmitry

  • Consolidate reports to MS Word

    Hi,
    I would like to merge several heteregenous reports to one single MS Word 2003 document, and to be able to add feataures such as : main title before a report (heading1 style), sub titlebefore a report (heading2 style), table of content, etc ...
    The consolidation has to be done programmatically, not by a user, by an application that is able to read and generate documents from "merged reports templates".
    As a consequence, RTF format is not an option, because the formating is absolute, and the design is completely messed up when we add titles (or other information).
    I also tried HTML but the generated code is awful for a generic integration with Word.
    So I came up with the idea to use XML as Report's output in order to generate a Word document in WordML format (new XML-like format in Word 2003) by formatting the XML using a XSL transformation.
    Has someone already had this approach ?
    Are they any existing tools/tips/tricks to achive what I want to do ?
    Thanks in advance.

    Tijs,
    take a look at the following site :
    http://www.sequel.nl/html/sqlword.html
    and take a look at the product SQLWord.
    A colleague of mine used it for one of our customers and both sides where quite satisfied. Hopefully you are too.
    Regards,
    Gerard

  • How to merge outputs in single PDF?

    How can I merge the output of two files(Oracle reports10g file), into single PDF? Is it possoble in Reoprts 10g?

    Re: Merge few reports into a single PDF file
    Re: How to append pdf (Very Urgent plz)
    re:Possible to Merge Reports?

  • Hyperlink issues when merging RPTs into 1 RPT

    Hi All,
    Requirement:
    We have a requirement such that we will have to combine 2 or more RPTs into 1 RPT such that the output of the combined RPT looks like output of the first individual RPT and then the output of second individual RPT.
    Our ActionPlan:
    We are planning to have the individual RPTs as subreports in the Detail section of the main RPT. There is a query in the main RPT which will return us rows equal to the number of reports to be merged in the main report. The main query returns a unique ExecutionId for each individual report and we are using a GroupExpert on this ExecutionId so that the multiple subreports, present in different DetailSection of the main RPT gets executed and we get the desired result.
    We have different PageHeaders corresponding to individual RPTs. Also these PageHeaders have text controls which require a hyperlink to be done to the subreports.
    Issues Faced:
    1) Since the Group is on ExecutionId ,when we make a hyperlink(To another report object) from the PageHeader to the Details section subreport then it opens a new tab which is actually containing the entire data for that particular ExecutionId. Can I avoid the opening of the Hyperlink in the new tab?
    2) The subreport can be clicked and viewed as a new tab in the Preview.This is a default behaviour of Crystal Reports. Can the opening of subreports in a new tab be avoided and they should not prompt for any Hand or something so that the user never clicks it?
    Thanking you all in anticipation....
    Regards.
    Ajit.

    Hi All,
    Thanks Stratos for the reply and my apologies for replying late to the thread (I went on a vacation and sorry for that).
    My question was 'Can i disable the click of subreports when the report is previewed?'; Ur soution was that 'I should try to overlay the subreport with a transparent rectangle'. But the solution suggested does not serve the purpose. I have a subreport in the Detail section and then I inserted a Box in the Detail section such that the Box spreads over the subreport and also checked the property of Extend to Bottom of Section when printing. The Box now comes on top of the subreport in both Design and Preview. But the subreport is still clickable and no success there.
    I am using Crystal reports 2008 version.
    My first question relating to Hyperlink is still unanswered. I will explain it further to give you my exact requirement from the Designer perspective which would help us in clear understanding of the requirement.
    The design of the report looks like
    RH             Index Page of the Merged report
    PHa           Report Title and the parameters of the report1
    PHb           Report Title and the parameters of the report2
    GH1          Group1 on the ExecutionIDs (Always suppressed)
    Details a           SubReport containing the transactional data of Report1
    Details b           SubReport containing the transactional data of Report2
    GF1a         Subreport of AccountNames of Report1
    GF1c         Subreport of AccountNames of Report2
    My 2 issues are :
    1) I have to hyperlink a text object in PHa to the subreport present in GF1a. Since I cannot hyperlink a subreport directly, i tried using a dummy text object on top of subreport and then tried to hyperlink it to PHa, it opens as a new tab whereas I want it to  navigate and hyperlink in the same report in the same tab like any other hyperlink to another report object.
    2) Disable the click of subreport.
    Incase i have written something incorrect then please do correct me and help me out.
    Thanking all in anticipation.
    Regards.
    Ajit.

  • P tag elements not showing on pages using css

    I converted a site from GoLive to DreamWeaver and all the
    text using the <p> tag doesn't show up on the site, but the
    other styles do show up, including <h1> tags, etc.
    - I've confirmed the links to the css are correct and in
    tact.
    - I've cut and pasted text from the <body> tag, which
    is the same spec as the <p> tag into place to make sure there
    wasn't a typo. Didn't help.
    - I've tried it with and without the <> brackets.
    - I changed a paragraph within the page to "none" and used
    the <br> tags to make the breaks, and it shows fine, but the
    very next paragaph that uses the <p> doesn't work.
    Any thoughts on why this would happen?
    Here is the typical header link I'm using
    <link href="adv01.css" rel="stylesheet"
    type="text/css">
    Here is the actual css line
    p { color: #333; font-size: 13px; font-family: Helvetica,
    Geneva, Arial, SunSans-Regular, sans-serif; line-height: 15px }
    Thanks
    Jon

    On Fri, 4 May 2007 05:02:06 +0000 (UTC), "jcamrud"
    <[email protected]> wrote:
    >Yeh, thanks for the drama Win ;-)
    Drama? No. Trying to get you to understand that you have made
    a
    fundamental and serious error in using includes.
    See this?
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta http-equiv="content-type"
    content="text/html;charset=iso-8859-1">
    <meta name="keywords" content="Mortgage, Mortgage
    credit report, Trimerge, Fannie, Credit reports, FICO,
    Mortgage
    Services, Mortgage Credit Software, Flood Certifications,
    RMCR,
    Mortgage Brokers, Infile, Experian, Equifax, TransUnion,
    Rapid
    Resolve, Quick Check, Rescore Express, Calyx Point, Genesis,
    Merged
    report, Freddie, Credit repository, mortgage, mortgage credit
    report,
    trimerge, fannie, credit reports, FICO, mortgage services,
    mortgage
    credit software, flood certifications, RMCR, mortgage
    brokers, infile,
    experian, equifax, transunion, rapid resolve, quick check,
    update
    express, calyx point, genesis, merged report, freddie, credit
    repository">
    <title>ADVANTAGE CREDIT INC of COLORADO Credit
    Reporting Services</title>
    <link href="../adv01.css" rel="stylesheet"
    type="text/css" media="all">
    </head>
    <body bgcolor="#ffffff" leftmargin="0" marginheight="0"
    marginwidth="0" topmargin="0">
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta http-equiv="content-type"
    content="text/html;charset=iso-8859-1">
    <title>Advantage Credit Incorporated</title>
    <style type="text/css" media="screen"><!--
    p { color: #fff; font-size: 11pt; font-family: "Trebuchet
    MS", Geneva,
    Arial, Helvetica, SunSans-Regular, sans-serif; font-weight:
    bold;
    text-decoration: none }
    a:link { color: #fff; font-size: 11pt; font-family:
    "Trebuchet MS",
    Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-style:
    italic; font-weight: bold; text-decoration: none }
    a:hover { color: #cfc; font-size: 11pt; font-family:
    "Trebuchet MS",
    Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-style:
    italic; font-weight: bold; text-decoration: underline }
    a:visited { color: #fff; font-size: 11pt; font-family:
    "Trebuchet MS",
    Geneva, Arial, Helvetica, SunSans-Regular, sans-serif }
    .navlink { color: #fff; font-size: 11pt; font-family:
    "Trebuchet MS",
    Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-style:
    oblique; font-weight: bold }
    --></style>
    </head>
    <body bgcolor="#ffffff" leftmargin="0" marginheight="0"
    marginwidth="0" topmargin="0">
    Starting from the top:
    Your DOCTYPE is incomplete. So the page is working in
    "quirks" mode;
    display issues are now a crapshoot.
    There are duplicate <html>, <head>, and
    <body> tags. Browsers can
    choke on that.
    The first lump of embedded styles sets the body background
    colour to
    #fff. The second lump sets the p, a:link, and a:visited
    colours to
    #fff. Tough to see white text on a white background.
    Farther down the page, within a table, you've got this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta http-equiv="content-type"
    content="text/html;charset=iso-8859-1">
    <link href="adv01.css" rel="stylesheet"
    type="text/css" media="all">
    <style type="text/css" media="screen"><!--
    .footerlink { color: #666; font-size: 11px; font-family:
    Helvetica,
    Geneva, Arial, SunSans-Regular, sans-serif; text-decoration:
    underline
    .copyright { color: #666; font-size: 11px; font-family:
    Helvetica,
    Geneva, Arial, SunSans-Regular, sans-serif; line-height: 13px
    --></style>
    <script language="javascript" type="text/javascript">
    <!--
    script to open small windows
    var win=null;
    function NewWindow(mypage,myname,w,h,scroll,pos){
    if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):1 00;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
    if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.h eight)?(screen.height-h)/2:100;}
    else if((pos!="center" && pos!="random") ||
    pos==null){LeftPosition=0;TopPosition=20}
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+ scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
    win=window.open(mypage,myname,settings);}
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff" leftmargin="0" marginheight="0"
    marginwidth="0" topmargin="0">
    So now you've got a THIRD set of <html>, <head>,
    and <body> tags. It's
    a wonder the page can display at all.
    Fix these errors:
    http://dwarfurl.com/bfaa3
    and these:
    http://dwarfurl.com/15e94
    and see what happens. In the CSS error report, it looks like
    the
    server doesn't recognize the external CSS file:
    URI :
    http://www.advcredit.com/../adv01.css
    -1 File not found
    http://www.advcredit.com/../adv01.css:
    Forbidden
    Win
    Win Day, Wild Rose Websites
    http://www.wildrosewebsites.com
    [email protected]
    Skype winifredday

  • Excel Insert worksheet

    I am having trouble trying to insert an excel worksheet from one workbook into another workbook. None of the excel functions seem to work for me and I am having a problem trying to find a good example. Basically what my program does is it will collect temperature data from an appliance over an hours time and then spit this data to an excel template which already has an implemented graph and a formula chart. The graph that I am using is an older excel graph which cannot be changed. After the data is added to the excel spreadsheet, the excel graph will update with the new data and I run a few macros to process the data and save to the formula chart. The issue though is, I don't know upfront how many tests I need to run so I want to add a spreadsheet template (which has the embedded graph and chart) to the end of the workbook and follow the same data process from above. This will happen for as many tests as I need to run. Can anyone help me with this issue.

    I'm working on the attached vi, which in its current state will copy a sheet from an excel file to another bringing along the formatting, etc.  It copies fine, however I'm having trouble closing out Excel after the vi executes (which isn't a huge problem but I would like to solve it).  
    Can anyone shed some light as to why that is happeining?
    Attachments:
    Merge Reports.vi ‏20 KB

  • 9506, Only one operation allowed at any instance

    Device manager
    Make any chances to a port IE enable, label, etc.., click on Admin, Click on save configuration, Prompt-Really save running to startup configuration? Select yes, receive a message, snmpd: another copy operation in progress. Only one operation allowed at any instance - IP address ccCopyEntryRowStatus.183228284. It only gives you the option to cancel. I select cancel, when I try to exit device manager, it prompts me to save again, I click cancel, when I return to the Device manager, the setting are correct, in other words, if I enabled a port and says its failed on saving, it did save it as enabled. I have two SAN switches, this only happens with one every time, the same one. How do I fix this?

    Sh Cfs Lock, nothing
    Zone Merge Analysis
    MONMDS01 is VSAN100, MONMDS02 VSAN101
    Results
    VSAN 1 Active Zoneset Merge Report for MONMDS01 and MONMDS02
    MONMDS01 has no active zoneset on VSAN 1
    VSAN 100 Active Zoneset Merge Report for MONMDS01 and MONMDS02
    MONMDS02 has no active zoneset on VSAN 100
    VSAN 101 Active Zoneset Merge Report for MONMDS01 and MONMDS02
    MONMDS01 has no active zoneset on VSAN 101
    VSAN 1 Active Zoneset Merge Report for MONMDS02 and MONMDS01
    MONMDS02 has no active zoneset on VSAN 1
    VSAN 100 Active Zoneset Merge Report for MONMDS02 and MONMDS01
    MONMDS02 has no active zoneset on VSAN 100
    VSAN 101 Active Zoneset Merge Report for MONMDS02 and MONMDS01
    MONMDS01 has no active zoneset on VSAN 101

  • New browser window from uix

    How can I open a new browser window from an event handler in UIX?
    Thanks in advance,
    Martmn Patrici

    I just tried your suggestion. Unfortunately, it did not work. Here's the UIX code I used:
    <tableSelection>
    <singleSelection model="${bindings.MPOOrdersView1Iterator}" text="Select">
    <primaryClientAction>
    <firePartialAction targets="_uixState MplistsView11" source="MPOOrdersView10" event="select"/>
    </primaryClientAction>
    <contents>
    <submitButton formName="mlrhomeform" text="Print Lists" event="print" />
    <submitButton text="View Merge Reports" event="mergerpts" formName="mlrhomeform" targetFrame="_blank"/>
    </contents>
    </singleSelection>
    </tableSelection>
    The only difference from the original code is the addition of the targetFrame="_blank" in the submitButton.
    It had no effect. My redirected page showed up in the same browser window. This left me with an expired page when I press the Back button on the browser.
    My assumption is the response.sendRedirect() call wipes out the targetFrame setting.
    Does anyone know how the browser (Internet Explorer in this case) actually gets notified to open a new window? There's got to be something that the targetFrame="_blank" sets up to cause it.
    I know that Netscape supports a "Window-target:" header, but unfortunately IE doesn't. Is there some "standard" header that I can put in a response.addHeader() call that would tell all browsers to open a new window?
    Of course, a UIX solution would be preferrable!
    Any other ideas?

  • 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

Maybe you are looking for

  • How do I transfer my Music Library to my new laptop?

    Hey there everybody! I have an Imac G4 swivel-screen and a new white MacBook 1.83. I would like to transfer my music library from my IMac to the laptop. I do have an touchscreen Gen2 Ipod that I was thinking of using, but taking the songs, copying th

  • Calling a Matlab script returns error code 1048

    I don't know how to proceed. My variable names are not Matlab function names. I'm using LabVIEW 6.1. I'm running the following Matlab version: » ver MATLAB Version 6.5.0.180913a (R13) MATLAB License Number: 156808 Operating System: Microsoft Windows

  • Mutliple receivers

    Hi All, I got 2 queries. 1.Can anyone explain when to go for BPM and when to go for normal scenario(enhanced Receiver determination) in case there are multiple receivers?Please give some detailed description as I am pretty confused with this topic. 2

  • Error when i click on task of UWL Inbox...Error " web page can not found "

    Hi, I am using UWL inbox. When i click on task error like... " Web page can not found " So i dont have idea where it finds page means at where ? Please can any one tell me solution of that, Regards, Gurprit Bhatia Edited by: GURPRIT BHATIA on Jan 3,

  • How to load special characters (diacritics)

    When trying to load a record from a csv-file into an Oracle 10 g database (UTF8 characterset) with the name Morré in it (note the accent grave) SQL Loader returns the following error "no terminator found after TERMINATED and ENCLOSED field" using a b