Key figure attribute not displaying in query

Hello experts.
I have a key figure attribute called Credit Limit.  It is an attribute of Customer.  The key figure is type CURR with 2 decimal places. 
When I maintain master data for Customer, I can see the value fine e.g. 2,000.00
When I run a BEx Query the very same value displays as 0,00.
Does anyone have any idea why this could be?
For info we run BW 3.5.
Thank you.

Hi,
1.please ensure that your master data is activated (right click the IObj, Activate Master Data)
2. how do you display this attribute? as attribute of the customer? as Nav? as a formula variable ?
let us know
Olivier.

Similar Messages

  • Key Figure Attribute not displaying in Query Designer

    Hello Experts,
    I have an InfoObject which has Key Figures as attributes.  When creating a query I <b>once</b> was able to see these Key Figure attributes in the Query Designer.  Howerver, recently I am not able to see them anymore in our DEV environment. 
    In our QA and PROD environment I am to see these Key Figures attribues in Query Designer.  Is there a setting that I am overlooking?  We are currently on BW 3.5 with SP 19.
    Please help!
    Thanks in advance,
    BQ

    Hi Jaya,
    Thanks for the quick response.  But how to I check the authorization for 1KYFNM and what am I looking for?
    Thanks,
    BQ

  • Key figure Attributes not working

    Hi ALL,
    We have an isuue with one of our Planning book. Key figures which are supposed to be open for editing are  showing as output only and key figures which are for output only are showing as open for editing.
    I went to design mode to tried to change in manually , if I chane one row attribute all rows are getting changed.
    I found a macro which assigns Key figure attributes which I tried to activate but still not working. We are using SAP SCM 4.1 Version.
    Can any advice on this?
    Sivarama

    Thanks Problem is now solved. Looks like some has made changes in the design and there are macros which are working and as you said they might be conflicting. I changed the design which was working weired yesterday when I tried to cande one row attribute and all rows are getting applied, this worked fine today. And I deactivated the macro which is working on some row attributes and activated again.
    I am not very clear what went right but working.
    Sivarama

  • Characteristic with a key figure attribute is displaying the currency

    In our report, we have a characteristic, Grant, with an attribute of Total Grant Amount which is a defined as a key figure.  We recently went to SPU16 and since then the currency is displaying along with the dollar amount.  It looks like this:
    <Heading>Total Grant Amount
    <Row>      USD 20,000.00
    <Row>      USD 120,000.00
    <Row>      USD 209,680.00
    Is there any way to remove USD from the report?  I can't make Total Grant Amount navigational and then filter out the currency.  It's not an option for Grant.  There's no edit capability for Grant to allow it to be navigational.
    Thanks!
    Debby

    You have two choices - new CKF with a nodim function around the key figure
    Or in query properties - display scaling factors - then the USD will go to the top of the column heading
    edit - sorry I just realised this is an attribute key figure not a normal key figure

  • Why key figures are not displaying

    Dear Experts,
    I am faced with a problem not encountered before. My report has multiple key figures all of which are not displayed when I run the query. However if I change the view to Tabular format (from query properties) the key figures become visible.
    Request your help in resolving the issue.

    Hi,
    are you hidden the some key figures? please check.
    select the KF -> go to properties -> check the display tab - hide/show/hide can be shown.
    if not close and open one more time in query designer.
    Thanks,
    Phani.

  • Key figure is not displayed in info area

    Hi experts,
    I have a customer created  key figure. I see it in RSD1 but it is not displayed at any info area. Normally when we create any info object and don't assign any info area, it must be displayed at " Unassigned Nodes ". But it is not displayed. When i search it in info objects, i can't find. But i can see it in RSD1.  Anyone knows its solution? Thanks in advance
    FIRAT KAYIRAN
    MM&BW Consultant
    Istanbul, Turkey

    Hi All,
    Firstly thanks for your reply.
    1- In key figures i know it can not be marked as infoprovider. But also i searched in modeling-infoprovider section. But i can not find it.
    2- My key figure is active. But again i can not see it.
    3- I've searched all nodes(assigned key figures and non-assigned key figures)
    Waiting for your reply.
    FIRAT KAYIRAN
    MM&BW Consultant
    Istanbul, Turkey

  • Key figure is not displaying correct data format

    Hi SAP Guru,
    I am facing this issue while checking query output.
    Please find the below example:
    Actual Value in Infocube :
    506,934,567,522,159,433,380.99 
    Bex Report Output:
    506,934,567,522,159,000,000.00
    Please provide your suggestion what can we do to correct the data output in reporting layer.
    Thanks
    Priyanka

    Setting is similar  like this only .... Actually Data after  decimal is not an issue the main problem is that before decimal data is coming in Zero form eg.
    Actual Value in Infocube :
    506,934,567,522,159,433,380.99
    Bex Report Output:
    506,934,567,522,159,000,000.00
    Before decimal last 6 digits

  • Virtual Key Figures its not populated when execute query

    Hi All
    I did a BADI for populate a Virtual Key Figure, I follow the instructions of link
    Link:[http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60e34f63-f44c-2c10-488e-c89b04e0ca7c?quicklink=index&overridelayout=true]
    In addition I add the code section of data declarated on example of: CL_EXM_IM_RSR_OLAP_BADI section define: IF_EX_RSR_OLAP_BADI~DEFINE, only information that said:
      DATA: l_s_chanm   TYPE rrke_s_chanm,
            l_kyfnm     TYPE rsd_kyfnm.
      FIELD-SYMBOLS:
            <l_s_chanm> TYPE rrke_s_chanm.
    I test the query on RSRT and the virtual Key Figure is "0.00" this look like if the virtual key figure is not populated.
    I did other things like:
    Set a Break Point on COMPUTE section of my BADI, I saw that the value is assigned, but I don't know how I can continue reviewing the pass of this value to result of query.
    I generate again the query on RSRT.
    My code is:
    IF_EX_RSR_OLAP_BADI~DEFINE
    method IF_EX_RSR_OLAP_BADI~DEFINE.
      data: L_S_CHANM   type RRKE_S_CHANM,
            L_KYFNM     type RSD_KYFNM.
      field-symbols:
            <L_S_CHANM> type RRKE_S_CHANM.
      case I_S_RKB1D-INFOCUBE.
        when 'ZGTO_OB2'.
          append 'ZVIRTKF' to C_T_KYFNM.
      endcase.
    endmethod. 
    IF_EX_RSR_OLAP_BADI~COMPUTE
    method IF_EX_RSR_OLAP_BADI~COMPUTE.
      field-symbols <FS_ZVIRTKF> type any.
      P_KYF_ZVIRTKF = 16.
      assign component P_KYF_ZVIRTKF of structure C_S_DATA
      to <FS_ZVIRTKF>.
      <FS_ZVIRTKF> = 10 .
    endmethod.
    I will appreciate your recommendations, Thanks in advanced.
    Al

    Thank you very much Sanganya
    I saw this:
    I put a break point on P_KYF_ZVIRTKF = 16., then I saw that P_KYF_ZVIRTKF obtain value 16.
    Then on sentence: assign component P_KYF_ZVIRTKF of structure C_S_DATA
    to <FS_ZVIRTKF> , when the system pass this line, I review the sy-subrc and is equal 4, as I understood the ASSIGN sentence did not be complete, the value shoul be 0.
    Then when the system try to run the sentence: <FS_ZVIRTKF> = 10  the system send an Execution error that say:  GETWA_NOT_ASSIGNED...
      Error analysis
        You attempted to access an unassigned field symbol
        (data segment 32780).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Exactly the line selected with error is:
    >>>>    <fs_zvirtkf> = '10.0'.
    I will appreciate your help
    Thank you
    Al

  • Using Key figure attribute of a characteristic in a query

    Hi All,
    I have the following scenario. I have defined a key figure attribute for a characteristic Infoobject. I have included this characteristic infoobject in an Infocube. I now want to use the key figure attribute as a regular key figure when I create a report based on the Infocube. Is it possible and if so how is it possible?
    Thanks
    Sundar

    Hi Saundar,
       There's another way.Set the characteristic with key figure attributes as a data target under your info area. Create a MultiProvider and include your Cube and this characteristic. Here you can set the key figure as your MultiProvider key figure.
       Don't forget to take care of the identification of MultiProvider.
       Hope this helps.
    Regards,
    Aaron

  • Key Figure in a Input Ready Query

    I have 9 key figures in my input ready query. 5 of them are not input ready and being loaded through a job and 4 are input ready. There is a problem with one key figure, I am able to see data for the key figure when i have START QUERY IN THE CHANGE MODE turned off. But once I turn it on it is not showing any data for the key figure. This is happening only wiht that key figure, all the other key figures are working fine. Could someone help fixing this
    Thanks
    Rashmi.

    Hi,
    I do face this type problem during my BI IP implemenation project. Pls chk thoroughly the following points.
    1.The planning mode of your real-time infocube should be on always on( you need change from load to planning mode, while inputting data).
    2.The START QUERY IN THE CHANGE MODE , should be on.
    3.In the planning tab of key figures, ensure you enable the button : Data can be changed using planning functions.
    4.In the advanced tab of key figures, pls make sure to enable the right button( Master data).
    5.Pls make sure  , the real time infocube, aggregation levels, filters etc, should be refreshed & active,if make any changes in planning model in between, in Aggregation levels,filters etc.
    6. Pls chk the locks( SM12) always, and delete all of them, if any.
    7. Log-off the  Server (BEX/DWWB) and restart the BEX ,then open your Input query, it should work .
    Regards
    CSM Reddy

  • Populate key figure attributes values for material & location in inventory

    Hi all,
    We have a Inventory Infocube. the dimensions of the inventory infocube contains material, location and material-location and also the time dimension with calday, week and month. The different key figures in the infocube are Unrestricted Stock Balances, Unrestricted Stock Receipts, Unrestricted Stock Issues, QI Stock Balances, QI Stock Issues, QI Stock Reciepts, Blocked Stock Balances, Blocked Stock Receipts, Blocked Stock Issues. The following is the definition for master data objects
    Material Master - ATTRIBUTES :- Business Unit, Manufacturing Plant, Base to Case Conversion Factor(key figure attribute)
    Location Master - ATTRIBUTES:- City, State, Country, Location Type
    Material Location master - ATTRIBUTES:- Material, Location, MRP Controller, Source Location, Standard Cost(key figure attribute)
    We have a report with material, location, calender day and with all the stock balances keyfigures. also in the report we have the key figure attributes of material master and material location (like standard cost and base to case conversion). We have defined a formula variable on these attribute key figures with replacement path.
    The problem is none of the records are getting populated with the standard cost and base to case conversion.
    We are NOT doing any conversion at the report level.
    Any help is greatly appreciated.
    Regards
    Vijay

    There could be few possibility:
    1. The variable you are inputting for standard cost and base to case conversion may not have any values in the master data.
    2. See the master data table for Material and location. Note down those materails and location for which there are values for standard cost and base to case conversion. Now, run the reports for these materials
    and location.
    Btw, have made standard cost and base to case conversion as nav attributes. Plz make them nav attributes and see.
    Thanks...
    Shambhu

  • Very Very Urgent Issue: Restricted Key Figure does not return any data

    Hi all,
    Please help me solving this urgent issue.
    created customer exit variable on characterstics version and also
    other customer exit variable on Value type.
    I coded that in variable exit. Problem is when I include these in
    restrickted keyfigure My query does not return me any data.
    But if I remove from restrickted key firgure and put it as normal
    charaterstics I see the variable is getting populated.
    Also in RSRT the SQl generated when these are included in RKF is not
    correct.
    I debugged and know they are getting populated. As when included in RKF
    I can also see the values of customer exit variables from information
    tab.
    I also know that there is data in cube for those restrictions.
    I posted one OSS Notes regarding this urgent issue. But got no reply from SAP.
    FYI: We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11
    Thanks
    SAP BW
    **Please do not post the same question twice: Very Urgent Issue: Restricted Key Figure does not return any data

    Hi,
    Everyone out there this is very urgent. If someone can help me solving this problem.
    We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11.
    I posted one oss notes also regarding this issue. But got no reply from SAP.
    So, Please help me solving this issue.
    Thanks
    SAP BW

  • Do i have to select all the key figures when i design a query off of a cube

    Do i have to select all the key figures when i design a query off of a cube? i have three keyfigures on the top of the three keyfigures it says calculated keyfigure. kind of lost dont know what to do. please let me know.
    Thanks!
    York

    No, you have to select at least one.
    Calculated keyfigure (CKF) means it's a formula of two or more other keyfigures. You can select, right-mouse click, display properties and you see how it is composed.
    Under calculated keyfigures you see all available keyfigures of the infoprovider you build the query on. Just move them by drag-and drop from the left to the right into the columns.
    You can have also restricted keyfigures (RKF). This means a keyfigure is restricted by one or more characterstics and their values.
    Hope you got an idea.
    Regards,
    Juergen

  • Appended Key figure is not working in Delta reverse record

    Dear All,
    I have enhanced 2LIS_11_VASCL datasource, to pull value from condition record, called Surchage.
    I have set reversal indicator for this field in my datasource. I have written code in CMOD to get this value from KONV table of that sales order.
    Now when value  is changed, delta record for this, automatically creates reversal record, but it shows new value of surcharge as negative, because that code is pulling value which currently exists in table.
    For example for order 350089 , if surchage is $ 100 .  User changes it to $200
    Then I get following record.
    Reversal Record  - $200 (This should be instead -$100 , i.e. previous value)
    New Record - $100.
    Because of this my new value is not getting updated in table.
    I can't use overwrite mode in ODS because some other technical reason.
    How can I solve this problem?
    appended Key figure is not working in Delta reverse record

    LIS have before-after delta. So ODS should be in Overwrite mode. If that is not possible.. try sorting the records in Start Routine such way that the - 100 $ is above the - 200 $ records in Data Package.
    but this is risky as it will affect other key figures for which things maybe fine. I guess you need take Data Package records in an internal table. And then sort this internal table. then you can read the internal table in update routine of this key figure.
    OR (If you are on BI 7.0) you introduce an InfoSource in between DS and DSO with Overwrite mode for this Key Figure.

  • Infoobject in infoset but not displaying in query designer

    Hi,
    I have created a query on infoset(ods1 & ods2).
    a custum defined infoobject (fiscyr) is not displaying in query designer while it is present in infoset.
    pls give your inputs,for why this infoobject is not available in query designer.
    Thanks
    Radika

    Hi Radika,
    I cannot think of anything other than the solutions already mentioned in this thread (checking the IOBJ in infoset, running RSISET and activating it). I just had a foolish idea that you might not be looking for the right IOBJ. All the IOBJs from an infoset are not displayed with their original technical names in the query designer. They are disdplayed in the format: <infoset_technical_name>_FXXXXX where XXXXX is a number.
    Also try one more thing. Go to transaction RSISET and type in the technical name of the infoset there.
    Right below the box where you type the Infoset name is a check button. Check your Infoset there and then activate it from within the RSISET transaction (the activate button is right after the check button). With Infosets, sometimes just activating it from within RSA1 does not work but RSISET always seems to work.
    Do this and see if it helps.
    Thanks & regards,
    Nikhil

Maybe you are looking for

  • Itunes crash on windows 7 64bit

    Hey, I'm running the 64bit version of itunes on windows 7. Everything seemed to be fine until the most recent update. Now whenever I try to access my music library or the itunes store, itunes crashes within seconds. Any idea what might be going on?

  • How can I start a new game on an App that is stored in iCloud?

    I have a game stored in iCloud - that is my only option.  I want to start it as a new game on a different device and I can't.  I tried creating a new account and that didn't work.  What do I need to do?

  • Hi i am not able to load any google sites ie gmail,orkut,youtube(login),,etc

    hi i am not able to load any google sites ie gmail,orkut,youtube(login),,etc when i tryied to open sites like www.gmail.com i got error msg as: The connection was interrupted The connection to www.google.com was interrupted while the page was loading

  • Can't submit keywords to GoDaddy's new Search Engine Vis. Service

    So, I bought (for $3.00 per month) GoDaddy's SearchEngineVisibility service. It allowed me to make and submit a SiteMap, something GoDaddy would not let me do with the Rage software I bought. So far so good - but GoDaddy shows you a 10 point checklis

  • Writing keywords to scanned original photos when referenced

    I've looked for this answer, but haven't found it. I have my photos in Aperture as referenced.  When adding a keyword to a digital photo and writing the metadata to the original, it shows up if I check in Bridge. When adding a keyword to an old scann