Drill Down report in new window

Hi All,
i have report prompt ( Dashboard) and report . if i click on date column then it will display drill down report.
My issue is drill down report iis displaying in current window. if i click on return to previous screen button then prompt are refreshing. user was confusing which parameters he was selected.
I need solution like.
1) After coming back also prompts are should not refresh . it should display prompts which were user selected.
or
2) drill down report should display in other window. ( then user will close that window he can see his selected prompts)
how can achieve this one in OBIEE. please help me.
Thanks in advance for your time.

Couple things,
you can create primary interaction as Action Link and then in the action link menu you can select option for the new window (that I what I did)
Edit Action Links > More... > Edit Action > Options
For the values, you can use presentation variables and they will carry the values (your fields also have to be prompted, but I think you already have that).
Again this works for me just fine.
Hope this helps.

Similar Messages

  • Drill down reports for new GL

    Hi All
    I want to assign drill down report to my PCA (New GL)report painter report( GR52). Can any one suggest some reports for drill down functionality.
    Thanks

    Hello Experts
    This is solved. However, i am mentioning the solution here for further references
    Before downloading the drill down reports, we need to activate the business funciton "FIN_GL_CI_1" through T.Code SFW5
    Regards
    Anilkumar

  • Drill down reporting - add new field

    Hi experts,
                       we have created drill down reporting for vendor line item using FKI4. we need to add new characteristic  (new field - assignment column- zuonr) for form and reports.
    guide me.
    Regards,
    Ravi

    Hi
    For  columns  select  'key figure  with  characteristics'  .  There   give Key figure - balance c/f'  and  select  the  characteristic  from the   left side  list.
    Then  for  rows  select  ' characteristic'    and   again select  from  left  hand side list.
    You  define the  total  where required.   Save this  form .
    You can also   create  report in  GRR1  using the form created.
    I   am  sending   you  a document  in you  contact details.
    Thanks
    kamala

  • Customized drill-down report cannot go to line item level (FGI4 and FGI1)

    Hi Expert,
    I created a customized drill-down report using New GL features, as follows:
    FGI4 create form, with reference to form: 0SAPBLNCE-01
    FGI1 create report for the form created.
    After that I set some things like characteristic, variables, and output type.
    When I execute the report, the data shown cannot be drill-down to line item level:
    Goto > Line Item (this function is disabled).
    Kindly advise why I cannot goto line item level, where I copy from standard form: 0SAPBLNCE-01, which ha sthe features of drill-down to line item level.
    Thanks
    sbmel

    Hi sbmel,
    For calling up a line item report in a drill down report you need to make the below settins:-
    - You first have to generate the line item report with program RGRGENSI for your summary table.
    - Then assign the generated line item report to the summary report.
               Assiging the report is part of the 'Change drilldown report' function, which you reach by activating the characteristic selection field and then Extras -> Report assignment.
                In the dialog box that appears, choose the 'Other report type' function and insert the line item report generated earlier, as an ABAP report
    Regards,
    Gaurav
    Edited by: gka2707 on Jul 19, 2010 8:07 AM

  • New to Application Express - Drill down report question

    Good evening group. I'm new to this Application and DB but can't find quite the correct answer.
    QUESTION 1 - I have found and successfully used the "Drill down report example". However, I am only able to do it from a brand new application. That doesn't seem quite right though.
    QUESTION 2 - I dropped a column while cleaning/correcting my data but I can't seem to get rid of it from a couple of simple HTML reports. I can't find out how to remove the column (granted I am looking for the gui tool). I would use the "query source" under the "report attributes" tab but the lower section (I believe they are the joins) have me perplexed.
    Any thoughts, help would be greatly appreciated.
    -Dave

    Hi Dave,
    >> QUESTION 1 - I have found and successfully used the "Drill down report example". However, I am only able to do it from a brand new application. That doesn't seem quite right though.
    I'm not being a smart alec, but I don't see the question in this.
    >> QUESTION 2 - I dropped a column while cleaning/correcting my data but I can't seem to get rid of it from a couple of simple HTML reports. I can't find out how to remove the column (granted I am looking for the gui tool). I would use the "query source" under the "report attributes" tab but the lower section (I believe they are the joins) have me perplexed.
    For now, don't worry about the WHERE clause of the SQL query unless the column you dropped is in the WHERE clause as well. Beginning with SELECT and up until FROM in the query statement, if you see your column, remove it from there.
    If you post your query and the column to be removed, we can help further.
    Joel

  • Drill Down Report issues in VS 2010, CR viewer 12

    We are using VS 2010, Crystal Reports 12 with Crystal Viewer 12 control called from a C# programmed page frame.  Several Drill Down reports are developed with CR 12 service pack 1 and then deployed onto the server. 
    These Drill Down reports work great within the viewer.  But Two critical issues have been discovered,
    1.     With the drop down report, the next /last page buttons work on the main page, but it doesnu2019t work on any of the drill drop sections.
    2.     The print / export functions work on the main page.  Using the print / export functions from the Drilled down pages reverts back to the main page, not the drill down page that is being viewed.
    Has anyone else seen these issues and know of a fix.  Wondering if it might be something in the viewer settings within the .net or the version of viewer ?
    I have viewed the CR .Net API Reference but probably due to lack of .net knowledge, seems overwhelming  to me.
    Thanks

    Hello,
    Hope you can use this code to export report in pdf with the drill down options/nodes.
    CrystalDecisions.CrystalReports.Engine.ReportDocument rd = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
       /// Calling a sample report named Employee Sales.rpt with parameter
       rd.Load(Application.StartupPath + \\..\\..\\Employee Sales.rpt);
       rd.SetParameterValue("Login Name","Robert King");
       ISCDReportClientDocument rcd = rd.ReportClientDocument;
       ISCRPDFExportFormatOptions exportFormat = new PDFExportFormatOptionsClass();
       exportFormat.CreateBookmarksFromGroupTree = true;
       //Create an array of bytes of the report.
       PrintOutputController rasPrintOutputController;
       rasPrintOutputController = rcd.PrintOutputController;
       // Define the export format as PDF, and apply the PDF export options
       CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptions expOpts = new CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptionsClass();
       expOpts.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatPDF;
       expOpts.FormatOptions = exportFormat;
       // Use the PrintOutputController class to export the report based on the defined export options.
       ByteArray tempByteArray = rcd.PrintOutputController.ExportEx(expOpts);
       Byte[] byteStreamOutput = tempByteArray.ByteArray;
       // Create a new file(MyExportedReport) with the specified path, name, and file extension.
       FileStream fs = new FileStream("C:\\Windows\\Temp\\MyExportedReport.pdf", FileMode.Create, FileAccess.ReadWrite);
       // Stream the bytes from the exported report to the newly created file and close the file stream.
       int maxSize = byteStreamOutput.Length;
       fs.Write(byteStreamOutput, 0, maxSize);
       fs.Close();
       MessageBox.Show("Export is done in C:\\Windows\\Temp location");
    Thanks.

  • Drill down report in Portal

    Hi,
    We have integrated drill down reports in portal 6.0, when i got to the drill down reports after execution,after that i go to context menu -> go to -> perticular report, it is opening in new window. how can i open that in content area of the portal.
    Thanks
    Damodhar.

    HI!!!!
    Does anybody know how to integrate Drill-down Reports with EP 6.0 sp 18, the reports have been created using Report Painter, I have been lookin trough SDN but I haven´t find anything yet,
    I hope anybody can help me with this.
    Best Regards!!!
    Michele González

  • Unable to pass parameter from a hyperlink in drill down report

    Hi,
    I have created a drill down report.
    Master report has a column with hyperlink
    with url to call detail report.
    "http://webserver/dev60cgi/RWCGI60.EXE?item+the_prodid=200376"
    when i see the detail report i get the value of the_prodid parameter as null.
    any help will be highly appreciated.

    Thanks very much.
    It worked for me also.
    Now i am getting here something new
    i have wrriten a function which returs javascript and i this is being passed to report using before report trigger.
    I am using
    SRW.SET_BEFORE_REPORT_HTML(SRW.TEXT_ESCAPE,HTML_Text) tag to do this.
    When i run this report from report builder it works fine but when this is invoked from
    a report server i get a blank page and the window status says tranferrring data from webserver nothing comes up.
    Now when i remove the contents of before report trigger it works fine.
    my before report trigger conetenst are
    function Before_Report return boolean is
    HTML_Text VarChar2(32000);
    begin
    HTML_Text := '<html> ' &#0124; &#0124;chr(10)&#0124; &#0124;
    mainpagejavascript&#0124; &#0124;
    '<body dir=LTR bgcolor="#ffffff">'&#0124; &#0124;chr(10); -- for 6i the body tag dir=&Direction would work and be set at runtime
    SRW.SET_BEFORE_REPORT_HTML(SRW.TEXT_ESCAPE,HTML_Text);
    return (TRUE);
    end;
    mainpagejavascript function returns
    <script language="javascipt">
    function test()
    alert("I have a problem");
    </script>
    can anybody help me out in this.
    Thanks in advance
    shailesh
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Haithem Abdelkefi:
    Yes, the drill down works.
    We have a field with this Format Trigger.
    function F_EQP_GRPFormatTrigger return boolean is
    begin
    srw.set_hyperlink (:p_url| |'&report=INP-A2.2.rep&p_eqp_grp='| |:eqp| |'&desformat='| |:desformat);
    return (TRUE);
    end;
    Haithem<HR></BLOCKQUOTE>
    null

  • How to call a drill down report using hyperlink ?

    Can anyone please give an example to call a drill down report using hyper link in Reports 10g ?
    Regards
    Capri !!!

    Hi,
    I've been using this approach in a couple of reports and it works great with one problem. Even if I include the srw.set_hyperlink_attr('target=_new") it still launches the drill report in the current window. When the user hits the back button it doesn't take them back to the main report it takes them back to the reports/rwservlet? page. Can you see if there is anything I'm doing wrong...would be a really cool report if I could force it to open a new window.
    Here is what my code looks like:
    srw.set_hyperlink(:P_SERVER || 'dwn&report=transaction2_v8.rdf' ||
    '&PARAM_COMP_NUM=1' || '&PARAM_ACTV1=' || TRIM(:actvty_cd) || '&PARAM_ACTV2=&PARAM_ACTV3=&PARAM_ACTV4=&PARAM_ACTV5=&PARAM_ACTV6=' ||
    '&PARAM_START_DATE=&PARAM_END_DATE=' || '&PARAM_FY_NUM=' || vYear || '&PARAM_PERIOD=0' || '&PARAM_ACTVTY_GRP=%20' ||
    '&PARAM_LIST=%20' || '&PARAM_START_ACCT_CAT=' || TRIM(vCat) || '&PARAM_END_ACCT_CAT=' || trim(vCat2)|| '&PARAM_SYS_CODE=%20' ||
    '&PARAM_SRC_CODE=%20' || '&PARAM_DATA_TYPE_CD=P' || '&PARAM_ACT_STATUS=%20');
    SRW.SET_TEXT_COLOR('blue');
    srw.set_hyperlink_attrs('target=_new');
    Also I get different behavior if the user saves the PDF and opens the report through their pdf reader.
    Thanks for your help

  • How can I activate drill down report for planned line items please urgent?

    Hi Everyone,
    Please suggest me how can i activate drill down report for planned line items in internal orders. S_ALR_87012993. Please suggest me, I'll award full points. I am unable to do it in client system, which has already line items. I tried in my sys with new config it is working.
    Kind regards
    Arvey.

    Hi
    It is based on the reports attached in the Report Group - TCODE: GR53
    In the Report Group screen
    Press CONFIGURE – This is to attach any Drill Down reports.
    Press the “Insert Line” icon
    As is the screen may be used to insert a Report Writer report group. To add an ABAP, press “other report type”
    Double click on “ABAP Reports”
    Enter the name of the ABAP and ENTER
    <b>RCOPCA08                       Profit Center: Plan Line Items</b>
    VVR

  • Problem with Drill down reports demo

    Hi,
    Did somebody successfully installed the
    drill down demo. I am not able to get the results here getting some javascript error
    "object expected".
    I have created a schema,
    also the cgicmd.dat report variables
    attahced the rep_util file.
    I could see the invoices report and the product link displays
    javascript:opendetailwin('http:/myserver/dev60cgi/rwcgi60.exe?item+101863')
    when i clik on the above link i get object expected error.
    The Javascript on view source page looks like this
    <script language="JavaScript">
    <!--
    var detailwin = null;
    function opendetailwin(urltopen)
    detailwin = window.open(urltopen,"ItemDetails",
    "width=650,height=535,resizable=yes,status=no,menubar=no,scrollbars=yes,toolbar=no")
    detailwin.location.href=urltopen;
    // -->
    </SCRIPT>
    any help will be higly appreciated. Also is there any other way of implementing drill down reports on web.
    Thanks in advance,
    Shailesh

    Hello,
    Try making your hyperlink in the master report look like this:
    http://webserver/dev60cgi/rwcgi60.exe?detail+p_contactid=&<contact_id1>
    The &<column_name> reference in a hyperlink will tell Reports to substitute the current value of that column in the resultant string.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Calendar with Drill Down Report

    Hello,
    Everybody.
    I am new to Application Express.
    Please any one tell me step by step how to make calendar with drill down report.
    Waiting for valuable reply.
    Thanks
    Rahul

    Not sure if this is what you wanted, but I have links on a calendar, and when you click them, it branches to another page with details about the event.
    To do this, create a calendar region. The SQL statement should have at least 2 columns: The date of the "event", and the text to display as a link. You should also choose a primary key that you want to pass to the drill down report when the user clicks. Something like this:
    select hiredate date_scheduled,
              ename display_column,
              empno
       from empIn the calendar attributes of that region, there is a place to designate which column is the date, and which should be displayed. Go down a little further and set the column link. Put the page you want to show the drilldown report on, and set any variables you need to.
    Hopefully that helped. Its pretty simple once you play around with it - start simple and then once you get the hang of it, make it more complex.

  • FSI0 - Drill Down Reports for Account Balance Analysis

    Any orientation on this issue will be greatly appreciated.
    These are the steps I did to create a new Drill-Down Report for my customer.
    1. Created and modified a new Form based on the Form for the Financial Statement Analysis 0SAPBLNCE-04 (Periodic Actual vs Actual) using Transaction FSI4 (Create) and FSI5 (Change)
    2. Created and modified a new Report with reference to the Form I just created using transactions FSI1 (Create) and FSI2 (Change)
    3. I select "Expand: Completely" to see all Account Balances
    3. All the totals match between the Original Standard Report and the new report I just created.
    4. On both reports, when I select a Balance and then select the GOTO \ Line Items to get the list of documents I get the following results:
    ==> Most of the cases (I would say probably 80% of the cases) the Account Balance I selected matches with the Total of Line Items that is displayed when I do the GOTO \ Line Items
    ==> In some cases (just a few) the Account Balance does not match at all with the totals of Line Items that is displayed when I do the GOTO \ Line Items
    Can somebody explain why ? Shouldn't the totals match all the time since I am specifically selecting a balance to see all its line items? Where are the missing line items?
    Since these are just a few cases my customer is okay with it but he would like to hear a logic explanation why the Account Balance and its line items do not match on this report.

    Hello,
    There is a possibility that you have activate line item display for some of the accounts at a later stage. Meaning that earlier postings were not be shown for the earlier postings but only totals will be made available. Therefore, obviously there is bound to be difference between line item report and totals report.
    You need to identify which accounts are being changed with line item display at a later stage.
    In case if you forget to keep GL Line item display for an account, but the posting are already made the following steps you would required to get the line item display retrospectively.
    1. Note that you are NOT required to make the balance of that GL account to ZERO. Please do not confuse with Open Item Management.
    2. Put the check box line item display for the account in FS00. Make sure you are entering right company code.
    3. Block the account for posting in COA Segment and Company Code Segment in FS00
    4. Go to SA38 and run program RFSEPA01 (Give correct GL Account and Company Code)
    5. Now, remove the block you kept on the GL Account in FS00.
    This will reset the line item display retrospectively.
    Hope this will solve your problem.
    Regards,
    Ravi

  • How to get the back button if we to go the 2nd drill down report??

    Hi,
    I have a drill down report for the main report. And have detailed drill down as in 1st report>2nd report>3rd report.
    But once i goto drill down, the return button is there which directs to main report i.e. 2>1,
    But once i goto 3rd, i do not get the back button so that i can access reports in 3>2>1, instead its going directly to 1st from 3rd.
    hope i have made the point clear.
    Someone suggest me how do i get the back button??
    Thanks!!

    use the below code in Narrative view
    <script&gt;
    function goBack()
    window.history.back()
    </script&gt;
    <input type="button" value="Back" onclick="goBack()"&gt;
    If helps mark
    Edited by: Srini VEERAVALLI on Feb 13, 2013 12:08 AM

  • Drill Down Report using Crystal reports in eclipse and jspviewer

    Hi
    I want to understand how to write a drill down report since I have a requirement for my project, so I tried to run the sample drill down.rpt that is available with Crystal Reports 2008 Complete Reference book by George Peck.
    I can see the results correctly( i.e. can drill down) in the preview tab . Since I am working inside the eclipse, the way I run the reports is first  "Create report viewer JSP" by right clicking the report and have a url mapping to this jsp. I am running the reports from a hyperlink that maps to the url which will launch the jsp.
    the jsp is:-
    <%@ page contentType="text/html; charset=UTF-8" pageEncoding="ISO-8859-1" %><%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer" %><crviewer:viewer reportSourceType="reportingComponent" viewerName="Drill Down-viewer" reportSourceVar="Drill Down" isOwnPage="true" allowDrillDown="true">
         <crviewer:report reportName="reports/Drill Down.rpt" />
    </crviewer:viewer>
    The one that was created by  "Create report viewer JSP" did not had "allowDrillDown" attribute at all .But I added it since it isnt working.
    So when I launch my web app and click on the link to run the report, I get the report results but only to the summary level. When I double click the summary level I get a 404 error page.
    Can please anyone suggest what is going on.
    Thanks
    poonam

    Ok. So, you added the report to the project. Now we have to add the CR assemblies to the project, add the viewer (if need be) and fire it off. Simplest code would be:
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            CrystalReportViewer1.ReportSource = ("path to report")
        End Sub
    In this case you are using the viewer SDK to runt he report. The report will prompt for any logon parameters - but you can code these also. You can load the report via the engine as bellow. Again, the report will prompt. I prefer to use the engine as it is way more "extensible"...
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            crReportDocument.Load("path to report")
            'Bind the report to the viewer
            CrystalReportViewer1.ReportSource = crReportDocument
        End Sub
    If you have a report added to the project (strongly typed) the code would be:
    CrystalReportViewer1.ReportSource = New myReport()
    For more details, I'd recommend looking at the sample app vbnet_win_simplepreviewreport.zip available from the following location:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    The developer help files are here:
    [SAP Crystal Reports .NET SDK Developer Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip]
    [SAP Crystal Reports .NET API Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip]
    - Ludek

Maybe you are looking for

  • Commision Problem

    Hi, On cash sales we will give 1 % Commision to commission Agent. I am created a forwarding agent, & assigned incomplitionLog at the sales document header, so that during every cash sales transaction user will enter the respective Agent in the partne

  • FCE 4 and RP250

    Hello, I just bought Final Cut Express 4 for my Powerbook G4. I am having one problem though. When I start up FCE 4, it says "Loading Audio Filters... RP250" and crashes. I have a Digitech RP250 that I do use on this mac. Is there any way to make FCE

  • Problem in bios update lenovo g580(20150)

    i installed windows 8 and install drivers and download bios update from lenovo support . After run bios update , my laptop restarting automatically . After restart bios nor running and try to booting from network by IPV6 and IPV4 , and after seconds

  • Where do I enter data that would make the website relevant during search

    Guys and Gals where in this code do I add meta data information that would help my search engine results and I know some may not find this information important but to me it is. I know some thing that it's pointless but I would like to know for refer

  • ABAP function module TH_POP_UP message

    Hi experts, I created a report that call function module TH_POPUP to users from a role. It works perfectly fine BUT the pop-up present a red cross, that might be confusing for users because a pop-up is sent if the job involved is successful or not. S