Header Columns for Reports

Hi Guys
Here is a quick question for you. I have a table that gives a breakdown of the number of people in a course by year. I.e Each year contains a count of Male, Female and Total Male & female
It maps fine in Discoverer. But is there any way to put a heading across the report so it looks something like this
COURSE YEAR 1 YEAR 2 YEAR3
M F T M F T M F T
Business 10 10 20 5 7 12 20 50 70
IT ....
Maths 5 2 7 11 2 13 5 7 12
Can you put a place holder in there or something?
Thanks

Hi all
Yes, BI Publisher can now be integrated with Discoverer. However, it's not free so please check out the licensing costs before jumping in with both feet. The last I heard is that BI Publisher will add an additional $40k per CPU to your BI server license so while it is very affordable it is something that you have to take into account and probably budget for. This is why I am starting to think that perhaps BI Publisher should be installed onto its own server.
I heard at an Oracle conference that BI Publisher running on a 4 CPU box can handle 120,000 reports an hour. Impressive huh? What this also means is that you probably don't want to put it onto your 4-CPU application server and that a smaller 2-CPU server will more than likely suffice.
Also, and this may catch a lot of folks out, the integration between BI Publisher and Discoverer will only work if you have installed the full application server with OID. It will not work with stand-alone Discoverer. Therefore if you are using stand-alone Discoverer you will also have to upgrade to the full server, complete with Infrastructure and OID as well as pay the additional license fees for that upgrade.
I'd be happy for anyone from Oracle to contradict what I have said as that would ease the pain for a lot of my clients.
Best wishes
Michael

Similar Messages

  • Header Column for Report format

    Hi All,
                                                    Sales
    Col 1     Col2     Col3     Col4     Col5     Col6
    489     81     38     608          608
    408     77          484          484
    18     9          27     3     30
    300     27     32     358          358
    We want Report in this Format. Columns (Col1 ,Col 2,Col 3...) Should be displayed under one header column "Sales" .
    How can we achiev this in BW.
    Regards,
    Ali.

    Hi,
    Create a Formula with SALES and under that you drap and drop all remaining Keyfigures, but you should assign some values for Sales fomrmula.
    i.e. one level below. Chaild Node.
    Sales
      |--Kfig1
      |--Kfig1
    Thanks
    Reddy
    Edited by: Surendra Reddy on Dec 7, 2009 9:26 AM

  • Column for heading, column for body text?

    Hiya, I am wanting to have the headings in one column and the body text in the other, like in the image below, the text will need to flow in case there are edits later. Does anyone know how to go about doing this? I am using Indesign CC
    Many thanks
    Mel
    Hie

    Peter,
    Always magical!
    The last secret: Title para style have nested lines styles! Like this:
    I've created 5 char styles for 5 lines.

  • Split a field  into 3 columns for a report -  Shoud be done in R/3 or BW

    Hi all,
      I have to split a Text Description (TXTMD) into 3 columns for reporting.
      This description is available in R/3 table and in BW InfoObject.
      What is the best way to accomplish this task ?
      Should I enhance the Extract structure and fill those 3 new ZZ fields on R/3?
      Should I do it on BW side ? How, please ???
      Thanks in advance.
    Regards,
    Venkat.

    If the purpose of splitting is to overcome the limitation of Infoobject, I would recommend doing that in BW side for a couple reasons: You don't need worry about having R/3 transport and also if you are working on LO extractors you don't need to worry about setup tables. Secondly, it is easy to manage the fields in BW side than R/3, because you will be sending fewer fields.
    thanks.
    Wond

  • Tooltip for IR report(Apex 3.2)header column

    Hello Everyone,
    I need help in setting up a tooltip for report hearder in interactive reports. I tried the following methods:
    1) By assigning a div title for column Deptno(This code is taken from the html source of IR report column):
    <th id="DEPTNO" >
    <div id="apexir_DEPTNO" onclick="gReport.controls.widget(this.id)" style="">
    Deptno
    <div title="Tooltip text for first div">&lt/div>
    </div>&lt/th>
    2) With javascript & css : I put the following line on report header edit section:
    < a class="tooltip" href="#">Tooltip<span>This is the crazy little Easy Tooltip Text.</span></a>
    Nothing really solved my problem. Is there any easy way of resolving the above issue?
    Thanks in advance for your help.
    - Parveen
    Edited by: Parveen Sehrawat on Mar 14, 2012 2:58 PM

    Hi,
    Blog post example do not work with APEX 3.2
    By default on APEX 3.2 you do not have jQuery and dynamic actions.
    You can do same with APEX 3.2 if you use htmldbQuery plugin
    http://sourceforge.net/projects/htmldbquery/
    Integrate plugin and jQuery to APEX
    Then create page process before regions
    DECLARE
      l_sql VARCHAR2(32700);
    BEGIN
      l_sql := '
      SELECT COLUMN_ALIAS,
        HELP_TEXT
       FROM APEX_APPLICATION_PAGE_IR_COL
      WHERE APPLICATION_ID = :APP_ID
        AND PAGE_ID = :APP_PAGE_ID
        AND HELP_TEXT IS NOT NULL
      HTP.p ('<script type="text/javascript">');
      -- Create JSON object.
      HTP.prn ('var gIrColHelp = $u_eval(''(');
      APEX_UTIL.JSON_FROM_SQL(l_sql);
      HTP.prn (')'');');
      HTP.p ('</script>');
    END;Add to page HTML header
    <script type="text/javascript">
    $.htmldbIrReady(function(){
    $.each(gIrColHelp.row,function(i,jd){
      $($x("apexir_"+jd.COLUMN_ALIAS)).parent("th").attr({"title":jd.HELP_TEXT});
    </script>See working example
    http://actionet.homelinux.net/htmldb/lspdemo?p=220
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Edited by: jarola on Mar 15, 2012 4:53 PM

  • Tooltip for IR report header column

    Hello Everyone,
    I need help in setting up a tooltip for report hearder in interactive reports. I tried the following methods:
    1) By assigning a div title for column Deptno(This code is taken from the html source of IR report column):
    &lt;th id="DEPTNO" &gt;
    &lt;div id="apexir_DEPTNO" onclick="gReport.controls.widget(this.id)" style="text-align:center;"&gt;
    Deptno
    &lt;div title="Tooltip text for first div"&gt;&lt/div&gt;
    &lt;/div&gt;&lt/th&gt;
    2) With javascript & css : I put the following line on report header edit section:
    &lt; a class="tooltip" href="#"&gt;Tooltip&lt;span&gt;This is the crazy little Easy Tooltip Text.&lt;/span&gt;&lt;/a&gt;
    Nothing really solved my problem. Is there any easy way of resolving the above issue?
    Thanks in advance for your help.
    - Parveen

    Hi,
    This might help
    http://dbswh.webhop.net/dbswh/f?p=BLOG:READ:0::::ARTICLE:2311800346467196
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0

  • Heading and color scheme of the columns for the detail report

    Is it possible to have a heading and color scheme of the columns for the reports displayed on drill down of a query in WAD?

    Try the stylesheet in the properties of web template.

  • Column Heading in BI report

    Hi ,
    I have report and i want to display the column heading for both the key and text column in the report.At present i could see column Heading only for the key column.Kindly advice
    thanx
    Sriram

    HI Sriram
    Why you want to display the heading? Do You mean, two different headings?

  • Freeze header columns in web reports

    Hello Gurus,
       I am looking for a solution to freeze the header columns. I tried
    with the java script code from the below link.
    Forum post in BI Suite – Business Explorer: Re: Freeze Panes in web
    reports
    Re: Freeze Panes in web reports
    but did not work.   please suggest me.
    points will be awarded.
    Thanks & Regards,
    Kumar.

    no proper solution.

  • How To Add a new column for ZPR0 price in open sales order report ??

    HI,
    my requirement is To Add a new column for ZPR0 price in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

    k

  • To Add a new column for ZPR0 prce in open sales order report

    HI,
    my requirement is To Add a new column for ZPR0 prce in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

    HI,
    my requirement is To Add a new column for ZPR0 prce in open sales order report if the order/scheduling agreement is a cross-company code transaction l(company code of order/scheduling agreement <> company code of delivering plant), price = ZPR0 price as at estimated GI date

  • ALV report shows fixed number of columns for a user ?

    Hello,
    I have an issue wherein I have created an ABAP ALV grid display in a WD ABAP application and hosted it onto portal. Now, all the users can see the correct number of columns for the report which are determined dynamically. But just for one user, irrespective of which report she launches it shows her only 4 columns.
    Can anybody suggest why this kind of behavior.
    Appreciate your help.
    Regards,
    Samta.

    Hi,
    Right, click the button "manage layout" or "save layout" and remove any default user settings...
    added: didn't read carefully sorry ;)... better check user settings in SU01 if no ALV parameter is used.
    Kr,
    m.
    Edited by: Manu D'Haeyer on Oct 21, 2011 8:53 PM

  • Report with multiple choice in column for same dimension......

    Hi All,
    We have a report with two dimensions in col , one in row remaining in pov...user want to select multiple members [its more than 10 members..so we thought prompts will not be good.] for one column for different members in second dimension of column and want see the variance between them.
    can anyone suggest me how can i achieve this. thank you
    regards,
    Ravi

    Hi All,
    Can any one suggest me on this. thanks inadvance.
    Regards,
    Ravi

  • How can I display the range for LastFullMonth in the header of a report

    How can I display the month for LastFullMonth in the header of a report run in the past so that a report that ran sept 1 2009 selecting data for LastFullMonth (august 2009)  displays sept 2009 in the header even if there is no data selected by the report?

    Good,
    Sometimes I answer these questions and completly miss it....
    ( lack of understanding on my part )   

  • Adding of new column in report for downpayment

    Dear Experts,
    We want to add column for downpayment in report S_ALR_87013019 for which we have created a new report with the help of GRR2, (report)602 - (Description)internal orders and have selected its sub category 60BU-001 - Budg/act/commitm, also we have created a new column for downpayment and have assigned valuation type - 61(Downpayment) and valuation - zero(Legal valuation).But while posting downpayment the report is not getting updatedwith the downpayment values. The internal order that is being created is a statistical order but even if real orders are assigned still the values are not getting displayed.
    Please tell us the combination of valution type and valuation or any other characteristic that requires to be made for updating the downpayment column.
    Thanks & Regards
    Edited by: Aniruddha B. Mahalle on Feb 21, 2012 11:25 AM

    hi
    check cost element is created also check is there any exclustion of cost element setting done.
    Edited by: AP on Feb 21, 2012 11:50 AM

Maybe you are looking for