Open document to open multiple reports

Hi
i have created 3 Webi Reports, namely
Report 1
Report 2
Report 3
Report 1 has company and its revenue
Report 2 has Site and its Revenue
Report 3 has Service and its revenue
Example :
Report 1
Company    Revenue
abc            456
adf           789
dsd            145
Report 2
Site                 Revenue
s1                  7255
s2                  8985
s3                  4444
Report 3
Services        Revenue
sr1               10
sr2               15
sr3               45
which falls under the hierarchy
1.company -> Site
2.company -> Service
In Report 1 , i should have a open document link on Company object, if i click any of the company, it should ask for options to navigate either to Report 2 or Report 3 ie by SITE or SERVICE.
Is this possible by open document functionality in Web intelligence. If so please guide step by step.
i have tried directly creating a object with hyperlink from universe
Case     @Prompt('Select Measure: ','A',{'Site', 'Service'},MONO,CONSTRAINED)
     When 'Site' then ="<a href='#' on.click=\"javascript:window.open('http://ptpl-vm3:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=Afkjn4VJ.qpHqciiP5iOlwE&sIDType=CUID&sType=wid&sRefresh=N&lsSEnterYear%3A="+[Year]+"')\">"+[Year]+"</a>"
     When 'Service' then ="<a href='#' on.click=\"javascript:window.open('http://ptpl-vm3:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=AdLLgIJn7XJCv85q2wVZlOo&sIDType=CUID&lsSEnterYear%3A="+[Year]+"&lsSEnterQuarter%3A="+[Quarter]+"')\">"+[Year]+"</a>"
End
its throwing an error on parse failed.
and also tried in infoview, creating hyperlink
="<a href='#' on.click=\"javascript:Case     @Prompt('Select Measure: ','A',{'Site', 'Service'},MONO,CONSTRAINED)
     When 'Site' then
          window.open('http://ptpl-vm3:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=Afkjn4VJ.qpHqciiP5iOlwE&sIDType=CUID&sType=wid&sRefresh=N&lsSEnterYear%3A="+[Year]+"')
     When 'Service' then
          window.open('http://ptpl-vm3:8080/OpenDocument/opendoc/openDocument.jsp?iDocID=AdLLgIJn7XJCv85q2wVZlOo&sIDType=CUID&lsSEnterYear%3A="+[Year]+"&lsSEnterQuarter%3A="+[Quarter]+"')\">"+[Year]+"
End
</a>"
which is also not working.
is there an way to create this ?
Regards
dineshkumar

I'm not sure if what you're asking is possible, but perhaps this alternate design will work for your users.
Have two additional columns. Each column will have it's own hyperlink, one column for 'By Service' one for 'By Site'. It takes up more room on the page, but from the user's perspective, they only need to click once to get to the report they want, rather than click the company, then select which report they want to see.
Just a thought...

Similar Messages

  • Open multiple reports in WEBI Through URL

    Hi All,
    We are working on BO XI R3.1 WebI reports. We are trying to open multiple reportparts using opendocument url. We tested with juts one report part and it worked fine, but so far, the attempt for multiple report parts using same url has never succeeded. Can anyone suggest a way to achieve this?
    Thanks in advance.

    Hello ,,
    Could you please share the full scenario...
    How exactly you are expecting. with open document syntax.
    Thanks
    Santhu.....

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • How to open multiple report windows on button click without losing session?

    Hi,
    JDev : 11.1.1.2.0
    I am trying to open multiple discoverer plus report windows using my ADF application.
    My requirement is that user has to select multiple reports from the screen and by clicking on submit button all the reports should be opened in different windows.
    1) Below link provided me the the first solution but I can't go with it because my page is jsff and in jsff it doesn't support form tag.
    http://andrejusb.blogspot.com/2007/07/opening-report-window-in-adf-faces.html
    2) RichGoButton also provide targetFrame property but there is not action property in it so I can't call backing bean method with RichGoButton
    3) I have tried to open report windows using javascript window.open with ExtendedRenderKitService but on discoverer side it giving error message that Discoverer Plus cannot attach same session to multiple request.
    4) I have created one jsp page in the same folder where my jsff is kept in my ADF application and on submit button click I have launch this jsp page using afConetxt.launchDialog and in jsp scriplet I have written response.sendRedirect to report url but here all report are getting open properly to seperate windwos but my ADF application session is getting timeout so after clicking on submit button it will automatically goes to login page it cann't stay with the current page.
    Hoe you have understnad my problem and please provide me if you know any other solution aprart from above mentioned 4 solutions
    Regards,
    DevD

    sURL is query parameter value that I want to pass on jsp page. It is used to set some value on jsp page.
    If this is not a right approach then let me know how to pass the parameter in jsp page.

  • Open multiples reports for the same document

    Hi,
       I created 3 PLD reports for PO, I am wondering in SDK, how can I open all 3 PLD reports when I click on the preview button for a PO document?
       Thanks
    Chris

    Hi Chris,
    You cannot. I use Crystal Reports when I need to open more then one document layout at the same time.
    Regards,
    Vítor Vieira

  • CRVS2010 - open multiple rpts at the same time, like sheets in a xls file ?

    Hi all,
    is that possible to open multiple reports at the same time, like sheets in a excell file ?
    Is that possible create tabs beside the MainReport tab ? or include reports in the Group Tree ? how can I do it ?
    The application is in asp.net with VS2010 and CR2010.
    The reports used to be in excell with three sheets and now we are migrating them to crystal reports, how can I create the report with those three sheets ?
    thanks !
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Aug 31, 2010 7:33 AM

    I'll make the suggestion to the Program Management group.
    You may want to do a post to the [Crystal Reports Design|SAP Crystal Reports; forum and ask them how they's fake that sort of a requirement. E.g.; there may be some way to make this report look the way you want, but it will be best to ask the experts. Don't mention CRVS2010 as they don't support it and most likely you will not get an answer.
    Ludek

  • Pull Multiple reports for smartview in excel

    Hello,
    I am very new at VBA and smartview. I was hoping if someone knows of a way to open multiple reports from smartview into excel using VBA. I believe smartview itself does not allow to open multiple reports because of POV settings. Thanks for the help in advance.

    Thank you both Matt and Glenn,
    I am talking about automating a way to pull multiple financial reports in excel. At first I was running into an issue where some of my reports that I pulled from Reporting and anlysis framework, they would not open in the proper excel workbook and it would break the link so I would not be able to refresh. Next time I would have to reopen all the reports, that's why I was hoping there would be a VBA code to automated pulling multiple financial reports (not grids). I hope I am making sense. Thanks for the help.

  • Reset Cleared Documents and Vendor Open Items Report FBL1N

    Hi all,
    I have following scenario:
    - In last month, we had 2 documents (invoice and payment) cleared against each other. We created open items report as well as open items correspondence sent to Vendor. Obviously, the docs were not included in report.
    - In this month, we have reset and reverse clearing document of the documents. We create report again with the open key date as in last month. It should not include the 2 docs but it did with whichever key date we chose.
    Is there any setting that open item report doesn't include cleared item at the key date when we run report for previous month?
    Thanks and Regards,
    Dau

    Hi Dau,
    If i understand you correctly then you posted and paid invoice in Jan 2012 and generated the open line item report for Jan which correctly did not include this cleared invoice.
    Now in Feb 2012 you reset and reversed this payment document.
    The issue is when you execute the report FBL1N again then you get the open line item for this invoice correct. Please confirm what is the open item key date that you are using here for generating this report
    If you keep it 31.01.2012 then definetly this invoice should not appear in the report but if you keep that 29.12.2012 then this line item would for sure appear.
    The importance of key date is to limit the report to certain date. The system selects all items posted up to and including the specified key date and open for this period.
    so I think your issue is with the key date.
    Hope this helps you.
    Regards,
    Prasad

  • Open multiple occurances of the same document

    We are running reader 9.1.1 and need to be able to open multipe occurances of the same document. Yes, I know how to open the same document multiple time with <window><new window> the problem with this is editing a form in one window changes it in all windows. I need to ope independant occurances or the same form. Can this be done? The /n switch will not work for this either! Hope somebody has an idea.

    Simple solution, yes. Unfortunatly its not that simple... Having multiple copies of the same document posses issues when updating the document. This doucument is updated almost daily and is distibuted to many users across a network... Having to have users open multiple copies of the document creates many logistical and use issues.

  • Having trouble opening Crystal Report files from a document library

    I am trying to open Crystal Report .rpt files from a document library in either the native, client Crystal Reports software or in Crystal Reports Viewer. When I add the Crystal Report files to a document library and attempt to open them SharePoint displays
    a prompt asking me to save the file locally instead of opening the file. I have done a lot of research online and found several sites discussing similar scenarios, however, I have not been able to get these solutions to work. Here is a short list of sites
    I have referenced for possible solutions:
    http://naadydev.blogspot.com/2013/03/crystal-report-viewer-sharepoint-2010.html?showComment=1383339860122
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/52aabf2d-10dc-424c-bd50-124fc972a9b9/crystal-report-viewer-integration-with-sharepoint-2010?forum=sharepointgeneralprevious
    http://www.codeproject.com/Articles/42731/Crystal-Reports-WebPart-for-SharePoint
    Here are the steps I have done to try to get the .rpt files to open:
    Added the Crystal Report extension .rpt as a MIME type
    Installed the Visual Studio 2012 Crystal Reports Viewer toolbar
    Installed the 64-bit Crystal Reports runtime
    I have also created a solution file based off the Code Project site which partially works, but not quite right. In this project I have created a document library called "Crystal Reports rpt Files" and deployed the solution file to a site. When
    I open the Web Part Maintenance Toolbar I can see the selected .rpt file in the drop-down, but no Crystal Report file is displayed on the page itself.
    I am not sure what I am doing wrong. Does anyone have experience working with Crystal Reports and SharePoint 2013 (or earlier versions) that could lend some advice?
    Thank you,
    Alex

    We are having the exact same issue, has anyone resolved this yet?

  • Opening multiple document in single instance (window)

    Someone here mentioned this: "Acrobat 9 no longer supports opening multiple documents in the same window."
    This is disappointing.. does anyone know the workaround / hack?
    Running Acrobat 9 Standard.
    Thanks,
    Devin

    Unfortunately yes you're correct. The cause was due to no MDI support, which Adobe removed starting at v9.
    Link: http://blogs.adobe.com/acrobat/2008/09/mdi_vs_sdi_in_acrobat.html
    If I find a workaround worth mentioning, I'll post it here later.
    Thanks.

  • Document numbering issue - Incorrect documents opening from Reports

    We follow repetitive document numbering with different series name.
    During a customised report generation, the details displayed in the report are correct, but when I click on the document number from the report, it opens a different document with the same doc number but a different series name.
    I understand that this is due to the repeatitive numbering used, but is there any method by which the system opens exact document as displayed in the report.
    Version - SBO 2005 B , PL 42
    thanks in advance,
    Avinash.

    You may try to add DocEntry to see:
    SELECT T1.SeriesName, T0.DocNum, T0.DocEntry,T0.DocDate, T0.CardCode, T0.CardName, T0.DocTotal,T0.Project, T0.DocStatus FROM dbo.ORDR T0 INNER JOIN dbo.NNM1 T1 ON T0.Series = T1.Series WHERE T0.DocStatus ='O' ORDER BY T0.DocDate
    When you click on DocEntry (Internal Key), it should work.
    Thanks,
    Gordon

  • Opening multiple documents

    I'm experiencing a strange and intermittent problem when I try to open multiple documents from the Finder. If I select a number of items and try to open them all at once, sometimes only some of the documents open.
    Just now, I attempted to open 15 documents in Dreamweaver and only nine opened. The only commonality I could find is the modification date: the ones that opened were all modified yesterday at 4:02pm or earlier, while the six that didn't open were modified 4:08 or later. When I select any or all of those six, only the most-recently modified opens. Same behavior regardless of how I try to open them: multiple-select and (1) double-click, (2) drag all to Dock icon, (3) right-click and Open/Open with...
    When it happens, I usually work around it by using the applications Open dialog and selecting the items there. It's been happening for weeks/months (possibly since upgrading to 10.6.4?), and I've just lived with it, but it's becoming frustrating; for instance, if I want to do a batch automated task in Photoshop or a search-and-replace in Dreamweaver in all open documents...only to discover that not all of my documents were open.
    Thanks in advance.

    Does this behavior occur with Mac applications, or only Adobe apps?
    -mj

  • Indesign CS6 crashes when opening multiple documents

    Only recently, Indesign has started crashing when I open multiple documents.
    Nothing new has been installed on the computer as far as I know.
    I've tried trashing the preferences, accessing the files locally, wiping the computer and diaognosing the iMac hardware... without success.
    It's slightly more stable, as in it doesn't crash everytime now but instead more randomly than before.
    Program has never crashed with one document open.
    Interesting thing is if several files are open, then I close then individually, then close down fine. If I try to quit and close all of them in one go, Indesign crashes.
    Also occasionally has problems displaying links, eg. displays a grey box instead of an eps file.
    I have several crash log files in case someone is able to decipher them.

    1. Is there any reason to use eps? Avoid it use AI, PSD or PDF instead.
    2. Are all used fonts ok? What kind of fonts du you use?
    3. Which Mac OS X do you use?
    Does it crash with alwayst the same files?
    What does the file history tell you? Hold down the command key and got to InDesign > About InDesign… Does it tell you somewhat more specific, like missing plugins, severly damaged files and restored files, when (in which version) the files have been created first (helps often to export to IDML and open this again and save it as INDD and work with the new file.), has the problematic file been converted from another application (Quark Xpress or PageMaker), etc.

  • When you open multiple documents, what's the rhyme and reason for the order the tabs are arranged?

    Hi, a student had a question and I honestly never thought about this: when you open multiple documents in Photoshop CS4, what's the rhyme and reason behind the order they're arranged in (left to right?). Sometimes they're in one order and sometimes they're in another, and it doesn't always correspond with the filenames or the order in which they were selected.
    Thanks, hope someone can enlighten us. It's probably really obvious, but... !

    My student says that's not exactly what she was asking. What she meant was, is the arrangement of multiple tabbed documents open within Photoshop (which one is furthest left, which one comes next to it, which one is furthest right etc) dependent on something? In what order they were opened, alphabetical, date created or what?

Maybe you are looking for

  • How to print a specific page from a given PDF document, using command line, please?

    Hello, I need your advise, please. My customer requires to print a specfic page from a pdf document they receive, using command line or 3rd party solution. Anything you can advise, please? I have seen AcroRD32.exe options, but can only print the whol

  • Error in invoice creation using BAPI BAPI_INCOMINGINVOICE_CREATE

    Hi All, I am using BAPI_INCOMINGINVOICE_CREATE to create an invoice using below data, wa_header-invoice_ind = 'X'. wa_header-doc_date = sy-datum.   "Enter the document date wa_header-pstng_date = sy-datum. "Enter the posting date wa_header-ref_doc_no

  • JNDI Lookup in loca JVM

    I am using the following properties to get an InitialContext to lookup an EJB: INITIAL_CONTEXT_FACTORY: com.sun.jndi.cosnaming.CNCtxFactory PROVIDER_URL: iiop://localhost:3700 The EJBs are hosted on Sun AS8.1. If I use these properties from an extern

  • Wpad proxy problem with ie10 and 11

    Hi, We have been using a wpad.dat file for a number of years now to deploy our proxy settings. We currently have ie9 on all machines and the wpad.dat file works. When we upgrade to ie10 or 11 the wpad settings do not work and we have to manually set

  • InDesign CS3 Workflow Question for a Playbill?

    Hi guys, I am designing a playbill in InDesign CS3. The cover of the playbill is of a different stock than the interior pages. Should I create an InDesign book with the cover and the interior pages as a separate document, or keep them as one? The pag