Oracle APEX Classic Report Break Formatting

I created a classic report. Under report attributes I defined Break Formatting as "First, Second and Third Column".
The data columns for this report are Domain, Discipline, TechnologyArea and Products.
Domain is the parent. Discipline is a child of domain. TechnologyArea is the child of Discipline. Products are children of TechnologyAreas.
Domain prints in the first column, Discipline in the second, TechnologyArea in the third and Product in the fourth. There are one to many products for any TechnologyArea - and one to many TechnologyAreas for any Discipline - and one to many Disciplines for any Domain. The report is sorted on Domain, Discipline, TechnolgyArea and Product. Therefore domain prints over and over and over. Discipline prints over and over until it changes. TechnologyArea prints several times before it changes. I don't like that.
I want the report to print Domain and not print it again until it changes. I want it to do the save for Discipline and TechnologyArea.
I set break formatting to "First, Second and Thrid Column". Now Domain prints once and does not print again until it changes. So far so good! Now Discipline prints once and does not print on subsequent rows until the discipline changes. So far so good! The TechnologyArea name prints on every row. That's not good.
Given this pattern, if there were an option for First, Second, Third and Fourth columns I think that would give me the report I want - but there's not. Can anyone tell me how to stop TechnologyArea from repeating on every row?

This look about right?
notice the last two records in the with statement are duplicates.
with test_data as(
    select 'MAMMAL' domain, 'DOG' discepline, 'BEAGLE' technologyArea, 'SQUEEKY TOY' product from dual union all
    select 'MAMMAL',  'DOG' ,   'RETRIEVER', 'SQUEEKY TOY' from dual union all
    select 'MAMMAL',  'CAT' ,   'LION',      'SQUEEKY TOY'  from dual union all
    select 'MAMMAL',  'CAT' ,   'CHEETAH',   'SQUEEKY TOY'  from dual union all
    select 'MAMMAL',  'DOG' ,   'DINGO',     'SQUEEKY TOY'  from dual union all
    select 'REPTILE', 'LIZARD', 'IGUANA',    'LARGE ROCK' from dual union all
    select 'REPTILE', 'LIZARD', 'GUILLA MONSTER', 'LARGE ROCK' from dual union all
    select 'REPTILE', 'SNAKE',  'CORAL',     'LARGE ROCK' from dual union all
    select 'REPTILE', 'SNAKE',  'PYTHON',    'LARGE ROCK' from dual union all
    select 'REPTILE', 'SNAKE',  'KING',      'LARGE ROCK' from dual union all
    select 'MAMMAL',  'DOG' ,   'BEAGLE',    'BONE' from dual union all
    select 'MAMMAL',  'DOG' ,   'RETRIEVER', 'BONE' from dual union all
    select 'MAMMAL',  'CAT' ,   'LION',      'BONE' from dual union all
    select 'MAMMAL',  'DOG' ,   'DINGO',     'BONE'  from dual union all
    select 'REPTILE', 'LIZARD', 'IGUANA',    'HEAT LAMP' from dual union all
    select 'REPTILE', 'LIZARD', 'GUILLA MONSTER', 'HEAT LAMP' from dual union all
    select 'REPTILE', 'SNAKE',  'CORAL',     'HEAT LAMP' from dual union all
    select 'REPTILE', 'SNAKE',  'PYTHON',    'HEAT LAMP' from dual union all
    select 'REPTILE', 'SNAKE',  'KING',      'HEAT LAMP' from dual union all
    select 'MAMMAL',  'CAT' ,   'CHEETAH',   'BONE' from dual union all
    select 'MAMMAL',  'CAT' ,   'CHEETAH',   'BONE' from dual
select * from(
select
    case when domain         != nvl(domain_lag,        ':START:') then domain         else null end as domain,
    case when discepline     != nvl(discepline_lag,    ':START:') then discepline     else null end as discepline,
    case when technologyarea != nvl(technologyarea_lag,':START:') then technologyarea else null end as technologyarea,
    case when product        != nvl(product_lag,       ':START:') then product        else null end as product
from(
    select domain, discepline, technologyarea, product,
           lag(domain,1)         over(order by domain, discepline, technologyarea, product) domain_lag,
           lag(discepline,1)     over(order by domain, discepline, technologyarea, product) discepline_lag,
           lag(technologyarea,1) over(order by domain, discepline, technologyarea, product) technologyarea_lag,
           lag(product,1)        over(order by domain, discepline, technologyarea, product) product_lag
      from test_data
     order by domain, discepline, technologyarea, product)
where coalesce(product, technologyarea, discepline, domain) is not null
edit
I did not understand the question properly before submitting this. Here it is anyway.
Cheers,
Tyson Jouglet
Edited by: Tyson Jouglet on Jan 26, 2011 2:42 PM

Similar Messages

  • How to speed up the performance in Oracle APEX - Classical Report loading

    Hi,
    I am using APEX 4.2, DB 11.2.
    I have created 2 reports in the page and the time that is taken to load this page is very huge.
    To speed up the performance materialized views were used on queries, but still the performance is the same.
    checked the app in DEBUG mode, the following event takes a lot of time to execute:
    0.08415 4.76698 rows loop: 15 row(s) the query onky takes very less time to execute
    0.08184 0.00181

    ghini wrote:
    Hi,
    I am using APEX 4.2, DB 11.2.
    I have created 2 reports in the page and the time that is taken to load this page is very huge.
    To speed up the performance materialized views were used on queries, but still the performance is the same.
    checked the app in DEBUG mode, the following event takes a lot of time to execute:
    0.08415 4.76698 rows loop: 15 row(s) the query onky takes very less time to execute
    0.08184 0.00181
    Check query performance very carefully. If you execute the SQL more than once in a short amount of time the data will be in memory and accessed more quickly. It is possible that your fast response time was against cached data and therefore faster. If this is the case further tuning the SQL (the MV query) may help.
    It is also possible the slowness is due to other factors - network, firewall, antivirus software, etc. I am running Apex on my laptop using the embedded pl/sql gateway and due to antivirus and security software it can take pages 30 seconds or more to load.

  • Interactive Report - Break formatting style

    Hi All,
    Is there a way to make Interactive reports break format work/look like classic reports break format? i.e.1st,2nd,3rd column option. The way IR breaks is that is reserves a whole row for the column used in the break, which is not what I want, I want the report to look like the following:
    city               emp           sal
    Chicago     John Miller  1500
                     Mark Horton 2000
    Denver       Rob Martino 1200
    I tried to use rollup queries which work fine except that it does not do exactly what I want when I sort columns through the front end , I am basically displaying a check box for grouped records ( and I want it to display at the first record of each group), so the order is important. for example:
    checkbox   City               emp           sal
    [ ]               Chicago     John Miller    1500
                                      Mark Horton  2000
    [ ]              Denver       Rob Martino  1200
    Thanks,
    Sam

    would someone please confirm if this is doable/undoable at least? I've spend a lot of time exploring possible options (none worked) and it would really help if someone can help me saving some time.
    Thanks in advance.

  • Non-Interactive Report Break Formatting

    I have a non-interactive report that is very large and I am trying to use break formatting to provide subtotals. It works, but is quite ugly. Can anyone tell me where I might find a list of the various substitution strings that can be used for controlling the appearance of the breaks? For example, right now when it breaks for a change in "Payor Name", the subtotal row is labeled "Total for Payor Name". It would be much friendlier if the row label said "Total for Aetna" when Aetna is the Payor Name and "Total for Cigna" when the Payor Name is Cigna, etc. For example
    [Parent Name|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_1_desc::RP&fsp_region_id=27444927281350588|Sort by this column] [Payor Name|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_2::RP&fsp_region_id=27444927281350588|Sort by this column] ClaimType ST [RH Payor ID|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_5::RP&fsp_region_id=27444927281350588|Sort by this column] [Naic/EmdPayor Id|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_6::RP&fsp_region_id=27444927281350588|Sort by this column] LOC TRX [TRX Count|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_9::RP&fsp_region_id=27444927281350588|Sort by this column] [TRX Dollar Amt|http://ndhoast.tsh.mis.mckesson.com:7778/pls/apex/f?p=123:75:720425469268847:fsp_sort_10::RP&fsp_region_id=27444927281350588|Sort by this column]
    World Insurance Company World Insurance Company I - COMM085001 75276 DBQ CLM 18 $40,679.82
    Total for: ClaimType *18* *$40,679.82*
    P - COMM098401 75276 DBQ CLM 457 $129,959.38
    Total for: Payor Name *475* *$170,639.20*
    Total for: Parent Name *475* *$170,639.20*

    This has been an area in need of some attention for quite a while, in my opinion.
    Re: Formatting of Reporting Totals
    Re: Report Break Formatting
    I've just looked at 3.2, and the help messages are the same – not at all helpful – ones I remember from 1.6.
    I'm seem to recall this was raised on one of the enhancement request threads, but it doesn't seem to have been touched...

  • Report Break Formatting

    Can someone please point me to examples of using the various report break formatting options under Report Attributes? Screenshots of this in action using various options would be highly appreciated.
    The online field help (http://tinypic.com/m8z920.jpg) is not enough to fully understand the capabilities provided.
    Thanks.

    This is from: Linnemeyer, Lawrence C., and Bradley D. Brown. <u>Oracle HTML DB Handbook</u>. Emeryville, CA: McGraw-Hill/Osborne, 2006. 222-224.<br><br>
    This description taken directly from the book and is for version 2.0. <br><br>
    Limitations: "...Only break on one, two, or three columns, and they must be the first columns in the report. The second limitation is that you are fairly restricted in formatting the breaks." <br><br>
    "The Break Formatting section of the Report Attribute page provides the input fields for controlling report breaks. The first field, Display This Text When Printing Report Sums, is always active and is used whenever you select the Sum check box for a numeric column in the Report Column Attributes section. If you do not provide text in this field, the HTML DB engine will automatically include the label "report total:". The Breaks field defaults to No Breaks and allows you to select to break the report on the first column, the first and second columns, or the first, second, and third columns. Once you select a value other than No Breaks, the remainder of the columns will be enabled. <br><br>
    The next field, Display This Text on Report Breaks Using #SUM_COLUMN_HEADER# Substitutions, is the way you can format what is displayed when a report breaks to show subtotals. If you leave the field blank, the HTML DB engine will automatically display on the break rows “<i>columnheading</i> total:”. You can customize what is displayed using this field. Use the substitution variable #SUB_COLUMN_HEADER# to reference the header of the break column. Unfortunately, the current version (version 2.0 at time of printing) does not allow you to reference the value of the break column. <br><br>
    The first and last field in the center section of the Break Formatting section can be used to format a row before and after the break row, respectively. Unfortunately, with the way they are currently implemented, you must provide the complete HTML code for the row. For instance, if your report has five columns, you would enter something like: <br><br>
    < t r >< t d >first col< / t d >< t d colspan = “3” >< t d >last col< / t d >< / t d >< / t r >
    <br><br>
    The center field is used to format the actual break column. The formatting entered needs to be the HTML for a column and can use the #COLUMN_VALUE# substitution variable, like this: <br><br>
    < t d align=right >#COLUMN_VALUE#< / t d >
    <br><br>
    Note that all the columns in the row will have the formatting applied to them. <br><br>
    The final two fields provide you two different options for displaying the first column break. The field Identify How You Would Like Your Breaks to be Displayed has two possible values: Default Break Formatting and Repeat Headings on Break. The Repeat Headings on Break option causes the first breaking column to be reported as a heading with the column headings for all the remaining columns repeated after each break.”<br><br>
    Thanks,
    Joe

  • Can Oracle APEX access/report against an Oracle9i datbase?

    Can Oracle APEX access/report against an Oracle9i datbase? I know APEX has to be installed on Oracle 11g or 12c. I have a 11g environment to install it in, but I want to have ti read data from an existing 9i databasethat we are unable to upgrade at this time.

    APEX can create reports on any data that the database (which is running APEX) can access.
    This becomes a database question that is usually found in the General forum:
    How can an Oracle 11g database access data from an <place a name of a database here> database?
    One common answers:  Database Links.
    (Materialized Views and Golden Gate come to mind... but, again... these are database problems, not APEX problems.)
    I'll let others comment on the practicality of these solutions.
    MK

  • APEX IR report - breaking down columns

    Hello experts,
    I am creating Interactive Report and need break down couple columns.
    ex:
    country province city
    USA CA city1
    USA CA city2
    USA MA city3
    USA MA city4
    What I need to display is:
    USA CA city1
    ___ __ city2
    ___ MA city3
    ___ __ city4
    I can display this format using classic report. When I use IR report, the breaking down column goes on the top.
    How can I get the same format in IR ?
    BTW, I don't have any print server setup.
    Many thanks.
    Edited by: user2855902 on Oct 7, 2012 6:24 PM

    Thanks for the reply.
    I can go to the header and click control break, but the report format is not what I need.
    By clicking control break, I can get report:
    USA
    CA city1
    CA city2
    MA city3
    MA city4
    I need display "USA" at the left side.
    Thanks.

  • How to display special characters in APEX Classic Report column

    Ref: Thread: How to display newline characters as new lines
    Version: APEX 3.2
    Hi,
    I have created an classic SQL Report with one of the columns being a decode that gives a value 'Post'(the value should be highlighted in Red) on one condition and 'Pre' on another. I have followed the advice given in the page (URL provided above) , i.e. I have changed Strip HTML to 'No', changed Display as to 'Display as text (escape special characters, does not save state)'. I have also passed this value back to the same page to be stored in a page item each time a link (another column in report) in report is clicked. I have tried passing it as #DEADLINE# and \#DEADLINE#\. The issue I face is, instead of the value being highlighted in Red, it gets passed back as a string holding the value 'Post'. Is there any way I can get this to display as it should without the Strip HTML being changed to 'Yes'.
    Thanks very much.
    Rohi
    Edited by: Rohi on 18-Jul-2012 04:21

    876651 wrote:
    Hi,
    Thanks for your response.
    I am trying to display a page item that is derived from a report column based on a click on the URL link (*view >*>)
    This page item (here, it is Manager_ID) should ideally be highlighted when a particular condition is satisfied (achieved using a DECODE in the report).
    But it is not displayed like it should be.
    I do not want the value to be displayed along with the html tags as a string.
    I want the html tags to take effect and highlight the value within it.
    Initially, I had set Strip HTML to Yes and the value was returned without any highlighting .
    So I changed it to 'No' and and it contained the html tags.
    I am not sure what setting in APEX Report Attributes can help me achieve that effect I want.None of the report settings are relevant. They affect the rendering of the report and none of the columns you were changing the properties of were actually rendered.
    You can't pass HTML and CSS around in URL parameters.
    I suggest you pass *2* values in the column link: the MGR ID and a simple class or colour value computed by the DECODE in the report. I've suppressed the first version of the report and created a new one that does this:
    decode(dept.deptno, '30', 'c00', '000') highlight The link column now passes the MGR ID and the HIGHLIGHT colour (red when the condition is satisfied and black when it is not).
    I created another hidden and protected page item <tt>P0_HIGHLIGHT</tt> as the target for the highlight value, and used the Pre/Post Element Text properties of the <tt>P0_G_MGR</tt> to wrap it in a <tt>span</tt> whose colour is changed using the <tt>P0_HIGHLIGHT</tt> value as a subtitution string:
    <span style="color: #&P0_HIGHLIGHT.;">Having done that, I still don't really get the requirement here. I'm sure that given the full picture I'd be using a completely different approach...

  • Apex 4.0.1 classic report export

    Hello once again all you Application Express experts.
    I am having some difficulty getting an apex classic report to export the results of the report grid.
    This is a classic report being run, not interactive.
    It is also as an SQL Query (PL/SQL function body returning sql query) for the report identification type.
    The function body is of decent size, maybe 200 lines at most, but i have narrowed it down a couple of problematic lines.
    The report runs perfectly when I take out the follow line from the function...
    v_return := v_return || 'AND instr('':'' || ''' || :p3_status || ''' || '':'','':'' || xel.employment_status || '':'') > 0 ';
    So :p3_status is a checkbox item on the page, with three options: Active, Terminated, Retired.
    In the repeatable failure scenario :p3_status = 'Active'.
    One of the interesting parts is the report grid always returns the right results to the screen, it is just the report export that fails.
    It never errors, it just returns a no data response to the file being exported.
    This is Application Express v 4.0.1 running on Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit.
    Any thoughts or any troubleshooting hints anyone can provide?
    Thanks,
    Hayden

    Hayden,
    Why do u need to append the item value in the PLSQL function body when apex will take of that(using its bind value).
    Your predicate is actually a static one since only the item value changes (and that can be handled by its bind value). So avoid concatenating it in the function body to build the clause(which has the additional problem of passing in the item value to the function)
    Change it to
    v_return := v_return || q'!AND INSTR(':'||:p3_status||':',xel.employment_status) > 0!';
    Notice that the :p3_status item evaluation happens only in the apex page
    Also making use of the q function to escape quotes, it makes life much more easier in these cases.

  • Column based on LOV in a classic report

    In a classic report i want to display a value coming from an lov, based on the value of a column. I can't seem to make this work however, not even on apex.oracle.com. I too am on apex 4.1.
    What i've tried is to set the column to display as text, based on lov. I've tried named static and dynamic lovs, and tried to supply an own lov definition, both static and dynamic. Even apex_item doesn't seem to work.
    As a test, i has set this up on apex.oracle.com:
    Classic report:
    Region source:
    select status, descr, apex_item.text_from_lov(status, 'lov_status') status2
    from
    select 15 status, 'test for status 1' descr from dual
    union all
    select 30 status, 'test for status 2' descr from dual
    union all
    select 45 status, 'test for status 3' descr from dual
    Column attributes for column status:
    Display As: Display as Text (based on LOV, does not save state)
    List of Values -> Named LOV: LOV_STATUS
    LOV_STATUS (shared components -> lists of values):
    this is a static lov, with these values:
    15;'Status One'
    30;'Status Two'
    45;'Status Three'
    60;'Status Four'
    (which could also be used as a non-named lov like: STATIC2:15;'Status One',30;'Status Two',45;'Status Three',60;'Status Four')
    Both column status as status2 simply keep displaying their value, and not the 'display value' i'd expect coming from the lov.
    I could use decode or case, yes. But using an lov keeps it cleaner, especially when there are more than 3 or 4 values, and could be reused in more reports.
    Am i using or doing this wrong?

    Hi Tom,
    revert the order of your LOV items ( so first description and then ID ),
    like for example :
    STATIC2:'Status One';15,'Status Two';30,'Status Three';45,'Status Four';60
    That does the trick ( tried it ).
    If you want to see an example check page 2 of the only app on apex.oracle.com
    WS : bklerk
    User : demo
    PWD : demo123
    Regards
    Bas

  • Colourfull  row in classical report

    Hi,
    I have classical report. I have to do colour full to  row in report. how i can set green colour for a row in classical report.
    Thanks & regards
    Vedant

    refer  oracle apex - Colour report rows that contain the same product name - Stack Overflow
    helps you
    Pars

  • Cannot print a PDF using the Oracle APEX print feature

    Hi,
    I work from a Wondows 7 workstation.
    I have Adobe FlashPlayer 11 installaed on that workstation.
    I can open a regular *.pdf file.
    I have the following configuration for my Oracle APEX application:
    Report Printing:
    Print Server Protocol: Advanced (requires Oracle BI Publisher)
    Print Server Protocol: HTTP
    Print Server Host Address: the IP address of my BI Publisher server
    Print Server Port: 9704 (from installation of BI)
    Print Server Script: /xmlpserver/convert
    On the page (that is an interactive report) that I want to print, it is configured with:
    Download:
    PDF option is checked.
    When I click on Action -> Download -> PDF for this page, I get the error:
    report_customers_region.pdf  file can not be opened because the file type is not supported or because it is damaged (because, for example as an e-mail attachment is not sent and correctly decoded)
    Does someone has an idea what the problem is and where I should investigate further?
    Thanks and Kind Regards.

    Well, is the PDF actualyl allowing to be printed? Check File --> Properties in Reader/ Acrobat.
    Mylenium

  • Report in pdf format in oracle apex

    how can i save the contents of a form as a report in pdf format by clicking on tha print button in oracle apex???
    plz help if anyone knows tha solution
    Edited by: user9139675 on Mar 9, 2010 11:14 PM

    how can i save the contents of a form as a report in pdf format by clicking on tha print button in oracle apex???You may create a report and call it in an Apex process fired by press a button.
    in the process:
    l_utl_http := utl_http.request(l_url);
    where set l_url like:
    http://167.165.243.209/dev60cgi/rwcgi60?repdevi_key&server=Rep60&report=my_rpt.rdf&DESFORMAT=PDF&DESTYPE=FILE&DESNAME=/arch/chrisweb/devi/cache/my_rpt.PDF&BACKGROUND=YES&P_1=PC00980
    The generated pdf report my_rpt.PDF is kept at /arch/chrisweb/devi/cache/

  • First group heading below displays below column headings using Template 23 Classic Report using Repeat Headings on Break

    Hello,
    I am migrating an application from APEX 3 to APEX 4.2 on one thing I notice with the classic reports when I bring them into Template 23 is that the first break section has the break row display below the column headers for that section while the remaining rows correctly have it display above the headers on subsequent group sections.
    When I look a the code in firebug I can seen that the all tables but the first, the break row is being included as the last row of the previous table so I can see how this would not work for the break since.
    I have tow questions.
    1. Is this really intentional because it doesn't seem  terribly elegant and my users zeroed in on it right away as a perceived bug.
    2. Is there a reasonable work around that still uses Repeat Headings on Break? I have multiple reports on the same page in places so changing over to interactive reports is not a silver bullet for me in this case.
    Example of issue can be seen at apex.oracle.com at  Home
    Thanks,
    Brad

    Roadling wrote:
    Hello,
    I am migrating an application from APEX 3 to APEX 4.2 on one thing I notice with the classic reports when I bring them into Template 23 is that the first break section has the break row display below the column headers for that section while the remaining rows correctly have it display above the headers on subsequent group sections.
    1. Is this really intentional because it doesn't seem  terribly elegant and my users zeroed in on it right away as a perceived bug.
    The Standard report template definition in theme 23 contains thead and tbody elements:
    Before Column Heading
    <thead>
    Column Heading Template
    <th #ALIGNMENT# id="#COLUMN_HEADER_NAME#">#COLUMN_HEADER#</th>
    After Column Heading
    </thead>
    <tbody>
    After Rows
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    <tbody class="uReportPagination">
    #PAGINATION#
    </tbody>
    </table>
    <div class="uReportDownloadLinks">#EXTERNAL_LINK##CSV_LINK#</div>
    This is intentional, following best practice for marking up HTML tables. What is not intended is the problem that arises when this template is used with the Repeat Headings on Break break formatting option. The repeated headings result in the table consisting of tag soup containing multiple incorrectly constructed tbody and thead elements, which is invalid.
    2. Is there a reasonable work around that still uses Repeat Headings on Break? I have multiple reports on the same page in places so changing over to interactive reports is not a silver bullet for me in this case.
    Create a copy of the Standard report template as Standard (break formatting) for use with break reports, remove the thead and tbody tags from the template definitions, and change the break reports to use the new template. (Or, if you primarily have break reports using the Standard template, keep the tags in the copy and remove them from the original to minimize the number of reports you have to edit.)
    Personally I'd create a custom row report template for complex break reports in order to be able to have complete control over the structure and presentation.

  • How to Suppress Report Total When Using Sum on Columns & Break Formatting

    I need to know how to NOT show the report total line when using the sum functionality with a break in a report.
    I am summing two columns, a debit amount and credit amount. I am breaking on the first column which is the level of a hierarchical query. I want to see something like this:
    Parent Record xxxxxxxxxxxxxx
    Parent Sum $$ $$
    Child Record xxxxxxxxxxxxxx
    Child Record xxxxxxxxxxxxxx
    Child Sum $$ $$
    However, when I run the report, I also get a report total line under the child sum which is really meaningless for this report.
    I have also tried creating this report as an interactive report. When applying the sum on the two columns, I do get the sum totals on the break only - no report total - however, it is reversing the order of the hierarchical query results putting the child records first and the parent records second.
    Thanks in advance for your help.

    Hi, and welcome!
    I don't think that there's an easy way to "switch off" the Total line on a report. The nearest I could suggest would be to either hide the entire row or colour the text so that it's the same as the background - either way, the total is calculated but the user won't see it.
    If you put something like the following into your report region's Region Footer:
    &lt;script type="text/javascript"&gt;
    var outertable = document.getElementById("#REGION_ID#");
    var innertable = outertable.getElementsByTagName("TABLE")[1];
    var rs = innertable.rows;
    var lastrow = rs[rs.length-1];
    if (lastrow.cells[0].innerHTML == '&lt;b&gt;TOTAL&lt;/b&gt;')
    rs[rs.length - 1].style.display = "none";
    &lt;/script&gt;Then, on your report's Report Attributes page, scroll down to the Break Formatting section and put TOTAL into the "Display this text when printing report sums" setting. Also, in the "Layout and Pagination" section, set "Enable Partial Page Refresh" to No.
    The above code is based on the report and region templates that I'm using here: [http://apex.oracle.com/pls/otn/f?p=267:147] (Theme 18, "Report Region" region template and "Standard" report template). Your report may use different templates, so the first two lines on the code may have to change. #REGION_ID# would be replaced with the region's ID value (which would be "R" followed by a long number). As long as you can identify the HTML tag that uses this ID value, you can then get to the actual table that contains the data as it would be a TABLE within that tag - the [1] above is the second table within the region. In some instances, you may have to use "region_#REGION_ID#" as the starting point.
    Andy

Maybe you are looking for

  • Two user accounts one Itunes Music Folder, How do I keep the Libraries sync

    Okay let's see if I can explain my dilemma properly. My girlfriend shares my computer with me, so I gave her a seperate account to keep her stuff in. However I keep all our music on an external hard drive in the iTunes music folder. The problem is ev

  • Odd I-bar behavior

    In firefox on the browser if I click, and I-bar/cursor appears every time. Same thing happens if I click in the preview pain of an entourage email, the i-bar appears like I can start typing. I cannot, but it is there. Anyone seen this? Very odd and a

  • Getting details of RRP3 tcode in ABAP program

    Hi Experts, I want to get the sales order numbers and purchase requisition etc., which we see in RRP3 tcode in a ABAP report. So i tried something like this. i have first called the FM /SAPAPO/RRP_SIMSESSION_CREATE' to create the session guid and the

  • Adobe Camera Raw 6.4 Update Fails

    I've been trying to update my Camera Raw from 6.0 to 6.4 to support a Nikon D5100.  from within PS CS5.5, I run update and it tells me all apps are up to date, but I can see I am still using 6.0.  Not sure why that is occuring.  I downloaded the stan

  • Copy the SP2 Portal File System and then Migrate??

    Hello All, Is it possible to copy the EP6SP2 Portal FileSystem and the SQL Database on the other host and then migrate start the migration process from this host. I mean to create the export file from this new host(where we copied the fileSystem and