Capitalization column in drill down report

Hi,
I have a requirement to make a column in IM drill down report which will show values of capitalized investments (WBS and orders) assigned to the investment program.  Do you have an idea how to do it?
Thanks in advance!
DD

Hello,
You will have to go for new development /enhancement linking your capital proj /WBS to the new logic of the report.
Regards,
Sumanth

Similar Messages

  • Drill down report issues

    Is there a solution for displaying fields only on the drill down report with out it displaying on the top main report.
    Main report columns:
    case id casename location Assignee Asigneegroup
    when i click on case id drill down report appears
    Drill down report columns:
    Task id taskname Assignee assignee group
    my question is that i dont want to see Assignee and assignee group on the main report, I just want to see those columns on drill down report. If i remove those 2 columns on the main report (drill up report), then those columns are not appearing on the drill down report as well.

    i think a drillfilter will solve the problem
    try to add a column and add drillfilter in this column
    good luck
    Amr

  • Drill down report is showing popup even though it's disable in column properties

    Hello,
    I am facing an functionality issue where I have crated Summary to drill down report. Summary is chart and drill down is table view and I am using OBIEE Action link  here.
    Now I have disabled the Popup in column properties so when user click the bar on the graph they will directly navigate to detail report. But strangely after disabling the Popup, when i click on bar the drilldown report is coming as popup link.
    does anyone has any idea how to handle this issue??

    It would seem to be a issue with either the hardware of the printer or the replacement cartridge. If it is the cartridge, it should be covered under warranty (if it is HP genuine) since you just purchased it. At this time I think that your best move would be to contact HP's Technical Support to see about further options for you.
    The only other option would be to try another new replacement cartridge to rule in or out the cartridge being at fault.
    If you are calling within North America, the number is 1-800-474-6836 and for all other regions, click here.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Drill Down Report Performance issue?

    Hi,
    why drill down report is slower performance comparing with Action link/Navigation method? what could be the back end processing?
    Thanks
    MRD

    Need to know/see your config to tell why it is slow, I would suggest to follow best practices for the same.
    Drill down back end process something like:
    Report fetch next level columns and the all aggregated measures are grouped by next level this may take some time unless you go with aggregate table (is part of best practices)
    Appreciate if you mark as correct/helpful

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

  • Total Label in Drill down reports

    This is a simple case scenario. I created one drill down report by Country --> State --> City and set this object as section. It has revenue Column in it. Now I did Summation on the Revenue column and it shows like this
    USA  -- (Section)
    Column1, Column2
    XXX, 3  
    Sum, 3
    Now instead of Sum, I would like the label to replace it with country name and when I drill down to second level, it should replace it with the State name and again on level 3 replace it with City name.
    Could anyone help me on achieving this. Is it doable? I have been trying to achieve this but had no success.
    Thanks for your help in advance.
    Rids

    Yes, It can be achieved with the help of the DrillFilters() function.
    You can build the logic using if-else condition. Here is the one for you:
    =If(Drillfilters([City])<>"") Then [City] Else If(Drillfilters([State])<>"") Then [State] Else If(Drillfilters([Country])<>"")
    Then [Country]
    Regards,
    Rohit

  • Drill down reports using SVG component

    I've created and dynamic report and an SVG chart following the examples of the tutorials. I was wondering if, and how, it was possible to create drill-down reports i.e report on colour, then clicking on that colour would reveal the types of car and so on. Does anyone have an example?
    Thanks
    Darren

    Darren,
    The query for an SVG chart requires 3 columns: Link, Label, and Value. You use the Link value to provide a link to another page. This link can also pass parameters to the next page.
    If you set up a page for each "level" of your drill-down (e.g. color, type of car, etc), you can link from the higher-level page to the lower level page and pass the value that was clicked on in the chart.
    Take a look in the HTML DB User's Guide for the section about "Using f?p Syntax to Link Pages": http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10992/mvl_fund.htm#BEIJCIAG
    You would use that syntax in the Link column of the query for your chart. Here is part of a query I used to drill down from one pie char to another (on page 3), passing the selected project to a variable called P3_PROJECT.
    select 'f?p=&APP_ID.:3:&SESSION.::NO::P3_PROJECT:' || Project L,
    Project, sum(Time)
    from v_timesheet
    where ...
    Does that help?

  • 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

  • Drill down report in HTML DB

    Cannot get the drill down report working. Have created 2 pages first one with master table and second page containing detail information. Further i have created an item to hold the value on page two. Now when i go to the Query definition to give a condition i cannot see any column in the Select list.
    Any help would be appreciated..
    Thanks

    Could you post the item name you are using and also include the query you are using. In the most of the cases the item name you are using in the query doesn't match with the real item name.
    Denes Kubicek

  • Drill down report without using heirarchies in OBIEE11g

    Hi,
    Can we create multiple column drill down report without using hierarchies in OBIEE11g?
    Kindly let me know the solution.
    Thank you!
    -Harshith

    Yes, It can be done, but for each drill level you will require one seperate report. Drilling can be achieved using OBIEE Report Navigation.
    For eg. If I have to create a drill report which starts from Year and goes to QTR and then to Month level. That means I have to create 3 reports.
    1. A year report which will have report data at year level (Consider Year, Product, Order_QTY and Order_Amt are the columns)
    2. A QTR report which will have report data at Qtr level. This report will have Year column in filter section as IS PROMPTED (Consider Qtr, Product, Order_QTY and Order_Amt are the columns).
    3. A Monthly report which will have report data at Month level. This report will have Year, Qtr column in filter section as IS PROMPTED (Consider Month, Product, Order_QTY and Order_Amt are the columns).
    Then we can go to Yearly report and put the OBIEE navigation on Year column and our target report will be QTR report. Similarly in Qtrly report put the OBIEE navigation on QTR column and our Target report will be Monthly report.
    This way you can impliment drilling without hierarchy.
    For step by step see below URL:
    http://www.askjohnobiee.com/2012/07/how-to-drill-through-guided-navigation.html
    Appriciate if you can mark Correct.
    Thanks,
    Kashi
    Edited by: K N Yadav on 4 Jun, 2013 10:27 PM

  • How To Create Drill down report in oracle report 6i version

    HI,
    I have one table having dept no , emp_no ,Sal like field.
    I want drill down report master column dept_no.
    i want one click on dept_no & i want to see detail of emp & Sal on it
    How can i do this please guide me.
    Thanks in advance
    Rahil

    Hi
    One simple concept is,
    Make dept only report call it as dept.rdf
    Now create another report call it as emp_details.rdf,
    Now in Dept.rdf. Make push button and call the emp_details repot by passing dept no varailble.
    Hope you got idea of drill Down on 6I
    Edited by: O.Developer on Dec 19, 2012 9:20 AM

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

  • Error in summation of Actuals for Drill Down Reports(SAP Standard Reports)

    While executing the Drill Down report (for e.g S_ALR_87013558) for a particular Project (e.g DWRES-C2005) it is observed that the Actual costs booked on the WBS element (DWRES-C2005-502) does not get rolled up to its higher level WBS Element(DWRES-C2005-501).
    This also does not get rolled up to the top WBS element (DWRES-C2005-500).As this is the case the summation for Actuals columns shows incorrect result.Result should have been (Actuals of DWRES-C2005-500 = Actuals of DWRES-C2005-501 + Actuals of DWRES-C2005-502 ).I have also tried the formatting of the Actuals columns in the Form of the report but I could not find any answer.Can anybody help me in this regard.

    Sorry, me again...
    I have found yet they way to show in the header the report parameters, I mean, the selection criterias that user used when execute the report... I was able to show selected characteristics inside de report but not the selection criteria...
    Do you know what I have lost? or what to use for this?
    Thanks again.
    Adela.

  • 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

Maybe you are looking for

  • Issue with automatic numbering of figures in a Technical Document

    Hi everyone, thanks for taking the time to examine my issue. Basically I've inherited a Technical Document which was imported from Quark some years ago and badly cobbled together in IDesign by a novice and I'm bringing it up to standard to make it a

  • How do I get around HD "issues" to update from 10.5.8 to 10.6.8?

    This is in reference to my Macbook 2.16 while attempting to update from 10.5.8 to 10.6.8-- current usage on the Mac partition is 99GB with 33GB free; the Bootcamp partition is 31GB used with 70GB free. I own Paragon Camptune and was considering reduc

  • "USB draws too much power" from GoPro camera?

    My GoPro camera battery doesn't seem to charge right or something because when I charged it tonight, it seemed to be over heating. This is a brand new camera and one of the first time I tried charging the battery. When I checked my computer it came u

  • No preview image in finder window

    After upgrading from Jaguar to Tiger, photo preview images from Adobe Photo Deluxe (system 9) do not appear. Instead file info is displayed. How can I fix this? This feature worked fine in Jaguar.

  • Contradiction: SEQUENCE and AUTO_INCREMENT

    Most recommendations tell: You have to use SEQUENCE instead of an auto_increment column. In contradiction to this I found the following AUTO INCREMENT feature in Oracle® Database Lite SQL Reference 10g (10.2.0): 4.3.18 CREATE TABLE auto increment