CROSS TAB SAP REPORT COLUMN GRAND TOTAL - model-view-controller

Hi there I have designed a cross tab report. I can sum the rows columns upon which cross tab is working. But there are some columns which are not part of cross tab How Can I summarize them in Group or Grand total? Here is sreen shot of my report. I want to Show the total of Opening Balance and Closing balance columns in sub total and Grand total

Related

SSRS merge rows vertical in a single column

I'm looking to merge vertical rows for only a single column of my report, so that when that column has lots of data, it doesn't force the left rows to expand.
The answer appears to be using a matrix (e.g. SSRS tablix Merging cells vertically problem), but I'm not clear how it would work in this case.
For example, in the screen-shot below, I'd like to spread the confirmation footer text through the following 4 rows, so that the first row (Sales Contact, Angela Thomson, Confirmation Footer, The credit card used...) is the same width as the others and that the Sales Contact info on the left is not pushed down (i.e. the Title row should be just below Sales Contact, and not have all that space in between.
Any thoughts on this?
You could use a series of nested tablixes. Create each tablix in your report then drag and drop into the main tablix until you get the effect you're after. (nested data regions reference).
Here's the design of 3 nested tablixes
Here's the preview of the report

KIBANA Split Bar Chart using Sub-Aggregation bucket issue

I am trying to sub-group orders per stock label (e.g: USD/CAD) and then to display its orders' price.
I split the orders chart per sub-group. The sub-group works partially, it doesn't show the right number of orders inside (every sub-group Label should have 40 orders inside but it display 80 orders). Also, the price of each order inside is not displaying the correct price.
So the 2 issues are:
The price of each order inside each sub-group is wrong. They display all the equal same value which is not the correct price. The picture below shows the JSON input data with the correct order price that should be displayed. How can I display the correct value?
And the second issue is the sub-groups show more orders then it should. I have 40 orders inside each label and the number of orders displayed is 80 per sub-group.
Still cant get it after aggregating first per order id, then per Label and in the end summing per order price.
After trying the fix, the price keeps displaying the wrong price per order and also don`t expand the 6 labels as the picture below shows

display one Measure for all dimensions sequentially in CrossTab table

I'm new in using BIRT Report designer, My customer need report to be displayed as listing Sum of remittances for each currency horizontally then listing counts of remittances for each currency horizontally as in attached sample
any suggestions please?
Thanks in advance :)
Create a datacube based on your original dataset. Now create two groups. One on 'country' and one on 'Currency' (ie EURO, DOLLAR)
Next create the two measures. Count(...) and sum(amount)
Drop a crosstab on your report canvas.
Use the dataexplorer to drag and drop groups/measures. Put the country group on the left and the currency group on the top.
Now drag and drop the two measures. Just drop the second one 'under' the first one and BIRT will automatically create two columns next to each other.
This wil result in something slightly different then requested though:
It will look like
| | EURO | Dollar |
-------------------------------------------------------
| Country | sum | count | sum | count |
I'm not sure if you can turn that around, but I think you have to try to be creative with the groups.

Need to show "GRAND TOTAL" as a row header in OBIEE

I have a UNION report which contains 2 criteria. First Criteria contains all the individual values i.e. Student ID, Maths Mark, Science Marks. The 2nd criteria contains the TOTAL of Maths and Science Marks of all the students. In the 2nd criteria I need to show GRAND TOTAL as a ROW HEADER. How can be achieved?
You will need to create a pivot table:
Create a pivot table view, then Edit the pivot table view and move the attributes to the desired sections (Rows, Columns, and Measures). Drag and drop them until it looks like what you need.
In the pivot table view editor pane, next to the TOTAL column, change the Default Aggregation to Sum.
Next to the Student ID column (I presume it should be under the Rows section of the pivot table), click on the Sigma icon (Σ) icon.
Change the aggregation to display "Before" (I assume by Row header, you mean that you need the GRAND TOTAL to display to the left of the Student's marks.
Please let me know if this helps.

JQGrid Grouping Event

I would like to know if there is any event that I can use while grouping to add an additional subtotal row(on top of each total) for each grouping key.
By Default afterInsertRow does not fire if grouping is enabled.
Any way to achieve this?
More details updated:
Hi Oleg, currently I am grouping the jqgrid by category column(I am displaying list of products). So for each category I am able to see the total column(summary). This works perfectly fine when I am fetching only active products. But I have a scenario when I am showing Active and inactive products the I want to additionally add another subtotal summary row where I aggregate only the inactive rows. The total summary row for each group should aggregate active and inactive rows and that is working fine as well. I just need a way to display the subtotals summary row only for inactive rows. This subtotal row should sit just above the total row for each group. I hope this makes sense you to.
I hope that I correctly understand your requirements. Probably you can just group by two columns groupField: ["category", "inactive"]. You can additionally consider to display the summary in the header: groupSummaryPos: ["header", "header"]. As the result you will have not exactly what you asked, but the grid will have very close information.

Resources