Need Total of a Measure Constantly without aggregation

Hallo Experts,
I Need to show Total of a Measure Constantly without aggregation in Webi in one column.
The requirement is to show following
Supplier Name
No. Deliveries
Total Deliveries
A
1
43
B
2
43
C
2
43
D
4
43
E
3
43
F
6
43
G
0
43
H
8
43
I
6
43
J
5
43
K
3
43
L
2
43
M
1
43
N
0
43
I am using following formula" =sum(No. Deliveries) In (Supplier Name)
(I have used Forall and foreach functions also but they are splitting per supplier)
It is delivering values correctly.
But when we do ranking for top ten suppliers, it showing total for only for those ten suppliers. Like below
Supplier Name
No. Deliveries
Total Deliveries
A
1
37
B
2
37
C
2
37
D
4
37
E
3
37
F
6
37
G
0
37
H
8
37
I
6
37
J
5
37
But the requirement is to show Total deliveries for all suppliers no matter how many suppliers we show.
Please provide me with any suggestions.
Thanks in Advance
Indra

Solved it with "=nofilter(Sum(No.Deliveries) in (Supplier Name))
Thanks

Similar Messages

  • How to set Grand Total of a Measure when its aggregation rule is Max in Logical Layer

    Hi
    I have a Measure Column (Budget) and in Logical layer the aggregation rule is set as (Max) which looks like Max(Budget). But now it is included in the report and when my client is trying to see its grand total, it is giving the Max Budget figure of the report rather than giving the total sum(grand total).
    Kindly share some ideas in achieving the grand total without disturbing the actual aggregation of the measure.

    Thank You for your reply.
    In my case i don't have a problem with aggregation for Budget Measure(max(Fact_XXKC_SHIP_TO_BUDGET_CAT_F.SALESREP_BUDGET_YTD)). This is the aggregation rule applied on the Salesrep Budget YTD.
    Now i created a report with columns
    Salesrepresntative(Dimension),, Sales Invoices(Measure1),, SALESREP_BUDGET_YTD(Measure 2).
    In the above report the values are perfect, but when we used Grand total option at ROW level in table view, the grand total of Measure1 is cumulative of all the rows, but the Grand total of SALESREP_BUDGET_YTD (measure2) is the max of all the columns.
    What i require is the Grand total of SALESREP_BUDGET_YTD (measure 2) should be cumulative of all the columns.
    I have shared my SQL query, kindly verify it and share any idea.
    select sum(case when T97600.W_XACT_TYPE_CODE = 'Chargeback' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c1,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Credit Memo' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c2,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Debit Memo' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c3,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Standard Invoice' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE when T97600.W_XACT_TYPE_CODE = 'Invoice Cancellation' then T93664.NET_AMT * -1 * T93664.GLOBAL1_EXCHANGE_RATE end ) as c4,
      T315597.XXKC_RESOURCE_NAME as c5
      from
      W_CUSTOMER_LOC_USE_D T315597 /* Dim_W_CUSTOMER_LOC_USE_D_Status */ ,
      W_SALES_INVOICE_LINE_F T93664 /* Fact_W_SALES_INVOICE_LINE_F */ ,
      W_XACT_TYPE_D T97600 /* Dim_W_XACT_TYPE_D_Sales_Ivclns */
      where ( T93664.XACT_TYPE_WID = T97600.ROW_WID and T93664.DELETE_FLG = 'N' and T93664.XX_SHIP_TO_LOC_USE_WID = T315597.ROW_WID )
      group by T315597.XXKC_RESOURCE_NAME
      ) D1 full outer join (select max(T313184.SALESREP_BUDGET_YTD) as c1,
      T315597.XXKC_RESOURCE_NAME as c2
      from
      W_CUSTOMER_LOC_USE_D T315597 /* Dim_W_CUSTOMER_LOC_USE_D_Status */ ,
      XXKC_SHIP_TO_BUDGET_CAT_F T313184 /* Fact_XXKC_SHIP_TO_BUDGET_CAT_F */
      where ( T313184.SITE_USE_WID = T315597.ROW_WID )
      group by T315597.XXKC_RESOURCE_NAME

  • I ordered a new phone and shipped it to a friend in Dubai, UAE. without knowing i have to activate it by making 5minutes calls, please i need a way to activate it without sending it back to the US..any help? this has been very frustrating for me this past

    I ordered a new phone and shipped it to a friend in Dubai, UAE. without knowing i have to activate it by making 5minutes calls, please i need a way to activate it without sending it back to the US..any help? this has been very frustrating for me this past few days

    scottxx,
    That was very nice of you to provide your friend with a new phone! I am sorry to say that the device will not be able to activate while in Dubai. For a device to activate it must connect to the VZW network to become active. I apologize for any inconvenience.
    LindseyT_VZW

  • I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?

    I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?
    I use Keynote 09

    Select the image you want to change and go to Format Menu>Advanced>Define as Media Placeholder (or command, option, control i).

  • Cube with aggregation more slow that a cube without aggregation

    Hi,
    I have a SSAS 2012 database that I am trying to tune to give more performance.
    I improve several best practices like define attribute relationships between attributes and also create aggregations (with bids helper) to try so tune the speed of the query.
    But every time I compare my Cube with the old without aggregations the times are almost the same.
    I run the Sql profiler and I saw that the aggregations are used but at the end a Query Subcube is always done I increase the duration of the query.
    If my query can get all from the aggregation it's usual to do at the end a Query SubCube ?
    In the Old Cube no aggregations are used and all information is used by the partition and query Subcube.
    Thanks,
    Manuel Gomes

    Hi Gomes,
    If I understanding correctly, you encounter performance issue when using SQL Server Analysis Services. Since not know the structure of you SSAS database, it hard to give your the root reason that cause the performance issue. I'd suggest you enable SQL
    Sever profiler to monitor the queries fired by the process, once you find some queries took a very long time to run, consider creating the smaller cube partition or optimzing the query by adding index or partition to improve the query performance.
    Here are some links about performance tuning, please see:
    http://www.mssqltips.com/sqlservertip/2565/ssas--best-practices-and-performance-optimization--part-1-of-4/
    http://technet.microsoft.com/en-us/library/cc966527.aspx
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

  • I need total stock transfer value for a month

    hi
    i need total stock transfer value for a month
    where can i see
    guna
    Edited by: sdnguna on Sep 5, 2009 12:34 PM

    Hi
    MB51 is the T code through which youcan get the data for Stock Transfer based on Movement Types, i Guess it is 251. Check with your MM Consultant for exact movement type.
    Regards
    Sanil Bhandari

  • I have all the documents, but can't locate my discs - need iphoto and can't get without the original.

    I have all the documents, but can't locate my discs - need iphoto and can't get without the original.

    If you buy used you have to be careful.  I am not sure what software came with which system versions and which computers but the iLife application history is complex.  If you end up looking for "original" discs such as those that came with your computer, make sure iPhoto was part of it, and make sure the discs you buy are really identical to the ones for your computer model.  A lot of people sell gray colored discs as installer discs, but the versions are machine specific so getting any old Tiger installer may not work on your computer.  Unfortunately the universal Tiger installer may not have iPhoto. Maybe somebody more familiar with the iPhoto history can provide specific advice.
    An alternative is to look for a used iLife series that will work on your computer.  Again, this will have to be used.  Apple's staying ahead of the curve basically means those of us with old machines are left to fend for ourselves as best we can.

  • Configuring measures with custom aggregation for hierarchies

    Can I Configuring different measures with different aggregation for hierarchies . in AWM the aggregation for measures are disabled, am I missing something.
    For example
    Dimension : supplier
    Measure : risk score
    Aggregation : maximum
    Dimension : supplier
    Measure : spent
    Aggregation : sum

    Yes it is possible. But make sure that you have turned the compression off in the cube

  • Delete Measure Folder without AWM 11.1

    Hello,
    a measure folder went invalid, after deleting a cube from the aw.
    Now I can't connect to the aw using awm. (It throws a ora-04023)
    Is there a way of deleting the Measure Folder without AWM?
    Somethink like this???
    begin
    dbms_cube.import_xml( to_clob(
    '<Metadata Version="1.0">
    <???OrganizationalSchema??? Name="NAME_OF_MF" Action="REMOVE"/>
    </Metadata>'));
    end;
    Version is 11.1.0.7.
    Thanks a lot!
    Ed

    You should be able to delete a measure folder using PL/SQL. I just tested this by creating a measure folder named MF1 using AWM. I then detached the AW in AWM and executed the following using SQL*Plus.
    SQL> select measure_folder_name from user_measure_folders;
    MEASURE_FOLDER_NAME
    MF1
    begin
    dbms_cube.import_xml( to_clob(
    '<Metadata Version="1.0">
    <OrganizationalSchema Name="MF1" Action="REMOVE"/>
    </Metadata>
    end;
    PL/SQL procedure successfully completed.
    SQL> select measure_folder_name from user_measure_folders;
    no rows selected
    If this doesn't work for you, then you may have discovered a bug. Let me know if there is a problem, including any error message you may get.

  • HT4847 My kids have downloaded tons of free games apps from iTunes.  I need to free some iCloud space without having to upgrade my account.  How do I delete those apps in the cloud?

    My kids have downloaded tons of free games apps from iTunes.  I need to free some iCloud space without having to upgrade my account.  How do I delete those apps in the cloud?

    Apps can't be deleted from iCloud as they only reside in the App store.  Also, the apps themselves aren't taking up space in your iCloud account.  They only thing in your iCloud account would be the app data that is backed up as part of their iCloud backup, but this generally doesn't use much space.  You can check how much is being used, and eliminate specific apps from being included in the backup, by going to Settings>iCloud>Storage & Backup>Manage Storage on their device, tapping the name of their device under Backups, then checking the apps listed under Backup Options (tap Show All Apps to see them all).  Turn an app to Off to exclude its app data from being backed up.
    This article may be of interest as it discusses ways to manage and reduce iCloud storage: http://support.apple.com/kb/ht4847.

  • How do I combine 39 files totalling approx 10,000 pages without adobe crashing?

    How do I combine 39 files totalling approx 10,000 pages without adobe crashing?

    What "adobe" is crashing: Acrobat or PDF Pack on Acrobat.com ?

  • Creating a cumulative total by day measure which resets each month.

    Hi,
    I need to creative a cumulative total measure (or calculated column) which accumulates my revenue sales for each day in a month, but resets each month.
    I've created an example below:
    The dates are from a linked date table and are based on a fiscal year.  When the months are collapsed the months can either accumulate or stay fixed to the max for the month, that does not affect me.
    I have tried various attempts using the guides below and I'm sure the answer is there but I can't get the filtering right.
    I can get it to work but accumulate since the start of my data but this is not what I need.
    http://www.daxpatterns.com/cumulative-total/
    http://javierguillen.wordpress.com/2012/11/28/running-total-techniques-in-dax/
    Thanks.

    It appears that your months align with the standard calendar's months. I.e. your fiscal calendar's October always aligns with regular October. If this is the case, then you can simply use the built-in time intelligence function TOTALMTD().
    MTD Measure:=
    TOTALMTD(
    [Measure]
    , DimDate[Date Field]
    If this is not the case and your month does not always line up with the standard calendar month, you can implement identical behavior with this FILTER():
    Custom MTD Measure:=
    CALCULATE(
    [Measure]
    , FILTER( ALL( DimDate )
    , DimDate[Month Number] = MAX( DimDate[MonthNumber] )
    && DimDate[Date Field] <= MAX( DimDate[Date Field] )
    Both of these will give identical behavior:
    At the day level, they will show the running total for the current month, including the current day.
    At the month level, they will show the total for the month.
    At the quarter level and above (semester, year, decade, ...) they will show the total for the last month in that period. E.g. for a standard year, they will show December's total.
    If these don't work, please provide more details about your date dimension, your data model, and how you are constructing your pivot table, preferably all in the form of a copy of your workbook on OneDrive or similar.

  • How to Maintain Cube without Aggregating the incoming data

    Hi All,
    I have a process which loads a cube and then aggregates the incoming data. The PL/SQL procedure is as below.
    CREATE OR REPLACE PROCEDURE load_actual AS
    xml_clob clob;
    xml_str varchar2(4000);
    isAW number;
    begin
    DBMS_LOB.CREATETEMPORARY(xml_clob,TRUE);
    dbms_lob.open(xml_clob, DBMS_LOB.LOB_READWRITE);
    dbms_lob.writeappend(xml_clob, 183, ' <BuildDatabase Id="Action4" AWName="FIN_AW.FINAW" BuildType="EXECUTE" RunSolve="true" CleanMeasures="false" CleanAttrs="false" CleanDim="false" TrackStatus="true" MaxJobQueues="0">');
    dbms_lob.writeappend(xml_clob, 42, ' <BuildList XMLIDref="ORG_ACTUAL.CUBE" />');
    dbms_lob.writeappend(xml_clob, 18, ' </BuildDatabase>');
    dbms_lob.close(xml_clob);
    xml_str := sys.interactionExecute(xml_clob);
    dbms_output.put_line(xml_str);
    end;
    As per my requirement I have to flip sign for some leaf level dimensions after the cube load and then re run the aggregate. If I go with this script I will end up aggregating my data twice.
    My question is how do I modify this script so that the records are loaded in the cube but the aggregate does not run.
    I tried by changing RunSolve="true" parameter as below but still it is solving the data.
    dbms_lob.writeappend(xml_clob, 184, ' <BuildDatabase Id="Action4" AWName="FIN_AW.FINAW" BuildType="EXECUTE" RunSolve="false" CleanMeasures="false" CleanAttrs="false" CleanDim="false" TrackStatus="true" MaxJobQueues="0">');
    My cubes are compressed, partitioned and I am using Oracle 10.2.x.
    Please provide your suggestions if I missing something here ?
    Thanks,
    Vishal

    10g Cubes have a property called 'AutoSolve'. As far as I understand, if this is set to YES, then the aggregation will happen automatically whenever you build the cube. I may be missing something, but the RunSolve property of the BuildDatabase command does not seem to be used.
    In AWM the "AutoSolve" property appears to correspond to the check box
    "Use Default Aggregation Plan for Aggregation"
    in the "General" tab for the cube. In order to uncheck this you also need to uncheck "Use Compression" on the "Implementation Details" tab.
    As an example, I created a cube named C1 with the box checked and then exported the XML.
    <Cube Name="C1" LongName="AMERICAN::C1" ShortName="AMERICAN::C1" PluralName="AMERICAN::C1" Id="C1.CUBE" Schema="GLOBAL" UseGlobalIndex="false" SparseType="COMPRESSED" DefaultDataType="NUMBER" AutoSolve="YES">
    I then created cube C2 with it unchecked.
    <Cube Name="C2" LongName="AMERICAN::C2" ShortName="AMERICAN::C2" PluralName="AMERICAN::C2" Id="C2.CUBE" Schema="GLOBAL" UseGlobalIndex="false" SparseType="STANDARD" DefaultDataType="NUMBER" AutoSolve="NO">
    The compression check is enforced by AWM. I hand modified the XML for cube C1 to switch AutoSolve to NO and used it to recreate the cube without errors (as a compressed cube). I don't know if there will be any issues downstream.

  • Need help booting from DMG file without DVD drive

    okay so i have 6 computers with me right now. i need to use one that has a dvd drive to install it on a comp that doesnt via firewire.
    1- macbook with superdrive and os 10.5 (cant even open tiger install because its a new macbook
    2-iBook g4 with DVD drive BUT the firewire port is broken
    3-iBook g3 (one that needs tiger but only has a cd drive)
    4-ibook g3 (without dvd drive)
    5-powerbook g4 with dvd drive and firewire (for some reason will not read the tiger discs i just burned, even though ive already used them on the ibook g4
    6-mac pro with firewire and dvd drive, but the dvd drive is broken.
    so seems to me, every computer i have has a weakness for exactly what i need. what i need to know now is if i can boot the powerbook g4 from a DMG file of tiger install disc 1 and install is to the target ibook through firewire. if you have any suggestions on what i should try with the supplies mentioned above, please inform me. thanks!

    what i need to know now is if i can boot the powerbook g4 from a DMG file of tiger install disc 1 and install is to the target ibook through firewire.
    You can't unless the PowerBook is running Mac OS X Server, in which case the NetInstall feature can be used.
    (38733)

  • BPC 7.5NW SP8 PERIODIC APP–EVDRE TOTALS USING YTD MEASURE ARE INCORRECT

    Hello u2013
    I have 4 application sets with periodic applications in which all measures are set up exactly the same in BPC 7.5 NW SP8. Time in each of the appsets includes months, quarters, seasons and year. Measures include Periodic, QTD, STD, YTD and Rolling12. All measures work correctly with the exception of one application in which the YTD measure is summing incorrectly. This issue exists in both the DEV and PROD environments for this application.
    The Time dimension is maintained using fiscal years. The fiscal yearu2019s months run from February -> January. Time uses the same setup in all 4 appsets.
    The following steps have been taken in an attempt to fix this issue:
    1.     Verified the Time dimension hierarchy and levels are set up correctly
    2.     Cleared client cache
    3.     Deleted Time dimension .xls, .xlt and .xml files from the BW and re-processed the dimension
    4.     Ran light and full optimizations
    5.     Verified the formula in the BW for this app is the same as the formula in the other apps
    6.     Refreshed client-side dimension files
    7.     Used the How-to-guide u201CHow to Maintain Measure Dimension for BPCu201D and verified the UJA_FORMULA_APP table and UJA_API_DATA_CHECKER function module are maintained automatically and no missing entry messages exist
    8.     Deleted the PARENTH1 hierarchy from the Time dimension, processed, added the hierarchy back into the member sheet and re-processed
    9.     Updated application description and modified application
    Has anyone else had this problem? Any assistance in resolving this issue will be most appreciated.
    Thanks,
    Carrie
    YTD Measure Formula:
    MEMBER [MEASURES].[YTD] AS 'IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[LEVEL00], [%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA]),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[LEVEL00], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA]),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[LEVEL03])),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[LEVEL03])),-[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
    *EVDRE RESULTS     *
    MONTH         YTD     
    FY2010 FEB     128,790,195      
    FY2010 MAR     214,054,796      
    FY2010 APR     63,828,203      
    FY2010 MAY     445,898,233      
    FY2010 JUN     377,079,009      
    FY2010 JUL     288,502,058      
    FY2010 AUG     517,947,504      
    FY2010 SEP     678,612,886      
    FY2010 OCT     593,190,135      
    FY2010 NOV     879,439,971      
    FY2010 DEC     784,580,667      
    FY2010 JAN     949,300,083      
    FY2010 TOTAL     949,300,083      
    TIME DIMENSION                 
    ID     PARENTH1     LEVEL     MONTHNUM     TIMEID
    2010.FEB     2010.Q1     MONTH     1     20100100
    2010.MAR     2010.Q1     MONTH     2     20100200
    2010.APR     2010.Q1     MONTH     3     20100300
    2010.MAY     2010.Q2     MONTH     4     20100400
    2010.JUN     2010.Q2     MONTH     5     20100500
    2010.JUL     2010.Q2     MONTH     6     20100600
    2010.AUG     2010.Q3     MONTH     7     20100700
    2010.SEP     2010.Q3     MONTH     8     20100800
    2010.OCT     2010.Q3     MONTH     9     20100900
    2010.NOV     2010.Q4     MONTH     10     20101000
    2010.DEC     2010.Q4     MONTH     11     20101100
    2011.JAN     2010.Q4     MONTH     12     20101200
    2010.Q1     2010.STD1     QUARTER     3     10000001
    2010.Q2     2010.STD1     QUARTER     6     10000002
    2010.Q3     2010.STD2     QUARTER     9     10000003
    2010.Q4     2010.STD2     QUARTER     12     10000004
    2010.STD1     2010.TOTAL           6     10000005
    2010.STD2     2010.TOTAL           12     10000006
    2010.TOTAL           YEAR     12     10000007

    Hi Carrie,
    Your configuration looks OK to me. Can you provide us the output of the same EVDRE using the Periodic measure? Also, have you raised a customer message with SAP?
    Ethan

Maybe you are looking for