Hide total, but show subtotal in classic report with breaks

Hi,
Is it possible to use the sum function for a report with a break, but not display the total sum? I have a financial report with a break on currency. But I don't want to display the total sum, because it is meaningless.
I don't have a clue how to fix this.
Jacob

Hi Jacob,
I'm not sure of your overall target but perhaps this will help: http://apex.oracle.com/pls/otn/f?p=31517:86:3502666127312777
Mike

Similar Messages

  • Subtotal in classical report

    hello experts,
    how can i make subtotal in classical report,
    scenario is like this,
    say for a single likp-vbeln, there is lips-lfimg, i need to subtotal for lips-lfimg for each likp-vbeln,
    how to du it?plz help

    Hi Rajdeep,
    Add lifmg to a variable, then
    at end of vbeln print the sum and clear it.
    Check the below code for example, here field a is similar to your vbeln and c is
    similar to your lifmg,
    TYPES: BEGIN OF ty_tab,
           a TYPE char2,
           b TYPE char3,
           c TYPE i,
           END OF ty_tab.
    DATA: it_tab TYPE TABLE OF ty_tab,
          wa_tab TYPE ty_tab.
    DATA: w_sum TYPE i.
    wa_tab-a = 'A'.
    wa_tab-b = 'AAA'.
    wa_tab-c = 1.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 'A'.
    wa_tab-b = 'AAA'.
    wa_tab-c = 1.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 'A'.
    wa_tab-b = 'AAA'.
    wa_tab-c = 1.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 'B'.
    wa_tab-b = 'BBB'.
    wa_tab-c = 1.
    APPEND wa_tab TO it_tab.
    wa_tab-a = 'B'.
    wa_tab-b = 'BBB'.
    wa_tab-c = 1.
    APPEND wa_tab TO it_tab.
    "Print the header
    WRITE: sy-uline.
    WRITE: /, 5 'A', 10 'B', 24 'C'.
    WRITE: sy-uline.
    "Print the values
    LOOP AT it_tab INTO wa_tab.
      ADD wa_tab-c TO w_sum. "calculating sub total for field c
      WRITE: / ,5 wa_tab-a,
                10 wa_tab-b,
                15 wa_tab-c.
      AT END OF a.    "For each new a print the subtotal
        WRITE: sy-uline.
        WRITE: /, 5 'Sub total of C',
                  15 w_sum.
        WRITE: sy-uline.
        CLEAR w_sum.
      ENDAT.
    Regards,
    Manoj Kumar P

  • Classic Report with Hide and Show Region Template does not show report

    Hello,
    I created a "No Template" region on a page with a Classic Report. When I change it to a "Hide and Show" region template, the report does not show up when I click to Show the region...is there an additional step i'm missing to make the report show up. Its a very simple query.
    Thanks in advance,
    John

    How about posting some relevant information like Apex version, RDBMS version, Theme you are using, etc.?
    Regards,

  • Hide Edit link conditionally in a classic report

    Hi,
    I am using Apex 4.1 and Theme 2.
    I need help in hiding the Edit button for all those rows that has the "Active" field value set to 'N' in Classic Reports.
    By the above means, i dont want users to be able to edit inactive records.
    Each table and each report, I have the Active field but i dont know how to set this condition for the rows.
    This field is there in many reports and many pages in the application and i need some solution to do this for all reports.
    Thanks in advance.
    DS

    There are several examples in my demo application:
    http://apex.oracle.com/pls/otn/f?p=31517:23
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Hide a folder but provide access to the report with in it for XIR2

    Is there any way to hide a folder and provide access to the report in XIR2 while using infoview?

    Hi Ganapathi,
    I have resolved the issue by setting the viewobjects to not specified for that particular group for a partiuclar folder in CMC.
    Now the user in not able to see folder in Infoview but able to access the report within it.
    Regards,

  • Hidden Classic Report - With Download Links

    Hi All,
    I have a requirement.
    I am displaying certain user information through a form i.e with all the fields in the form as READ ONLY / DISLAY ONLY.
    I need a XLS/PDF download button allowing users to click and download the particular details on the page.
    I tried creating a CLASSIC REPORT.
    Made the template as "NO TEMPLATE"
    Gave "&nbsp" values to the headers
    and hide the columns.
    Although it is understood that if i hide/do not show the fields in the report, then the XLS report will be blank.
    Is there any other way of doing it ?
    Thank you,
    Srikumar S

    Hi,
    I tried the way you did it there.
    I am getting the following type of report:
    PAGE_ID     REGION_NAME     REGION_CSV_EXPORT_LINK
    16     Session Participants     f?p=103:16:11124720394425:FLOW_EXCEL_OUTPUT_R66413769667879139003_en
    16     Session Trainers     f?p=103:16:11124720394425:FLOW_EXCEL_OUTPUT_R66413836384202172172_en
    80     sfdsf     f?p=103:80:11124720394425:FLOW_EXCEL_OUTPUT_R3094310823067880_en
    The REGION_CSV_EXPORT_LINK is not enabled:
    I tried making it as a "Standard Report Column", but that didnt work.
    Can you tell me what am i missing.
    Thank you once again.
    Srikumar S

  • 2 Classic Reports with edit fields on the same page

    Hi All, need your help.
    I am trying to have 2 classic reports on one page with edit fields like date, list values, text
    I have noticed that the element indexes are the same f01_0001 have both first elements from both reports.
    This is making my code go crazy.
    Also i have a problem with Date Picker, if i select it as a column type for a first element in second report the icon shows up in the first report.
    I think this is because of indexing, but... Classic Date Picker put the icon on second report but when i select the date, the values is populated to first column in first report
    Does anyone have a solution for this problem! (for example change the indexing for second report)
    DB is 11.2g
    Apex is 4.2.0.00.27
    Thank you,
    Andrei
    Edited by: aracila on Feb 20, 2013 9:03 AM

    Are these tabular forms, ie updteable.
    If so, you can only have one per page
    Gus

  • Classic Report with a two-line row, the second one as a drop down?

    Hi,
    Using APEX 4.0 is it possible to make a classic report layout that has row items sorted in 2 rows? The first row for each SQL record set row looks like the classic report 'normal' row, while the second one contains just one single column value. This second row is supposed to be hidden and should be displayable by clicking a small '+' sign at the beginning of the row.
    I remember having seen this done, but I simply seem not to be able to formulate my query correctly to let Google display me the expected result. Although I am not sure if was APEX+jQuery or ExtJs. I hope though it is not ExtJS, since I do not plan to use that one.
    Thank you in advance.
    Tamas

    Is this for Verizon landline internet? If so, you should ask your question in the Verizon Residential forums. http://forums.verizon.com

  • Classical report with hotspot or interactive screen list help

    Hi Friends,
    I've a classical report (write list format) which have multiple internal tables and showing output as line item format. There, I have to give a interactive list or hotspot command which shows the needed field.
    For Example: if my 1st screen shows
       Decription          Amount
    Sundry Creditors    150,00.
    If i click the description/text, it should call and show the GL account numbers respective to the line text which I have it in another internal table.
    Pls post some examples and good solutions.
    thanks & regards
    sankar.

    Hi Shankar,
    refer tihs link.
    http://software.feedfury.com/content/22514963-sap_abap_3_levels_interactive_report.html
    Regards,
    Charumathi.B

  • Hide number (or format number) on Oracle Report with Barcode

    Hi al !
    i have done a example about print Barcode on Oracle Report
    with help link :
    [http://download-west.oracle.com/docs/html/B10602_01/orbr_barcode.htm|http://download-west.oracle.com/docs/html/B10602_01/orbr_barcode.htm]
    However
    I want to hide number under Barcode images or Format number !
    Ex:
    |||||||||||||| --> images barcode
    1234567 --> number barcode
    i want : hide : "123456" or format it : "123.456"
    Thanks !

    Hello,
    The Image is generated by the java code in oraclebarcode.jar
    It is possible to "hide" a part of the image by puting an object ("rectangle" for example ) over the part of the image you want to hide.
    Regards

  • APEX report with Break columns and BI Publisher

    I am having an issue with APEX and using column breaks when printing to BI publisher.. It seems that when you write an APEX report that breaks on the 1st or 1st and 2nd columns, the grouping shows nicely in APEX, but when BI Publisher gets the XML data, and you do the same grouping using an RTF file, there is a group of rows with NO grouping info that occurs at the top of the report, then each group you expect has just ONE row..
    (Just giving this a bump to see anyone has an idea here..)
    Any suggestions?
    Thank you,
    Tony Miller
    Message was edited by:
    Tony Miller

    WITH clause or Subquery Factoring allows the set of data to be reused multiple times within the SQL. Oracle will usually materialize the data into a temporary table (you will see it if you take an explain plan of the SQL).
    I would be surprised if it was the actual WITH clause that was causing the performance issue, however you can test this by turning the WITH clause feature off. Go to the Physical model, right mouse click on your Database > Properties > Features Tab, scroll down to WITH_CLAUSE_SUPPORTED and switch it off.
    I'd be interested to know if you do see actual improvement.
    Good Luck.

  • Hide column, but show results.

    I am having trouble with hiding columns in BEx Analyser. The trick is not hiding the colomn, but hiding it and still showing the result.
    It is been a long time since someone answered a question of mine on the forums, so I hope this one isn't too difficult as well (or unclear).
    <BR><BR>
    This is the situation:<BR>
    I have two key figures in the Column pane (Actual Cost and Forecast cost) as well as Calender Month.<BR>
    On the rows, it is grouped by Program Position and project.<BR><BR>
    For the key figures I want to do the following...<BR>
    Forecast Cost: I want to see it for every calender month, and a total at the end.<BR>
    Actual cost: I only want to see a total at the end.<BR>
    <BR>
    Each Program position has multiple projects, and I want to see the total for all the projects in a program position.<BR>
    <BR>
    It will look like this:<BR>
    <BR>
    Jan_2007 Feb_2007 Mar_2007 <b>Overall_Result</b><BR>
    Forecast Forecast Forecast <b>Forecast Actual</b><BR>
    ProgPos1 Project1A 10000.00 10000.00 10000.00 <b>30000.00 98010.00</b><BR>
    ProgPos1 Project1B 20000.00 20000.00 10000.00 <b>50000.00 48000.00</b><BR>
    ProgPos1 Project1C 20000.00 20000.00 20000.00 <b>60000.00 59000.00<BR>
    ProgPos1 RESULT 40000.00 50000.00 40000.00 140000.0 205010.0</b><BR>
    ProgPos2 Project2A 10000.00 10000.00 10000.00 <b>30000.00 98010.00</b><BR>
    ProgPos2 Project2B 20000.00 20000.00 10000.00 <b>50000.00 48000.00</b><BR>
    ProgPos2 Project2C 20000.00 20000.00 20000.00 <b>60000.00 59000.00<BR>
    ProgPos2 RESULT 40000.00 50000.00 40000.00 140000.0 205010.0<BR>
    OVERALL RESULT 80000.00 100000.0 80000.00 280000.0 410020.0</b><BR>
    <BR>
    How can I get the actual to only show as a result?<BR>
    My current properties for "Actual" are: <BR>
    Calculate Results As...Summation<BR>
    Calculate Single Values As...Suppress Results<BR>
    Also Apply to results ... not checked (checking it doesn't work)<BR>
    <BR>
    Zero suppression is active on columns.<BR>
    <BR>
    This only works partially, because I get the following results (March column ommited:<BR>
    <BR>
    Jan_2007 -
    Feb_2007 -
      <b>Overall_Result</b><BR>
    Forecast Actual__ Forecast Actual__  <b>Forecast Actual</b><BR>
    ProgPos1 Project1A 10000.00 -
    10000.00 -
      <b>30000.00 98010.00</b><BR>
    ProgPos1 Project1B 20000.00 -
    20000.00 -
      <b>50000.00 48000.00</b><BR>
    ProgPos1 Project1C 20000.00 -
    20000.00 -
      <b>60000.00 59000.00<BR>
    ProgPos1 RESULT 40000.00 40000.00 50000.00 100000.0  140000.0 205010.0</b><BR>
    ProgPos1 Project1A 10000.00 -
    10000.00 -
      <b>30000.00 98010.00</b><BR>
    ProgPos1 Project1B 20000.00 -
    20000.00 -
      <b>50000.00 48000.00</b><BR>
    ProgPos1 Project1C 20000.00 -
    20000.00 -
      <b>60000.00 59000.00<BR>
    ProgPos1 RESULT 40000.00 40000.00 50000.00 100000.0  140000.0 205010.0<BR>
    OVERALL RESULT 80000.00 80000.00 100000.0 200000.0  280000.0 410020.0</b><BR>
    <BR>
    Any ideas?<BR>
    If I check the "Also Apply to results" for either colums or rows, it removes all  the results.<BR>
    <BR>
    Greets<BR>
    Rudolph<BR>

    Rudolph,
    You may want to do this in a copy of your existing query.
    Remove anything in your columns for starters. Let's just look at Actual YTD first and we can do the Forecast afterwards.
    Right mouse click on your Column and select Create Structure.
    Right mouse click on this structure and select Create Selection.
    In the selection dialogue box drag over your time parameter (Fiscal Period), the Value Type = 10, Actual and the key figure. We need to put a variable on Fiscal Period to allow the user enter a From / To range. Suggest that you do not pick a time interval - select a Value Range and then pick two Period single value mandatory selection prompt.
    The reason we pick two prompts, is that when we look at the Forecast we will pick the first value they entered (presumably period 1 year x) and use offsets to create the following 11 periods.
    Regards
    Gill

  • Inactive clients not showing up as inactive in console, but show on inactive client report

    Good morning,
    I have Client Status Reporting installed, configured, and reporting successful database updates on my SCCM 2007 install.  However, the client properties don't list the machines as inactive.  For example, one device on the report says inactive
    but when I right-click > properties on the system object it lists the "active" property as 1 when it should be 0.  Can anyone speculate why this isn't updating?  I need to query my inactive machines to take into account my patch statistics
    for upper management.  If "inactive" isn't 0 then the query won't return any results.  Thanks for any help!

    Yes, I know this is an old post, I’m just trying to clean them up.
    There can be many reason for this, but if I had to guess, I would thing that you have two object in the database with the exact same name, one active and one inactive. To solve the report problem I personally, delete all inactive PCs as
    soon as I find them in the CM07 database.
    http://www.enhansoft.com/

  • How to hide ribbon but show welcome control for all users using security trimmed control in sharepoint 2010

    Hi All,
    I have a requirement to hide ribbon in a document library for the read permission users. I have applied SPSecurityTrimmedControl, it is working for the read permission user but for the whole site it is hiding and also unable to see the welcome control,
    like user name, sign in as different user, etc.,
    <Sharepoint:SPSecurityTrimmedControl runat="server" ID="spTrimRibbon" PermissionMode="All" Permissions="ManageLists">
    I want to apply SPSecurityTrimmedControl to specific list/library with welcome control. Can someone please help me here.
    I Appreciate your assistance...
    MercuryMan

    Hello MercuryMan,
    I guess you have applied your code in master page that's why it is hidden from site. To hide specific list ribbon, go to your list-->and edit the page-->then add content editor webpart and apply below script.
    <SharePoint:SPSecurityTrimmedControl PermissionsString="ManagePermissions" runat="server">
    <div id="s4-ribbonrow" class="s4-pr s4-ribbonrowhidetitle">
    </div>
    </SharePoint:SPSecurityTrimmedControl>
    http://blogs.msdn.com/b/sharepointdev/archive/2012/04/30/how-to-hide-the-ribbon-in-sharepoint-2010-rajeswari-mohandas.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Subtotal in Matrix reports at break groups - very urgent

    Hello,
    I have a matrix group with 2 break groups above.
    So I have
    Group 1
    Group 2
    G_Cross
    G_Column
    G_Row
    The wizard gave me the subtotal for Group2. I cannot figure how I can get subtotal for Group 1 which is the top break group. Please Please help.
    I also wanted to find out if there is a way to show the variable columns only once in the report and not every time the break groups kicks in?
    Thanks a lot in advance.
    -Rishi

    The fact that you have a matrix further down the group hierarchy doesn't affect how you create summaries in the break groups. The wizard only gets you so far. For more advanced functionality you need to go into the data model & layout painter.
    In this case, you need to create a summary column in the "Group 1" break group. Set the source as the appropriate column and the "Reset At" property to "Group 1". To add the summary to the layout; run the wizard (since the column is already there) or manually add a field to the corresponding "Group 1" repeating frame in the layout.
    If you only want to see the break columns on the first page and not every page of the break group then set the following properties:
    PrintObjectOn: FirstPage
    BasePrintingOn: EnclosingObject
    The object will then only print on the first page that the enclosing object prints on. ie: You wont get these objects repeated if the enclosing object extends onto another page.

Maybe you are looking for