Showing data in different group sections

Hi,
I have a report that has 3 sections as shwon below.
Section1
Sum of a group by field1
Section2
Sum of a group by field2, field1 first grouping by field2 and inner grouping by field1
Section3
Sum of a group by field2, field3, field1 first grouping by field2 and inner grouping by field3 then innermost grouping by field1
How to show all the above sections in single report. We want to use crystal report 8.5 version.  Please let me know if its possible by any means. Thank you.
Note that field1,field2,field3 corresponds to database fields.
Edited by: subbulk on May 27, 2010 12:07 PM

So, why are you posting this query to the  .NET Development - Crystal Reports forum? Whay not the [Crystal Reports Design|SAP Crystal Reports; forum?
Moving to Crystal Reports Design
Ludek

Similar Messages

  • How to group measurement data into different groups using TDMs

    Hi, frnds!
    I have designed a labview program for measuring the power current characteristics of a laser diode. I want to save the current and power arrays measured at different temperatures in different groups. I tried to implement this but I was not successful. The current and power measurements at different temperatures are being saved only in the first group and the rest are being empty! Please help me save the measurements in different temperature groups.
    I need this urgently!
    Thanks in advance!
    Kumar

    Perhaps a snippet of the code you are using would help. When you write to the TDMS file with the low level functions, you just need to specify the separate group names. Have you read over  the NI TDMS File Format, Introduction to LabVIEW TDM Streaming VIs, and Writing TDM and TDMS files articles? Have you tried any examples out of the Example Finder?
    As a basic example:
    Certified LabVIEW Developer

  • Show data from different levels of hierarchy in a report

    Hi,
    We have to show Budget Vs Actual for sales. We have multiprovider on two cubes (Plan & Actual).
    We want to report using Customer Hierarchy.
    Customer hierarchy is like -
    Level 1
    ---> Level 2
    > Level 3
    > Level 4
    > Customer1
    > Customer2
    > Customer3
    > Customer4
    Actual data is avbl  at Customer but Budget is at avbl only upto Level1 or 2 . 
    Budget Infocube structure
    Level1     Level2     Material     Calmonth          Sales QTy
    Actual Infocube structure
    Customer     Calmonth     Material          Sales Qty
    So how to create a BEx query so that I can show Budget Vs Actual for avaialble data?
    If I drill down uptp Level2 it will show Budget Vs Actual and for further drill downs only actual data.
    Thanks,
    Vikram.
    Edited by: Vikram Kate on Jan 2, 2011 12:46 AM

    Any suggestion/ idea pls.
    I am sure this is a valid requirement. If anyone know how to do it,  pls let me know.
    Edited by: Vikram Kate on Jan 21, 2011 1:04 PM

  • How to show data from different tables in database in ADF Jdeveloper 11g R2

    Hi,
    My requirement is to display the data in the grid (html > table), the data is to be displayed from more than one table in a single grid and thereafter I am supposed to display the sum of some of the records in another table, I am confused about this, plz help.
    Rajat

    The view link is generally used to relate two view objects together in the AMs data model, for example in a master-detail relationship. If you use them properly, ADF takes care of coordinating master/detail records - for example, ensuring that the detail record has the correct FK to the master record.
    Have you read the Fusion Developers Guide for ADF? [url http://docs.oracle.com/cd/E26098_01/web.1112/e16182/bcquerying.htm#CEGJCAHC]This section, for example?
    John

  • Business Objects PDF showing Date format different

    We recently upgraded to SP3 on our Crystal Server, and now when we run a report, our code we have for our footer timestamp totext (DataDate) + totext (DataTime) now shows as mm/dd/yyyy instead of dd-mmm-yy.  Is there a seting on the BO server that needs to be made to get the date format to show correctly?
    Edited by: Peter Slonicki on Jul 11, 2008 1:19 AM

    On the server or in BO Crystal Server application?

  • Will a Union handle this? Showing aggregates from different groups on the same row

    So I want to display a result that includes a sum of the transaction amount for a list of orders.  Each order can have items, and each item has a transaction amount.  
    Then I have a goal table that keeps track of the "goals" set for a simple forecasting method used by sales.  A goal is defined for each item type and a count.
    Table structures are like this
    DECLARE @OrderTran AS TABLE(RowId INT PRIMARY KEY IDENTITY(1,1) NOT NULL, OrderId INT, ItemId INT, ItemAmount DECIMAL(10,2) )
    DECLARE @GoalData AS TABLE(RowId INT PRIMARY KEY IDENTITY(1,1) NOT NULL, ItemTypeKey INT, ItemGoalCount INT )
    The problem with getting totals for both order transactions AND goals, is there there might not be items in some of the orders for the items that goals set for.  So If I grab the order totals first, then left join on goals, I still might miss out some
    of the goal results when I do an aggregate.
    Should union help here?
    In other words, get a result from the order totals
    Then get a similar result from the goals
    Then union the 2 results?

    Are you looking for something like below:
    DECLARE @OrderTran AS TABLE(RowId INT PRIMARY KEY IDENTITY(1,1) NOT NULL, OrderId INT, ItemId INT, ItemAmount DECIMAL(10,2) )
    DECLARE @GoalData AS TABLE(RowId INT PRIMARY KEY IDENTITY(1,1) NOT NULL, ItemTypeKey INT, ItemGoalCount INT )
    INSERT INTO @OrderTran
    VALUES (1, 1, 10), (2, 1, 22), (3, 2, 12), (4, 1, 50), (5, 2, 100)
    INSERT INTO @GoalData
    VALUES (1, 100), (3, 200)
    SELECT
    COALESCE(O.ItemID, G.ItemTypeKey, 0) As ItemID
    ,O.TotalAmount
    ,G.TotalGoalAmount
    FROM
    SELECT ItemId, SUM(ItemAmount) As TotalAmount
    FROM
    @OrderTran
    GROUP BY
    ItemID
    ) O
    FULL OUTER JOIN
    SELECT ItemTypeKey, SUM(ItemGoalCount) As TotalGoalAmount
    FROM
    @GoalData
    GROUP BY
    ItemTypeKey
    ) G ON O.ItemID = G.ItemTypeKey
    Output
    ItemID | TotalAmount
    | TotalGoalAmount
    1 | 82.00
    | 100
    2 | 112.00
    | NULL
    3 | NULL
    | 200
    Best Wishes, Arbi; Please vote if you find this posting was helpful or Mark it as answered.

  • How to Show data in grouping with check boxes.

    Hi Experts,
    I am new to ADF and want to resolve one issue for my urgent project requirement.
    My Problem is :
    In Employee, Department relationship i need to show data in a grouping of departments like for Marketing department all the related employees should come in a single column.
    eg .
    Dept Name Emp Name
    Marketing Akshay Nitin Ritu
    Sales Neeraj Vikas Venu
    * All these department names and employees should come with check boxes and if i select one department all the employees should be checked.
    Please Please suggest any solution asap.
    Many Thanks in Advance.
    Regards,
    Nitin
    Edited by: user10980736 on Feb 7, 2011 8:32 AM

    hi,
    You can create two value nodes for storing these collections. The first one would be singleton node as it is the main list. Under that create the second node with singleton = false.
    e.g.
    ---NodeA
        --attrA1
        --attrA2
        --NodeB(singleton = false)
                --attrB1
                --attrB2
    Now populate collection of object A in NodeA and after adding element in NodeA populate respective elements in NodeB.
    IPrivate<View>View.INodeANode nodeA = wdContext.NodeAnode();
    for (Iterator  it = collectionA.iterator(); it.hasNext(); )
         ObjectA objA= it.next();
         IPrivate<View>View.INodeAElement nodeAElem= nodeA.createNodeAElement();
         wdCopyservice.copy Corresponding(objA,nodeAElem);
         nodeA.addElement(nodeAElem);
         Collection collectioB =objA.getCollectionB();
         for (Iterator  it1 = collectionB.iterator(); it1.hasNext(); )
             ObjectB objB= it1.next();
            IPrivate<View>View.INodeBNode nodeB = nodeAElem.nodeBnode();
            IPrivate<View>View.INodeAElement nodeBElem= nodeB.createNodeBElement();
            wdCopyservice.copy Corresponding(objB,nodeBElem);
            nodeB.addElement(nodeBElem);
    Bind NodeA to the first table and NodeB to second one.
    After that when you select record in first table automatically its corresponding records will be populated in second table.
    Hope this helps!
    Monalisa

  • How to filter the data in different sections (e.g. Report Footers)?

    Hi,
    I am using Crystal Reports 11 to generate cross-tables.
    I plan to generate 3 cross-tabs, and each cross-table will be put in a section. For example, cross-tab1 in Report Footer a; cross-tab2 in Report Footer b; cross-tab3 in Report Footer c.
    I know use "Select Expert" to filter data. But, it seems that "Select Expert" filters data for the whole report.
    I want to filter the data for each cross-table separately. For example, filter cross-tab1 based on condition1; filter cross-tab2 based on condition2; filter cross-tab3 based on condition3.
    How to filter the data in different sections (e.g. Report Footers)?
    Thank you in advance.

    Hi,
    Now that you've inserted the subreport just right-click the sub-report and click Edit. The Design page for sub-report should open up.
    You can now insert the cross-tab on the Report Header and insert a record selection formula of your choice.
    Also, suppress all the other sections of the subreport so the Main report only shows the crosstab without any spaces.
    Do the same for all the subreports.
    -Abhilash

  • Displaying a group of data in different Pages

    Hello
    I will try to explain my Problem below briefly
    I have a problem with displaying a group of data in different Pages.I want to display a group of data like this:
    page1      page2
    data1Part1      data1Part2
    Page3     Page4
    data2Part1      data2Part2
    Page5     Page6
    data3Part1      data3Part2
    page 7     Page 8
    data4Part1      data4Part2
    What I get is :
    page1      page2
    data1Part1      data2Part1
    Page3     b]Page4
    data3Part1      data4Part1
    Page5     Page6
    data2Part2      data3Part2
    page 7     Page 8
    data4Part2      data4Part2
    I test <?for-each-group@section:ROW?> and Different first page etc. It doesn't work.I would appreciate your help. I can send you the output, template and xml doc, if you can have a look at it.
    Thanks

    Send me all files along with expected output at [email protected]

  • Why does my iTunes show apps in two different groups?

    When I open my iTunes 10 and look at the Apps tab, it shows my iPhone and iPad apps distributed amongst two different groups: iPhone, iPod Touch and iPad Apps and iPhone and iPod Touch apps.  I don't really understand this as I don't have a iPad.  An I only loaded a few apps to my iPod Touch years ago.  Seems to me that the Listing should be showing apps sorted by the "Authorized Devices" to which they have been installed.
    Another complication is that I have two Apple Store accounts...my US account from when I bought my first iPod Touch while living in the US and then a Thai account since I am living in Thailand and it makes payment easier.  Isn't there a way to see the apps loaded into my Library sorted by Apple Store account??
    Apple software is becoming more and more like the Microsoft products we all love to hate.  Sadly, ease of use for the user is out the door.  It's why I continue to use iTunes 10 and OS 10.6.8...stable and I know what I get and don't get already :-?
    Thanks for the feedback.

    You got it right.  Thank you.

  • My contacts are organized in different groups. An iPhone trade show app (Vinexpo) displays exhibitors infos and allows to create new contacts. Is there any way to save a new contact in a specified group instead of the contacts root? Thks in advance

    My contacts on my iPhone are organized in different groups. I have downloaded a trade show app which gives infos on the exhibitors of the show. It offers to create new contacts from these info. Is there any way to save these new contacts in a specified group instead of putting them into the contacts root, where they are mixed with all the old ones? By the way, can we create a new contacts group directly from the IPhone, without having to go through the sync process with the PC?
    Thanks a lot in advance

    Sorry, I forgot to bookmark the thread where the app was mentioned, but searching for "group" or "contacts" should bring a few results in the AppStore.

  • Is it possible to show data from two different sql tables?

    Is it possible to show data from two different sql tables? Either to show combined data by using a join on a foreign key or showing a typical master detail view?
    I have one table With data about a house, and another table With URL's to images in the blob. Could these two be combined in the same Gallery?
    Best regards Terje F - Norway

    Hi Terje,
    If you have a unique key, you could use one of the following functions for your scenarios:
    If you only have one image per house, you can use LookUp:
    http://siena.blob.core.windows.net/beta/ProjectSienaBetaFunctionReference.html#_Toc373745501
    If you have multiple images per house, you can use Filter:
    http://siena.blob.core.windows.net/beta/ProjectSienaBetaFunctionReference.html#_Toc373745487
    Thanks
    Robin

  • Displaying a group of  data in different colums

    I have a problem with displaying a group of data in different colums. I want to display a group of data like this:
    Column 1 --- Column2 ----- Column3
    data1 data6 data11
    data2 data7 data12
    data3 data8 data13
    data4 data9 data14
    data5 data10 data15
    That is, the coulm headers must be at the same height of the page and data must be in paralell columns.
    My number of data is variable depending on a query result, and I want to start displaying my group on the first column and when it is full (the number of records per column is fixed), is must switch into the next one.
    In case there were more than 15 records, the 16th and the followings, must be displayed on the next page, with the same format as i have explained before.
    Thank you very much.

    Send me all files along with expected output at [email protected]

  • Explain me briefly about evaluation order.As per my knowledge it show data type order.but I have different data type in same diemension ex:account- acc_001 is smart list data type.account-ac_002 is percentage.So fot this i will accont dim in evaluation or

    Explain me briefly about evaluation order.As per my knowledge it show data type order.but I have different data type in same dimension ex:account->acc_001 is smart list data type.account-ac_002 is percentage.So fot this i will accont dim in evaluation order.What going can any one explaining brifly ?

    2786712 wrote:
    thanks John for reply.If you dont mine can you explain clearly with example and screenshot.
    @John: You got a task
    Here you go: Hyperion Planning and More...

  • Group xml data from different sql queries in data template

    Hello,
    I need to do a mailing program with bursting that sends differents alerts in one mail.
    For example i can have alerts for late orders, alerts for shipping not confirmed, so really different address (I dont want to use union). I have done three sql statement in data template , it gives the following ouput.
    <GA_EMAIL>[email protected]</GA_EMAIL>
    <G_ALERTS_1>
    <ALERT>
    </ALERT>
    <ALERT>
    </ALERT>
    </G_ALERTS_1>
    </GA_EMAIL>
    <GA_EMAIL>[email protected]</GA_EMAIL>
    <G_ALERTS_1>
    <ALERT>
    </ALERT>
    </G_ALERTS_1>
    </GA_EMAIL>
    <GA_EMAIL>[email protected]</GA_EMAIL>
    <G_ALERTS_2>
    </G_ALERTS_2>
    </GA_EMAIL>
    I woud like the bursting or data template to group alerts when email is the same, because here it sends an email for each different alert.
    Ideal output would be:
    <GA_EMAIL>[email protected]</GA_EMAIL>
    <G_ALERTS_1>
    <ALERT>
    </ALERT>
    <ALERT>
    </ALERT>
    </G_ALERTS_1>
    <G_ALERTS_2>
    </G_ALERTS_2>
    </GA_EMAIL>
    But I don't know how to group different sql statements on a common field (email)
    Any ideas ?
    Thanks

    the for-each group works well in a rtf template, but the rtf template is only applied after the bursting (in order I get first data template (instead of a report) -> bursting -> rtf template)
    I want to be able to group xml data from the data template, so I can do bursting (by email ) but only once per mail.

Maybe you are looking for

  • Invoice related Issue

    Dear Gurus, If the invoice is not going to generate the accounting document, system should not allow the user to save the invoice. Every month we are facing the problem of invoices not posted to accounting because of variuos reasons like account det

  • Product didn't work. I want a refund. How do I contact customer service to get one?

    Product didn't work. I want a refund. How do I contact customer service to get one? I can't seem to find an email address or phone number. All I could do was turn off auto-renewal.

  • Tree Structure in a CE Web Dynpro Table

    Hi, Anyone has any idea how to do it in the CE Edition? I've tried to follow the steps of the older versions and it didn't work: http://help.sap.com/erp2005_ehp_03/helpdata/EN/bc/601c420d84db2ce10000000a1550b0/frameset.htm Thanks and regards, Eduardo

  • Valuated/Non valuated SAles Order Stock

    Hi, Can anyone explain the  difference between Valuated & Non valuated Sales order Stock Thx & Regards

  • How can i see  the unchecked  checkboxes

    Hi i have a report like SELECT asthenis.a_price, asthenis.i_pos, round( (a_price -nvl(a_timi_analos,0))*nvl(i_pos,0)/100 ,2) i_meridio , asthenis.a_timi_analos , state_iatroy, HTMLDB_ITEM.CHECKBOX(1,asthenis.a_id,DECODE(state_iatroy,1,'CHECKED',null)