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...

Similar Messages

  • 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

  • Drill down in webi report

    Hi,
    Is there any way to display the drill down in webi report.  For example:
    YearQuarterMonth--Week.......
    if the drill the Year option I can able to see all Quarter level measures and if I drill down further I can get into Month level measures and Week level and so on .
    But my question is When I drill the Year to Quarter...I want it to display both Year and Quarter and If I drill down further
    I want all the measures related to Year ,Quarter, Month and so on
    Basically want I need is a tree level hierarchy......Could any one plz help me what all changes I need to make in order to get a detailed report.
    Thanks
    Sushma
    Edited by: Sushma Reddy on Feb 9, 2010 9:44 PM

    Hi,
    Try to create a Class e.g Time in universe and objects to that class as year, quarter,month as
    Year Object -> data type -> D/N
    select To_date('sysdate','YYYY) as year from dual
    Month object-> data type -> D/N
    select to_date)'sysdate','MM') as month from dual;
    Quarter -> data type -> D/N
    case when @select(Time/Month) in (1,2,3) then q1
             when @select(Time/Month) in (4,5,6) then q2
              when @select(Time/Month) in (7,8,9) then q4
               when @select(Time/Month) in (10,11,12) then q4
    endcase
    Then create a hierarch in tools -> hiearchy ->custom hierarchy and add the above class there then in any report (Deski/WebI)
    you will get the above hierarchy and use it according to your requirement.
    Cheers,
    Suresh Aluri.

  • [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

  • Not able to drill down S_ALR_87013558 in reports

    Hello Experts,
    I am in strange situation where in I am not able to drill down my budget report S_ALR_87013558 in my development client. But it is working fine in production client.
    What could be the reason.?
    Please suggest.
    Thanks,
    Kumar Srinivasan

    Hi Kumar,
    Follow below steps in sequence.
    1. Please execute CJE2.
    2. Double Click on report 12KST1A. Message will come "You are changing an SAP delivery object". Press the tick mark.
    3. On Output Type tab, you must have clicked on radio button "Graphical Report Output". Please change the radio button classical drilldown and check "Available on Selection Screen" at the buttom.
    4. Save it.
    Check your report again and you will have an option there.
    Regards,
    Amit

  • 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

  • Customise the drill down in xl-reporter

    Hi Dear;
    in xl-reporter, i can enable the drill down option in the report.
    1- how can i customize the columns that i want to show?
    2- how many drill down level can i setup?
    best regards;

    Currently you can't customize the Drill Down in XLR as it is based upon the syntax of the report.   You can use another product called Drill Anywhere to do this function and it will drilldown and give the use an Excel spreadsheet of the Drill information.   It also allows drilling on the report when not connected to XLR.
    http://www.xlreporter.com/products/modules06.htm
    Jim

  • PIE Chart Drill down in bex report

    Hi Friends,
    In my bex report i have pie chart for year 2008.
    Shall I drill down on this report means if  i click on one part of the pie chart will i go to another report or another pie chart.
    Can any one pls tell me is it possible .
    Thanks & Regards,
    Ramnaresh.
    Edited by: ramnaresh porana on Dec 1, 2008 6:35 AM

    Hi ,
    Thanks for reply.
    how it is possible from context menu of the pie chart , i have seen the context menu of the pie chart but i did not get any related option for this one.
    Can you pls guide me.
    Thanks & Regards,
    Ramnaresh.

  • 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/

  • 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.

  • How to setup the drill down on union report

    Hi,
    I'm setting the union report.
    I want to set the drill down to another report.
    But I can't setup it.
    Would you please tell me how to setup.
    Thank you.

    Hi Hemlatha
    In Crystal Reports, to prevent the ability to drill down into a subreport when published on the Web, add a text object that is filled with blank spaces, created by pressing the 'Space Bar' and 'Enter' for line returns, to eclipse the subreport.
    This workaround is applicable only to subreports that does not grow in size. For example, subreports that display only a chart or graph.
    Steps to Add a Text Object over a Subreport
    1. In the Crystal Reports Designer of the main report, insert a text object over the subreport.
    2. Resize the text object to be the same size or a little larger than the subreport object on the main report.
    3. Fill the text object with blank spaces created by pressing the 'Space Bar' and 'Enter'. This is necessary because resizing a text object without
    the blank spaces will not maintain its size when it has been published on the Web.
    ====================
    NOTE:
    You can format the text object with a hyperlink to another report, another file or a URL.
    ====================
    Now, when the Crystal report is previewed on the Web, the text object that fully eclipses the subreport will prevent the ability to drill down into it.
    Regards
    Girish

  • Drill-down lost in Report Builder

    Ever since the CFMX7.02 upgrade, we have lost the ability to
    drill-down on the Report Builder reports which previously had
    drill-down capability. I am referring to summary lines which
    contained a link to the detail. Has anyone experienced this and is
    there a fix for it?

    Do you choose PDF instead of flash paper as the output
    format? By some reason, the drill-down function does not work in
    flash paper format.
    Good luck,
    Daniel

Maybe you are looking for

  • Table related to PS - Budget/Committment/Actual/Plan/PO

    Hi I am looking for an Project system table that would generate data based on Project or WBS elements and should provide fields PO number, Vendor, Budget,Plan, Actual,commitment. Can you please help me in finding the report. Thanks in advance

  • Installing Adobe Acrobat 9.0 on a windows 2008 R2 terminal server

    We have had Adobe Acrobat 9.0 with our volume license installed on a Windows Server 2008 r2 acting as a terminal server and when clients remote into the server they cannot create pdf's.  The box is also a domain controller which is not suggested by m

  • Adobe Brigde Freezes on my Computer

    when adobe bridge is opened from the cloud PS6 program. It freezes on my compter and will not open any files. i have attempted to have this correct with customer service but my calls are diconnect after being on hold for over an hour after i recieve

  • Illustrator file not printing correctly

    How do I set my Illustrator file to print clearly?  I am designing a simple label (3.75 x 1.25 inches, black and white) that is mostly text based. I tried printing directly from Illustrator and also as a converted PDF (high quality) and the results a

  • How do i update my itunes to itunes 11.1.5 on my iphone 4s

    How do i update my itunes to itunes 11.1.5 on my iphone 4s??