Basic keyfigure value of the cube is multiped by 100 in the query result.

Hi ,
When i execute a query for P&L the local currency value of the basic key figure is being multiplied by 100 in the query when compared with the cube data...where as the Global currency value is correct.
Could you please help me as how this could be possible.
Points will be assigned.
Thanks and Regards,
sridevi

Hi,
Then, either someone changed the number of decimals (TCURX table) in december/january or you started to feed your system with data from another source system (where during transfer global settings you uploaded the number of decimals differed from 2). Check the TCURX table. Almost sure that you'll find your currency there.
Best regards,
Eugene

Similar Messages

  • Date when the cube was filled with data for the last time

    Hi!
    We are using a SAP BW System and on top of it BOBJ for reporting. Within BEx Web Application Designer, it's very simple to access the data, when the cube was filled with data for the last time. Is it possible to access this information within BOBJ, too?
    Thanks for your help!
    Greetings
    Stefan

    Hallo Ingo,
    thanks for your answer. That was exactly what we were looking for.
    We will have to think about a workaround now.
    Greetings
    Stefan

  • Selective Deletion of the Cube contents in Abap Program of the PChain

    Dear Experts
    I need to selectively delete the contents in Basic Infocube using Process Type - ABAP Program in the Process Chain in BW 3.5
    For this I have to give the Variant and Program name in the Process Type - ABAP Program in the Process Chain
    The ABAP Program for this purpose can be generated automatically by the system in the the below navigation
    info cube> Manage>contents > system menu(in the Top)> Status
    but this abap program is changing dynamically every time and hence in the Process chain ABAP Program node is failing with error saying that that program is not available
    I have tried the same way  in the selective deletin navigation path also in the cube manage
    Please let me know how to get the system generated program to use in the Process type-ABAP Program in Process Chain
    Thanks for all in advance
    KSR

    Hi KSR,
    Try this.. start a selective deletion on the cube. you will get a background job running. Get the job name from SM37.
    Now write a ABAP program with the below code.
    parameter: p_Job_Name type sysuuid_c.
    CALL METHOD cl_rscrmbw_bapi=>exec_rep_in_batch
    EXPORTING i_barepid = l_jobnam.
    Execute the above program. Pass the job name which you got from SM37.
    Create a variant with that job name.
    Now schedule this newly created program. This should solve your issue.
    Note : The job name might vary from one server to another (Dev / Qual / Prod). So if you are planning to move your process chain from Dev, then pass the Job name (in prod) as the variant in yr Dev system and then transport it.
    Cheer,
    Balaji Venugopal

  • How can I get Numbers to return the first row in a group of VLOOKUP query results instead of last one?

    I'm trying to query from one table (call it Table1) a batch of rows in another table (Table2) using VLOOKUP on a date specified in the first table (Table1). My problem is it's returning the last incident in Table2 of the requested date instead of the first incident. This really breaks the OFFSET scheme I'd like to use to collect the rest of the items for that date. Is there some way to compel VLOOKUP to return the first row of query results, not the last?
    NOTE: I see I've asked this before, but forgot to go back and look at responses given. It's been a while and I've limped along until now with the way things were. I'm actually trying to delete this questions, so if you see it, ignore it. I suppose if someone can tell me real quick how to delete a stupid question, that might be helpful.

    you cannot delete a post yourself.  You can flag the post an request a moderator remove.

  • Running 10.8.3 on an Intel iMac 27'. The Finder keeps grabbing over 100% of the CPU which seems to stop me from opening any folders. Only quitting the Finder from Activity monitor resets it to normal. Any ideas?

    My Finder keeps grabbing over 100% of the CPU which seems to stop me from opening any folders.
    Only quitting the Finder from Activity monitor resets it to normal.
    Any ideas?

    Nope, I don't have a "/Users/charon/Library/Mobile Documents" directory, let alone anything underneath it. Is that like an iCloud thing or something?  I tend to avoid the Apple-supplied services when I can (I don't use iTunes either unless I can help it).
    As an update, as of about two days later this problem seems to have solved itself. Possibly sleeping and waking did something to it (though that seems unlikely given how many times I rebooted), or else there was just some long-*** kernel process that finally worked itself out.  But my system CPU is back down to normal and the cursor freezes are gone.
    ??? it is a mystery! ???

  • Finding the order of a particular entry in a query result

    suppose i ve the output of a select query as
    emp_id emp_name
    101 one
    109 nine
    112 twelve
    120 twenty
    from this how can i know the rank of a particular emp_id. For eg: for 112 i must get it as 3, and for 109 i must get 2.Can any one help???????
    thanking you in anicipation.

    drop table t purge
    create table t
    (emp_id number(3),
    emp_name varchar2(10))
    insert into t values(101,'one');
    insert into t values('109','nine');
    insert into t values('112','twelve');
    insert into t values('120','twenty');
    insert into t values('113','thirteen');
    select *
    from t;
    EMP_ID EMP_NAME
    101 one
    109 nine
    112 twelve
    120 twenty
    113 thirteen
    5 rows selected
    select row_number()over(order by emp_id)rnk,emp_id,emp_name
    from t;
    RNK EMP_ID EMP_NAME
    1 101 one
    2 109 nine
    3 112 twelve
    4 113 thirteen
    5 120 twenty
    5 rows selected

  • Base unit of measure values  not loading into the cube.

    HI Xperts,
    i have created a generic data source and in that i took unit as base_uom and one quantity keyfigure and in my cube i have taken 0base_uom and a quantity key figure infoobject.
    in transformation i mapped the  base_uom(source) to 0base_uom (target)and soures quantity KF infoobject to targer keyfigure infoobject.
    after loading the data into my cube..i am getting the values for quantity keyfiure infoobject but for  unit (CS,IT) i am not getting any value in my cube.
    so in my report also the for a specific quantity unit value is showing ERR.which is wrong.it should show me as CS or IT(10CS or 15 IT etc).
    Can any one help me on this?
    Regards,
    satihs

    > in transformation i mapped the base_uom(source) to 0base_uom (target)and soures quantity KF infoobject to targer keyfigure infoobject.
    This is not how you map Key Figure and Currency in cube..
    First check in RSD5 whether you have Unit Infoobjet assigned to the key figure.
    in Type/Unit tab ..you have to assign 0BASE_UOM to your Key Figure.
    Then in transformation from DataSource to Cube  : connect both the Unit and Key ( in source) figure to target KF.
    In Rule Detail you have to select .
    Target Unit = 0BASE_UOM
    Unit  = From Source
    Source Unit = Your source field name for unit
    Let me know after doing all these whether are getting unit field in cube
    Regards
    Anindya

  • Fact table with datetime measure showing #value error while browsing the cube

    Hi All,
    I have a cube with a fact table having datetime measure.
    when I browse the cube, I am able to see the data for all measures except  for the measure with the datetime as datatype.
    Thanks in advance.

    Hi jarugulalaks,
    Actually this forum is to discuss:
    Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    To make this issue clearly, would you mind letting us know more information about this issue? Whether it is the VS IDE issue? Which language are you using? Which kind of app are you developing? Maybe you could share us a screen shot about it.
    But like this case posted by you here:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/bc2d30b8-a60d-4f0f-a273-b7cf0f5aaed5/value-error-for-datetime-measure-in-ssas?forum=visualstudiogeneral#bc2d30b8-a60d-4f0f-a273-b7cf0f5aaed5
    If it is the SSAS issue, please post this issue to the SSAS forum for dedicated support.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Basis for creating the dimension for the cube

    Dear All,
    I have one basic query.
    We can build the ODS and pull data from source system to BW system. But now if i am suppose to build the Cube for my reporting then how do i make decision to build dimension for the cube?
    I mean what are the parameters which we need to consider before we build the dimension for the cube and what type of objects will be there in each dimension??
    Appreciate your help on this.
    Regards,
    Anup.

    Hi,
    There is as no thmb rule for it. Generally we try to balance the dimension when we create them. For example, It is not advisable to include Material and Vendor in a single dimension.(otherwise it will lead to dimension explosion...large no. of records in a single dimension.)
    The idea of dimension tables is to group associated characteristics to reduce the number of fields in the fact table and to reduce redundancies in storing frequent combinations of
    characteristics values in a table. Examples of characteristics typically grouped into one dimension include Customer, Customer Group, and Zip Code grouped into a Customer
    dimension, and Material, Material Group, Color grouped into a Material dimension.
    A special case of a dimension is the line-item dimension, which is used for characteristics with a very high cardinality. Atypical example is the document number in a lineitem-
    level InfoCube.
    Regards,
    Gunjan.

  • Modifying the cube model & others doubts

    Hello Experts,
    I have a few doubts about certain BW30B concepts which I would like to seek help from experts in this very impressive forum.
    A. From which ODS table does Init/Delta process use to load into connected data target?
    B. When data model is changed to add a new attribute, must the Transfer Structure/Data Source be changed as well to include it, just as comm structure, transfer & update rules are modified?
    C. To add a new characteristic into the model, I deleted existing cube data & added a new characteristic to this cube to avoid copying existing queries. A new cube is created with existing cube as template. Existing cube data is loaded into this new cube. Then, I adapted txfr & update rules and infosource. One way to complete the change is to load historical data for only the new characteristic from source system and then reload existing data from the new copy cube. The other way is simply to load all history from source system into emptied modified existing cube. I would like to clarify on the steps for the earlier method I mentioned. I cannot understand how data for only the new char can be loaded and then reload from copy cube back into modified, existing cube. Please help to clarify on this method.     
    D. When adding a new keyfigure, datasource is changed accordingly but its not stated that for char change, data source also need to be changed accordingly. I would think it needs to be changed too for any char / kf added to the model. Please could you confirm this with me.
    E. For aggregates, how many maximum characteristics can be used as line item dimensions, not inclusive of data package,time/unit dimensions? Is it that only unit is optional dimension? Please confirm this with me as well.
    F. Under what condition must the inventory marker not be updated?
    Would be greatful for any useful help given.
    warmest regards,
    Alfonso Spinelli

    Hi Alfonso,
    Some answers for you:
    A. Data is taken from the Change log table.
    B. It depends...if you need to get the data fro the new attribute from the sourec system, then yes the data source and transfer structure will change. If the new data is being populated by reading some values that are already in BW tables, then you would not need to change the datasource. The you would change the comm structure and update rules.
    C. The method you are talking about, i.e. create a copy of the cube, move data from original to copy and then reload back to original...is used to preserve the data. If you add a new char to an existing dimension, you need to delete the data of the cube. So this method is the workaround, because you have parked the data and then would not need to reload from the source. However, if you are adding a new char to a new dimension, you do not need to delete the data. Of course for the ne char, you will have data only from this point onwards. If you need all history data for the new char, you would need to reload from the source.
    D. The answer to this is similar as point B. If you have the data for that char and can reuse it in your cube load (by coding in your update rules), then you would not need to change the datasource.
    E. For line item dimensionswe will always have only one char, be it cube or aggregate. See dimensions are groupings of chars. P, T and U dimensions will always be there, like Time dimension will contain the chars like 0CALMONTH, 0FISCPER...
    Hope this helps...

  • Problem when loading from ODS to the CUBE

    Hi Experts,
    I am facing an unusual problem when loading data from ODS to the cube.
    I have a first level ODS where the delta postings are updated. I have checked the active table of the ODS and the data is accurate.
    I have deleted the entire data from the Cube and trying to do a full load from ODS to the CUBE.
    I am sure when I run a full load the data goes from Active table of the ODS.
    After the full load the the keyfigure values are 0. I have tried doing the testing by loading couple of sales documents and still the keyfigure values are 0.
    I wonder when I load the full. The data should be picked exactly the way it is in active table of the ODS.
    I also dont have any fancy routines in the update rules.
    Please help me in this regard.
    Regards
    Raghu

    Hi,
    Check the procedure did u do that exactly or not. just follow the the laymen steps here:... and let me know ur issue
    o     First prepare a flat file in Microsoft excel sheet for master data and transaction data and save it in .CSV format and close it.
    o     First select info objects option and create info area then create info object catalog then char, & key figure. Then create ‘id’ in Char, Name as attribute activate it then in key figures create no and activate it.
    o     In info sources create application component then create info source with direct update for master data and flexible update for transaction data. The flat files would be created for master data create info package and execute it.
    o     For transaction data go to info provider then select the file right click on it then select option create ODS object. Then a new screen opens give the name of the ODS and create other screen opens then drag character to key fields.
    o     Activate it then update rules it will give error to it then go to communication structure and give 0Record mode then activate it then go to update rules it will activate it.
    o     Then go to info source then create info package then external data then processing update, Data targets then the scheduling then click start then the monitor.
    o     Then other screen opens there we can see if we doesn’t able to see the records then come back to the info provider right click on it then other screen opens then select the option activate data in ODS then a screen opens.
    o     so select the option QM where it would be in a yellow co lour then by double click then another screen opens then select green color option then click continue it and it comes to the previous screen then select the option and click save it would be underneath of it just click it up and close it.
    o     Then come back to the main screen to the info source to the info package go to the package and right click on it then a screen opens then click schedule without distributing any of the tab directly click the monitor tab. Then refresh it until the records come to the green.
    o     Once it is green the click the data target and see the file executed.
    o     Now go to the info provider then a right click on the file name then create info cube. Then a new screen opens and gives the name and activates it. The drag the key figures to the other side, time characteristics to the other side, and chacetristics to the other side.
    o     Then create the dimension table then assign it and activate it .Then go to file name right click on it then select the option create update rules select ODS option and give the file name and activate it .
    o     Then come back to the main screen and refresh it. Whenever you see 8 file names you will know that it is undergoing the data mart concept.
    o     In the main screen click ODS file right click then a pop up screen opens select the option update ODS data target. Then another screen opens in that we are able to see 2 options full update, initial update then select initial update.
    o     Then another screen opens info Package there the external data , data targets , scheduler select the option later in background option then a another screen opens just click immediate then click save automatically it closes then click start option.
    o     Then select monitor option then the contents then the field to be elected then the file to be executed.
    regards
    ashwin

  • Delete blank records from the cube

    Hello;
    We just upgraded from 3.5 to 7.0.  When we started running our queries for the Inventory cube, we were getting an error message of "Error:  The validity interval has the initial value as lower limit".
    When I checked the cube, I found records that were blank, such as no dates, plants, etc..  I then tried to see if I can delete those records, but I cannot find a way to do this.  Can someone tell me how to delete the blank records or any records from the cube directly?  When I run the queries from the ODS, I do not get any errors at this time.
    Any information, suggestions or HELP is greatly appreciated.
    Thanks,
    Maximina Barry

    Hello Maximina,
    You could try writing in some code that would delete the records which have some fields as blank in the start routine of the transformation that connects the ODS to the cube . So that the next time you load data from the ODS to the cube .. they would stay deleted .
    Hope it helps.
    Just to add ...
    refer -> Need Sample Code to delete records from Cube using  SE38 Editor
    Thanks,
    ~Vj
    Message was edited by:
            Vijay Gopinath

  • Is the cube processed after an OLS full optimization?

    Version: OutlookSoft V4.2
    Sometimes, the value in fact tables are not consistent with the values retrieved via Analysis Service. At this time, processing the cube in Analysis Service may solve the problem.
    An OLS full optimization sum the data in 3 fact tables to one, and empty the other two. My question is if the cube is also processed in this operation.
    Thanks,
    Jason
    Edited by: chaoloo on Apr 7, 2010 11:51 AM

    HI,
       This can happen when an administration process not finish properly. As you know the two of partions are MOLAP and those must be processed to see the data.
       The optimization process is processing the partitions at the end.
    Best regards,
    Mihaela

  • Infospke not pulling data from the cube

    Hi,
          Though there is data in the cube ,when I say start extraction the infospoke is pulling zero records .But I see a file created but I am not able to see the data.In the monitor it says 0 record extracted.
        I have done this first time in the new upgrade system where I changed the server name.
    Thanks

    Hi,
    Check out the layout definition(Data column) for the corresponding planning level and also you can check the <b>planning area</b> value whether it corresponds to your cube name ..
    Also make a cross check with the <b>listcube</b> for your corresponding restriction which you have made in planning level..
    Regards,
    Siva.

  • Modelling the fields in the cube from different source system.......

    Hi,
    I need to create one query on the cube.
    User want some of the fields in the query which are present in diffrent source system , rest of the fields are present in the cube.
    These are master data fields ( 7 fields in total) from other source system.
    Cube gets data from one ODS.
    some steps I need to do are :
    1) create new source system
    2) Create corresponding objects in BW.
    3) Model the things in ODS and cube
    Can somebody let me know what is the best way/steps to model such scenario.
    Thanks, Jeetu

    Hi,
    Replicate both the data sources to BW.
    Create 2 infosources/transformations, map them to respective fields and infoobjects.
    Now assign them to cube and load the data
    hope this helps.
    Rgs,
    I.R.K

Maybe you are looking for

  • Printer not printing

    replaced black cart genuine hp ink. printer would still not print any black. pulled print head cleaned (have cleaned twice before) then said that there was no print head in, took apart agian, said no ink, cleaned again. got to work went thru the star

  • Interface Mapping not found error

    I'm getting "Interface Mapping <name> (SWCV=<id>) not found" error during runtime. I did not do anything to the specified interface mapping. If I go into the repository and put into modify mode, add space to description, save, activate, it all works

  • Wrong credit card info needs updating to pay yearly payments for 100 GB online storage

    How do I get the new credit card info into my account detail.  I have tried for hours but have not found how to make this entry.  Don T.

  • OraDb10g_home1 does not show up in ODBC

    I've started the tutorial: Creating a Repository Using the Oracle Business Intelligence Administration Tool Locagted at: http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/bi_admin/biadmin.html I've Installed (in the following order) Oracle Expre

  • How do I see the contents of the hard drive on a Mac Mini?

    How do I see the contents of the hard drive on a Mac Mini?