Error in key figure value at Reporting level

Hi Experts,
I had problem of Key figure value which displays wrong data in reporting.
The Process is :
I had added the key figure SALK3 to the generic data source (xxx). The Extractor is Table/View, Table is MBEW.I had replicated to BW side.
In BW, The process is Data Source(Generic) to 0MAT_PLANT(Infoobject (Added SALK3 to the infoobject of Attributes tab) ) loads to Multiprovider.I can see data  in the multi provider for that particular field after loading.
Now the problem is, In Query designer i had added the key figure in Columns and ran the report.The output of the field is, If the value is 100 it displays 100 ERROR, if it 200 it displays 200 ERROR.Could you please help me on this,where i went wrong.
Regards,
Kishan.

Hello,
Please check with the follwing screen shots:
Right click on the key fgure you created----select edit
Once the screen opens select the NODIM from Data Functions before the key figure (as highlighted).
Finally click on OK.
Regards
NS

Similar Messages

  • Key figure value in a level

    Hi is it possible to identify which key figures values has introduce a user ? and which CVC has the user uses for inserting the key figure value?
    REgards.
    PS :We have APO DP 5.0

    Javier,
    It is possible to identify and track the inputs of specific users contribution to that Key figure using the following method, Provided you follow certain prerequisites first.
    Its should be known before the certain people are responsible for certain data selections, like if there is a change in certain Sales org, we should ideally know who is the assinged planner to that Sales Org. or that sales org has been assinged to which Planner
    Next, Develop to Lag reports in BI using the regular snapshots of the the data extracted out of DP before and after the changes have been made for that particular KF.
    Compare the changes using the versions of snapshot before changes and after changes, or perhaps create another calucalted KF showing the different between two versions. The BI team should be able to create reports that enable you to run this report on all levels for that Key figure.
    Hari V

  • Need help for report Variable to restrict the key figure value...

    Hai gurus,
    Now i have data in the cube as follows...
    Reuisition     HR INTW date     LM INTW DATE     TEL INTW DATE     HR Count     LM Count     TEL Count
    a1              01.01.2010     02.01.2010             01.04.2010                 1                1                 1
    a2              02.02.2010     03.02.2010             02.02.2010                 1                1               1
    a3              03.03.2010     04.03.2010             03.03.2010                 1                1               1
    when i execute the report it shd ask the prompts with Date interval as in the below...
    HR INTW date
    LM INTW DATE
    TEL INTW DATE
    if i dont give any interval in the variable prompt it should display all the recors as follows
    Reuisition     HR Count     LM Count     TEL Count
    a1               1                  1               1
    a2               1                  1                     1
    a3               1                   1             1
    If i give LM INTW DATE interval as    01.01.2010 to 31.02.2010
    then it should display all the other counts as in the output_1 , but for LM count for a3 it should show 0.
    Reuisition     HR Count     LM Count     TEL Count
    a1               1                  1               1
    a2               1                  1                     1
    a3               1                 0                  1
    that means wherever i restrict the data depending on the variable that only that interval key figure value shd be in the report..
    for this scenario, which variable i need to use... and how i need to restict the KFig value in the report...
    Right now i am getting like this but it is restricting the records,,, where it should not restrict the records...in the report..
    Please guide me for the same...
    If any concerns about the scenario please let me know...
    Regards,
    VJ

    hi chowdary ,
    could you tell me the var. creation in detail and  with which reference object i need to create ...
    whether i need to take LM_DATE / 0DATE while creating variable...
    and i kept this variables it in filter section, based on the LM_DATE Object.
    i have tried both.. y'day when i take 0DATE it giving me some results...
    But at the same time it is restricting the records..
    i think it could be a problem with var.. properties?
    need more inputs pls.
    Regards,
    VJ

  • Added new key figure in the report

    Experts,
    I have added new key figure in the report .If i display this key figure value in the report it is populating correct value with ERROR(example 22.5 ERROR).The report is on the multiprovider .i have check the value for this in multiprovider it is populating correctly .There is no calculation in the report for this .While extracting in to report i am getting this. Help me to resolve this issue.
    Thanks
    Murali

    Hi,
    I have already created a formula like NODIM(Key field).that only i am using .
    and mapping I did in this way. I went to multiprovider and I have selected this key figure and right click and select (assign) then I have click on create proposal for all infoobjects option.
    Please suggest any thing need to do.
    I am sorry .I did not understand the lonterm solution suggested by you .what is UOM .Please tell me how to map.can you pls tell me clearly please
    Thanks
    Murali

  • Key Figure value in Cube showing with extra zeros

    Loaded data into the cube. When I display the result
    Key figure values are showing with 2 extra zeroes and Quantity value shaowing with 3 extra zeroes.
    Original value
    Price, Quantity, Sales Rev
    2     1     2
    3     2     6
    When display value from cube
    Price, Quantity, Sales Rev
    2,00     1,000     2,00
    3,00     2,000     6,00
    Why zero is showing? How can I display the original value? In PSA, values are showing correctly.
    Thanks,

    Hi,
    These are the zeroes after the decimal places. this is the property of the key figure.
    In your report you can change the display value. In the display properties of the Key figure under the number of decimal places make it as 0. This will remove the zeroes.
    Hope it helps.
    Regards,
    Gaurav
    Edited by: Gaurav Kothari on Oct 16, 2008 10:35 AM

  • ABAP Code for Key Figure selection in Report

    Hello Experts,
    I am working on one of the development request that requires following logic to be implemented at query execution. There will one KF column and based on valid combination of characteristics value from the cube, Key Figure value from the same cube will be selected and reported.
    If ((Plant = A1) and (Division = B1))
      OR ((Plant =A2 ) and (Division = B1))
      OR ((Plant = A3) and (Division = B2))
      OR ((Plant = A6) and (Division = B2)).
      Price = Moving Avg.
    Else
      Price = Standard.
    Can somebody please suggest, how to do this? Thanks in advance.
    Regards,
    Nimesh

    Nimesh,
    Step 1.Create a formula (say F1)variable with customer exit. In the customer exit code read the values of Plant and Division. If the Plant and Division combination is the one that you specified below return a 1 (for Moving Avg.) or return a 0 (for Standard).
    Step 2. Create a column with a formula having the following definition
             (F1=1)'Moving Avg.' + (F1=0)'Standard'
    So, if the combination satisfies Moving Avg will be shown else Standard will be shown.
    You can avoid customer exit coding by using  replacement variables and using them in a formula, this would make your calculation clumsy and confusing. Let me know if you cannot get the customer exit solution work.
    Hope it helps...

  • How to create a variable for key figure (value will be entered by the user

    I want to create one query, where the user has to entered a max value when the query is started, so that only the query rows will be listed, where the key figure value (integer) of the row is smaller than the max value given.
    How can i define that variable which has to start at the begin of the query; and also the restricted key figure iin consideration of the KF variable.
    Thanks for helping
    Ar.

    Hi Arnaud,
                Go to Conditions-> Right click -> New Condition -> Edit -> NEw -> Selct the KEy figures from the dropdown( the KFs that are used in the rows/columns) -> Select Less than from the operator drop down (less than is for you case) -> Values, there is an option to create a variable -> Select the variable -> transfer. It will appear on the top.
    Save & Execute, you will find it in your selction criteria.
    Regards
    Sunil

  • BEx query: count unique key figure values

    Hi
    I need a little help with a query. I need to count the number of unique key figure values. Se example;
    Data:
    Employee1 - 2
    Employee2 - 3
    Employee3 - 2
    Employee4 - 1
    Employee5 - 2
    Employee6 - 1
    Employee7 - 2
    Wanted output:
    1 - 2
    2 - 4
    3 - 1
    What kind of options do I have?
    Thanks
    Mike

    I would create a new characterstic for the same key figure and placed in rows and count in columns.
    and second approach would be , create condition with customer exit and write the logic to count the unique values.
    This is just a direction to move forward with the assumption that you are good in using variables and wirting logic in ABAP.
    Thanks,
    Sukhi

  • Code to sum up multiple record key figure values from one ODS to another OD

    We've got two ODSs: ODS1 and ODS2 and ODS1 feeds data to ODS2 through update rule.  In ODS1, multiple records could contain one same doc records and we would like to sum up a key figure value for these multip records with the same doc number in the update rule and populate a key figure (a sum-up value or total value) in ODS2 for this doc number.  We wonder how the code would look like.
    Welcome the valuable input!
    Thanks

    Hello Kevin,
    In this case there is no need of a code. As in ODS2, contract number is a key and PO is not a part of key, you can have update type for the key figure as "Addition". Value for that particular key figure will be added for all the recordes with same contract number irrespective of PO number.
    Hope it helps.
    Regards,
    Praveen

  • Key figure values vary each time the report is run by different users

    Hi All,
    We are facing a unique problem, here it goes :
    Different users are getting different values for the same key figure, when executing the same query  on the same selection conditions.Each time, user executes the report, he is getting varying values for the same key figure.Any idea's how to resolve this issue??
    Thanks in Advance
    Bindu

    Hi Bindu,
    One reason might be due to authorizations as discussed earlier.
    check how frequently is the cube getting refreshed.
    This might also happen that if users are running the data at different times and there is a cube load in between.
    check for this.
    Cheers,
    Srinath.

  • Key Figure values in the Bex Report are different from the cube

    Hi all,
    When I tried to pull data of the cube, the values of the Key Figure 0Lotsize_cm was showing 100 EA. But when I try to run the query of the cube, then the key figure is LotSize is showing up as 500 EA. I don't understand why this is happening.
    When I checked for Aggregation in the Key Figure. It shows up as "Sum" under aggregation and "Last Value" under Exception aggregation.
    Could some one help me find a solution to this issue.
    I look forward to hearing from the experts.
    Regards,
    S.P

    Hi Arun and  Zegion,
    Thank you for your responses.
    Arun, I do not have any aggregates on the cube. I changed the aggregate properties of the Key Figure from SUM to Minimum. this has solved my problem temporarily.
    the reason I am saying temporarily because this is a SAP delivered InfoObject. This is for the datasource 0CO_PC_PCP_01. When I read through the documents, it said, SUMMation for Aggregation and Last value for "Exception Aggregation" will display the value of KF as the last value and does not add them up.
    Since this wasn't the happening in my query, I changed the Aggregation from SUM to Minimum.
    Regards,
    S.P

  • Compression error due to Key figure values

    Hi experts,
    When I am compressing the Info cube, the job is getting terminated. I think that the problem comes from a data issue.The field /BIC/ZX_COM_LC (key figure) contains huge values in both F table and E table. For exapmle the entry in F table is  23.592.684.640.809,00 (16 digit) and E table entry is 985.460.854.341.148,62 (17 digit)and while in the process of compressing they should be added and the value becomes 18 digit number which is greater than the capacity of that Key figure(CURR 17 decimal 2). This is why the compression job is terminated.
    Please through some light on this issue.
    1.If I change the key figure type from DEC to FLTP , what are the consequences?
    2.Do we have any oss notes to solve this issue in production?
    3.Is there any work around for this?
    Please provide your inputs to solve this issue.
    Thanks in advance,
    Edited by: SiNU reddy on Aug 19, 2010 3:35 PM

    Seems like you have too much of data still present in F fact table whcih needs to be compressed.
    Is this data is present in one request or with the multiple requests?
    If its with the multiple requests then you can do the compression job multiple times by splitting the number of requests in this case so that the data whcih you are trying to compress is limited in this case.
    So I propose you to compress few requests at one time and proceed further and check whether you have the same issue comes again or not?
    Do get back.. Hope this helps.
    Murali

  • Not Displaying "Net Sales" key figure in Crystal Report

    Hi All,
    I have made one Info cube (with Characteristics -Product, Region and Customer and Key Figure - Net Sales) from Flat File.
    I want to make crystal report on this. For that i have connected this infocube in crystal Reports via OLAP Connectivity. I am getting all the characterisitc in Field Explorer and one more Field "Measure" in which two field is displayed:
    - Measures, Level 0
    - Measures, Level 0 (long)
    Now i have dragged all the characterisitcs in detail section with Measure, Level 0(long). While i am viewing the preview of this, i am not getting value of that line item.
    Ex.
    Product Region Customer NetSales
    Actual one:
    AC East BigBazar 14000
    with Measure, Level 0(long):
    AC East BigBazar NetSales
    with Measure, Level 0
    AC East BigBazar [Measures].[ZNETSALES]
    I am not getting 14000 i.e. Actual value.
    Hope i am clear with my idea. Am i missing something?
    Regards,
    Rishit Kamdar

    col1 col2 col3 col4 col5.......say you have 5 columns
    for the denominator calculation
    the value should be
    numerator /
    select (select count(column) from table) - (select count(column) from table where column<>0)
    Thanks,
    Ganesh

  • Key Figure values based on characteristic Drill-downs

    Hello All,
    I have Issue with my drilldown options in the report. The values of Sales qty need to change at particular drilldown.
    I have Sales Revenue and Sales QTY key figures in my DSO with  plant, factory, customer and Business type (Values A, B, C and D) characteristics.
    IN the report requirement I want to show the SALES QTY for only Business Type  "A" at Plant , factory and customer level, but when I am at the Business code level, then I am to show all the quantities by that level.
    THe sales revenue should always show values for all Business code irrespective of the drilldowns.
    please provide suggestions and code on how to go about the issue.
    thanks,
    pra.

    Hello Guys,
    Thanks for your response.
    Let me explain clearly...with an example.
    We have DSO which has 5 chars and 2 KFs.
    Chars - Company Code, Plant, Customer, Material and Business Code (which has values A, B and T).
    KFs - Sales Qty and Sales Revenue.
    Report output ---
    Customer
    Company Code
    Plant
    Material
    Business Code
    Sales Qty and Sales Rev
    Requirement is a follows -
    When the report is run.... the report will display on Customer with KFs.
    then if user wants to pull company code he can do so...as will other chars (Plant, Material and Business Code)
    but the condition is that when the user is seeing the report at customer with KFs ,....the KFs should only show values where business code = "A"
    so is the same with other chars - Company code, Plant and Material.
    But when user drags and drops the Business Code char in the report against the KFs .then the report should include all Business Codes ( A, B and T) with corresponding sales qty and sales rev for all business codes.
    Solution - Partially working--
    What I have done..is restricted the sales qty and rev with Business code = A, its working fine for all drill downs except that, when I am at business code level its showing as
    Business Code QTY REV
    A             300          3000
    B                0              00
    T                0               00 .
    Hope you got the issue. Please let me ,,if you need any information.
    Thanks,
    Pra

  • How to ignore blank/null key figure value in BI Queries

    Reports on Multiprovider - we see some cells of a Key figure as blanks. These blanks are interpreted as zeros by the system and calculated accordingly resulting in incorrect values. As per our requirement, we need a count of all hard/real zeros only, not the blanks. For example, if there are 10 rows of which 6 are real zeros and 4 are blanks - our count should be 6 and not 10.
    How to ignore the blanks in BEx queries please?
    Thanks for your help.
    Upender

    Rakesh,
    It is not possible to find a pattern because the report is on a MultiProvider with 2 InfoProviders- Purchasing documents DSO and Material Movements InfoCube.
    Every Purchasing Document has several materials associated with it. These materials are compared with materials in Materials Movement. Not all materials in Purchasing Document are found in Materials Movement. For those Materials found in Materials Movement, the Quantity is obtained. For these found rows, the correct value is showing up - if the quantity is zero, it is showing in reports as zero. If the material is not found in Material Movements then Quantity shows up as blank values.
    My requirement is ignore such blank quantities and not count them. Only Quantities with 0 values should be counted. Currently both blanks and zero values are counted showing inflated count.
    Thanks,
    Upender

Maybe you are looking for

  • Itunes 10.2.2 not importing all files within a directory

    Hello all, here is my very frustrating issue. I am running Itunes 10.2.2.14 on a x64bit Windows 7 machine and i am having an issue importing my full library from an external USB harddrive. Originally all the music on this external drive was at one po

  • GREP Search to apply superscript

    Hi there, I'm a longtime InDesign user but I'm pretty new to GREP. Currently I'm working on a French document, but this could easily apply to English documents as well. I'm trying to use GREP to identify and apply superscript to letters that come aft

  • Installing OS X on a new SSD

    Hi, my Dad just bought a New MBP 13" and wants me to install a new SSD in it. Although I know how to physically pop a new SSD into the computer I have no idea how to install OS X onto it so it will run. My only idea is to first install the SSD and th

  • Colorware for nano voids your Apple Care Protection Plan

    I just wanted every one to know if you purchase a Nano from Apple and then go to ColorWare to get it colored, you void your Apple Care Protection Plan,which extends your coverage for and additional 2years compared to ColorWare extended 1year. I was j

  • BADI IN CORK TRANSACTION

    Dear all, I need to block the user from changing the quantity and batch in goods mvt screen of CORK. The user will only change the AutoGR Qty during partial Confirmation and for all other consumptions with 261 mvt type he will not be able to change Q