Hide drill-down option in Discoverer Plus

Hi,
Is there anyway to hide the drill down (Analyze link) option for a graph in Discoverer Report?
Thanks,

Karthik,
We just wrote an entire article on this:
http://www.everythingxcelsius.com/2008/07/using-xcelsius-2008-map-drill-down-and.html
Hope this helps!
Xcelsius Gurus
http://www.everythingxcelsius.com
"Xcelsius Gurus share templates, tips, reviews, tricks and much more!"

Similar Messages

  • Discoverer Viewer - Drill down option

    Dear all
    I created a report in discoverer desktop, with drill down option for financial information.It works fine in Disco Desktop. All the drill down options are working fine as well. But the same report when run in disco viewer, it has got an option for drilling down further, then another option for collapse(with the blue button) - to view the summary value.
    When the collapse option is chosen, the blue color button disappears in Viewer and wouldnt know how to drill down back without reloging into the application.
    Could you please help me how to solve this problem, as I need to share this report with users who has viewer access only?We are using 9i at the moment.
    Thanks.

    Hi Russ
    I have heard folks having awful issues with IE 7. It seems to mess up everything Oracle. Sounds like Oracle and Microsoft have some hurdles to cross. For now I would advise everyone to either stay on IE 6 or use another browswer like Firefox.
    To answer the specific question posted here, it is possible that the user has hit one of the well known Discoverer bugs wherein Discoverer Viewer cannot properly execute workbooks created in Desktop. There are fixes and one-off patches available for this in MetaLink but these patches all require a password to download them. I would advise the raising of a service request and in the request spefically ask if there is a one-off patch that will fix this.
    Best wishes for now
    Michael

  • Hide drill down OK option

    Hi ,
    I have created a report with hide drill down ok at group level.
    Is there a way in crystal to expand the group and see results. I can only see if i double click a record on my preview page , a new page opens up with details.
    Is there any option in CR X! to click on + icon and expand to view the details?
    Kindly suggest

    No such option in Crystal alone, but at least one of the 3rd-party Crystal Reports viewers (see list at http://www.kenhamady.com/bookmarks.html) provides In-Place Drill Down functionality.  For a video demo, see: [http://www.milletsoftware.com/Download/DLV_InPlace_DrillDown.wmv|http://www.milletsoftware.com/Download/DLV_InPlace_DrillDown.wmv]

  • [Forum FAQ] How to use parameter to control the Expand/Collapse drill-down options in SSRS report?

    In SQL Server Reporting Services (SSRS), drill-down is an action we can apply to any report item to hide and show other report items. They all are ways that we can organize and display data to help our users understand our report better. In this article,
    we are talking about how to use parameter to control the Expand/Collapse drill-down options in SSRS report.
    Consider that the report has a dataset (dsSales) with following fields: SalesTerritoryGroup, SalesTerritoryCountry, CalendarYear, SalesAmount.
    1. The report has the following group settings:
    Parent Group: SalesTerritoryGroup
     Child Group: SalesTerritoryCountry
      Child Group: CalendarYear
       Details: SalesAmount
    2. Add three parameters in the report:
    GroupExpand:
    Available Values: “Specify values”
    Label: Yes           Value: Yes
    Label: No            Value: No
    Default Values: “Specify values”
    Value: Yes
    CountryExpand:
    Available Values: “Specify values”
    Label: Yes           Value: =IIF(Parameters!GroupExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No","No","Yes")
    YearExpand:
    Available Values: “Specify values”
    Label: Yes          
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No","No","Yes")
    3. Right click SalesTerritoryCountry icon in the Row Groups dialog box, select Group Properties.
    4. Click Visibility in the left pane. Select “Show or hide based on an expression” and type with following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", False, True)
    Select “Display can be toggled by this report item” option, and select “SalesTerritoryGroup” in the drop down list.
    5. Use the same method setting CalendarYear, (Details) drill-down with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", False, True)
    =IIF(Parameters!YearExpand.Value="Yes", False, True)
    6. Click SalesTerritoryGroup text box in the tablix. Select InitialToggleState property in the Properties dialog box, and type following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", True, False)
    7. Use the same method setting SalesTerritoryCountry, CalendarYear text box with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", True, False)
    =IIF(Parameters!YearExpand.Value="Yes", True, False)
    After that, when we preview the report, we can use these three parameters to expand/collapse drill-down.
    Note:
    In our test, we may meet following issue. We can check the expression of InitialToggleState property to troubleshooting the issue.
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012

    In SQL Server Reporting Services (SSRS), drill-down is an action we can apply to any report item to hide and show other report items. They all are ways that we can organize and display data to help our users understand our report better. In this article,
    we are talking about how to use parameter to control the Expand/Collapse drill-down options in SSRS report.
    Consider that the report has a dataset (dsSales) with following fields: SalesTerritoryGroup, SalesTerritoryCountry, CalendarYear, SalesAmount.
    1. The report has the following group settings:
    Parent Group: SalesTerritoryGroup
     Child Group: SalesTerritoryCountry
      Child Group: CalendarYear
       Details: SalesAmount
    2. Add three parameters in the report:
    GroupExpand:
    Available Values: “Specify values”
    Label: Yes           Value: Yes
    Label: No            Value: No
    Default Values: “Specify values”
    Value: Yes
    CountryExpand:
    Available Values: “Specify values”
    Label: Yes           Value: =IIF(Parameters!GroupExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No","No","Yes")
    YearExpand:
    Available Values: “Specify values”
    Label: Yes          
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No",Nothing,"Yes")
    Label: No            Value: No
    Default Values: “Specify values”
    Value: =IIF(Parameters!GroupExpand.Value="No" or Parameters!CountryExpand.Value="No","No","Yes")
    3. Right click SalesTerritoryCountry icon in the Row Groups dialog box, select Group Properties.
    4. Click Visibility in the left pane. Select “Show or hide based on an expression” and type with following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", False, True)
    Select “Display can be toggled by this report item” option, and select “SalesTerritoryGroup” in the drop down list.
    5. Use the same method setting CalendarYear, (Details) drill-down with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", False, True)
    =IIF(Parameters!YearExpand.Value="Yes", False, True)
    6. Click SalesTerritoryGroup text box in the tablix. Select InitialToggleState property in the Properties dialog box, and type following expression:
    =IIF(Parameters!GroupExpand.Value="Yes", True, False)
    7. Use the same method setting SalesTerritoryCountry, CalendarYear text box with following expression:
    =IIF(Parameters!CountryExpand.Value="Yes", True, False)
    =IIF(Parameters!YearExpand.Value="Yes", True, False)
    After that, when we preview the report, we can use these three parameters to expand/collapse drill-down.
    Note:
    In our test, we may meet following issue. We can check the expression of InitialToggleState property to troubleshooting the issue.
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012

  • How to use drill down option in Crystal Report

    Dear all,
            I want to know how to use drill down option in Crystal report 2008.  In below i have explained my screnario
    For example
       My scenario is.  In crystal report I have Purchase order like PO101,PO102.  Each purchase order have 5 line items.  If i drill down each purchase order it should display line item in crystal report. 
    Regards,
    Baskaran.

    hi,
    Create a Group on 'Purchase order'.
    Group Expert -> Select the Purchase Order and Click the arrow button such that it appears right side. Click ok.
    GH1 is inserted.
    Your detail section should include 'Line items' fields.
    Right Click 'Detail' section on left hand side,  Click 'Hide (Drill down Ok)'.
    Now you will see only 'Purchase order's in Group Headers.
    Now when you click on a particular order, you will see respective line items.
    Regards,
    Vamsee

  • Hide (Drill-Down OK)

    Hi,
    Im using Crystal Reports XI.
    I have used 2 groups in my report and I have checked the option "Hide Drill-Down OK" under Section Expert for Group 2 and the Details Sections.
    On drilldown, I get that particular Heading and the Drilled data in a new Tab.
    But I want them to be displayed in the same page under the same heading itself and no need in a seperate page.
    Eg:
    Group1
    Group2 (hiden)
    Details  (hiden)
    Continent  -
    Group1   On further drill dwon i'll get
    Continent
      Mercury
      Venus
      Earth     -
    On drill down (Group2) Earth   I get 
      Mars
    Continent
      Earth
          Africa
          Europe
    But I want it them as
    Continent
       Mercury
       Venus
        Earth
             Africa
             Europe
        Mars
    Is there asny possibilty of getting such output...
    Please suggest..
    Thank you
    Eswari

    You cannot get the drilldown data in same page. When you drilldown it will be opened in a separate tab, this is by design.
    Regards,
    Raghavendra

  • Drill Down report in Discoverer

    Hi All,
    i have to create a Drill Down report in Discoverer and i am not aware of it at all.
    If anyone can please provide me with some pointers on how to create a Drill Down report it would be of great help.
    Regards,
    SK

    Hi sk,
    Go through this link,you would learn how to drill down and the concepts
    [http://www.comp.hkbu.edu.hk/docs/o/dl/bi/B10272_01/4pivdrl.htm#1012030]
    Hope it answers your question.Award points.
    Best Wishes,
    Kranthi.

  • GR Document number & posting date in drill down option? (Reporting)

    Dear Experts,
                          As im new to reporting,i had a requirement from my client..the question is
    This is with regards to report Order Values on Posting Date (0PUR_C01_Q00021) 
    Can you add GR Document number & posting date in drill down option?
    i guess if i keep both of the in free characteristic,it will be the result,please suggest me on this
    Thanks & Regards,
    Srikant

    Dear Experts,
                            My Client requirement is he want GR Document number and GR Positing Date in the drill down option,im not able to find them in the query designer level. the query is under the cube 0PUR_C01. any suggestions will be a great help..
    Thanks and Regards,
    Srikanth

  • Addition in drill down option in report RMCE0200 for transaction MC$4

    Hello Gurus ,
    I am working on a requirement assciated with report RMCE0200 (Transaction MC$4). This a standard SAP report. After execution of report when we go to Switch Drilldown option, it gives, couple of standard SAP drilldown options like drilldown by Material Group, Material, Plant, Purchase Organization, Vendor, Vendor Country, Period.
    User wants one more additional drill down option of VBUND field (Trading partner) in this standard list.
    How can I add this additional option ? Is there a configuration somewhere or I have to copy the program RMCE0200 and Transaction MC$4 in Z program and then do modificiations ?
    Please help as I have not much worked on reporting.
    Regards,
    Rajesh.
    Edited by: Rajesh Thomas on Jan 31, 2008 2:13 AM

    Any inputs will be appreciated...

  • Drill down option availiable in FR

    Hi All,
    Drill down options is available in financial reportion or not? If possibles means, how to do the drill option in FR?
    Thanks,
    PC

    Hi,
    It depends what you mean by drill down, you can't yet drill to other sources (maybe not true if count in Essbase hybrid data) though you can use expansion, so if you click on a member it will retrieve and display say its children. Read more here
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Disable drill down option

    Hi! Can somebody tell me why I have disable the drill down options in all my charts???
    I´m using Xcelsius 2008, fix pack 1
    Thanks!

    Hi, Jessica Ordoz
    You want to say that Your Drill Down Option is Disable for all Charts if i understand you right it not allows you to enable Drill Down.
    In Fact when you Place a Chart you will find this option disable but it will automatically let you Enable it when you select Data Range for this Char.
    Please Reply if not able to Do that.
    Kind Regards,
    Faisal

  • Default Drill Down Options

    Anyone know if there is a way to set the default drill down option in a report to "Expand by Inserting New Rows"?  I know I can save a template with that option, but I'd like to set the BPC global default that way.
    Thanks in advance,
    Paul

    Hi, you can try to set the Drill Down Options using the code below:
    Sub ChangeWorkbookOptions()
    '    If an error occurs it is necessary to first add the parameter name
    On Error GoTo EXPOPTIONS_NameError
        Application.Names("EV__EXPOPTIONS__").Value = 0 ' use the parameters value 0 or 1
        Exit Sub
    EXPOPTIONS_NameError:
        Application.Names.Add Name:="EV__EXPOPTIONS__", RefersTo:=16, MacroType:=-4142, RefersToLocal:=16
        Resume
        Exit Sub
    End Sub
    ' EV__EXPOPTIONS__
    '   The drill-down options control member expansion behavior in the active spreadsheet.
    '   0: (Expand by Overwriting Rows) - The expanded members are displayed in the rows below the expanded member, clearing existing members as needed - normal
    '   1: (Expand by Inserting Rows) u2013 Any rows below the expanded member shift down, and new rows are inserted to accommodate the newly displayed members - 1
    Regards,
    Nakamura

  • Drill Down Options in Planning & HFM

    Hi All,
    What are the drill downs option available in Hyperion Planning & Financial Reporting.
    Regards,
    PC
    Edited by: dwhpc on Jul 23, 2009 10:31 AM

    Hi,
    In planning V11 you have the option to drillback from forms to FDM.
    Other than that there are not many options, you can write custom javascript to pass details from a form into a web page that could drill down on data.
    It is possible to use to EIS/Essbase studio to use drillback with essbase.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Drill down option with button

    Hi,
            We have requirement for drill down option ,when i click on the button.
              I have entity dimension in the report as rows,when i click on drill down button, the entity should show children of the parent in the report using VBA or any work around.
    Entity "abc" has b,e,f .. as children.
    In current report
    entity
    time
    abc
    789
    when i Click on "drill down"button, the entity dimension member "abc" should show the children of (b,e,f....), as shown below
    entity
    time
    b
    1
    e
    2
    f
    3
    when I click on "back" button,
    entity
    time
    abc
    789
    Please let me know , how to achieve this functionality in the report using VBA or any work around.
    Thanks in advance

    Hi Vadim,
                   Thanks for the reply, we are actually using the EPMCONTEXTMEMER() for selecting the entity value , after selecting the entity if I do the drill down with the entity values in the report , the entity values are not in relation with the EPMCONTEXTMEMBER() , so how to deal with this situation,Please suggest here.

  • Hide Drill down  button in CR 8.8 when Print out

    Hi everyone!
    I design template by Crystal report for SAP 8.8 and use drill down function for this template. It work fine, but when i print out on papar, i don't want to print this button.
    How can i do this!
    Thanks!

    HIde that button by right click on buttompropertiessuppress--
    create formula....
    WhilePrinting Records
    else
    Thanks,
    neetu

Maybe you are looking for

  • Filtering a range with two conditions and totalling the filtered set

    I have got to : =SUMIF(LOOKUP(1, 1::K2:K79,  1::L2:L79), "=✓", 1::I2:I79) The error message is "SUMIF requires that all range arguments are the same size". My understanding is that : LOOKUP(1, 1::K2:k79, 1::L2:l79) will return a set of values filtere

  • DI installation on NW04S

    Dear Gurus, i have installed Central system on NW04S with components 1. Engine - AS ABAP and AS JAVA 2. PI(XI) 3. EP(PortalKMGuided Procedure-CAF+Visual Composer ) 4. BI(Business Intelligence) 5. BI Java Components Server is running fine. But i dont

  • In the DTN only one node Open

    Hi I am working on portal SP14. I wan't that the DTN will show only one Open folder (node) at a time. Meaning, when a user presses on a folder (node) in the DTN- This folder (node) will open and  other opened Folder (node) will be closed automaticall

  • Stop generating the IDOC, soap-xi-idoc

    Dear SDN, I have a interface SOAP(HTTP) -> XI -> R/3. In this interface, 3rd party sending 4 fields and are getting updated in R/3. Now, I need to change in this interface. There are 4 fields in sender side and one field is like (PersonNumber)primary

  • Sort list reverse order

    I want to sort a list of files in reverse order e.g.  oldest to newest instead of newest to oldest I seems the ony options are date, name etc.