Key figure present in Infocube but not in Transformation

Hi All,
I have added two new quantity key figures in my cube but I am not able to find them in Trnasformation from undelying DSO to the said CUbe.
ALtough if i search for the Key figures in the cube i am able to see them but they are not present in the trnasformation.
NOTE: i have 252 char and key figures in my cube at present ( this number i got from the sl no field in transformation

Hi,
Check for the consistency of the cube and Activate again, the related transformations should go for inactive,
Add the same 2 KFs in the underlying DSO as well, activate
then check the 2 KFs should be in the Transformations, mapp it and acticvate.
Regards
ReddY A

Similar Messages

  • Key figures with Heirarchy in Bexquery not showing up in Snapshot/ Explorer

    Hi,
    I am taking a snapshot of a multiprovider in Explorer using T-code RSDDV.
    In the related bex query I have a few calculated Key figure which I want to get it into the explorer tab / Key- figures. The idea here is to use these as measures within the Explorer portal.
    The problem I am running into is if any of these key figures use Hierarchies I am not able to bring it in but without the hierarchies I have no issue.
    Has someone come across this?
    If you need more clarification please feel free to ask.
    Thanks
    bob

    You have a beautiful example in the Oracle By Example Series here :
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/bi_admin/biadmin.html#t2s7
    If you follow the instruction on the Channels Detail_Key in this example, you will succeed
    Success
    Nico

  • Add new key figure to an Infocube

    Hi Experts
    I need add two new key-figure to the Infocube with data.
    Can I do this, or I need have an empty cube in order to made the changes?
    Thank you in advance!

    Yes the same, no need to delete data unless you recategorize the existing characteristics the same is true for the ods too. Adding is not issue, only removing.
    thanks.
    Wond

  • Key figure values in MC$K not updated

    Hi
    I have a situation where I run transaction MC$K (Material Analysis: On-time delivery: statistics):
    At first I had not done any config in transaction MCFC for the deviation of delivery date. So when I ran MC$K, the delivery date variance key figures showed zero (0).
    Then I updated the variance intervals in transaction MCFC and reran the report. Still did not show anything for the old purchase orders, but for any new created PO/GR that that I did after my settings in transaction MCFC are taken into account.
    But what if I want to see anything that was created before I did my MCFC config? For the old purchase orders that is...is there any update program I need to run for the info structure?
    I am a bit new to this so please bare with me...

    Hi,
    Problem has been resolved by passing the 40 char length material, and location in the char combo table of BAPI.
    Ex: CHARACTERISTIC_VALUE = 00000000000000000000000000000000000100600 (Should be 40 char).
          CHAR_COMB_ID = 1 -
    you can give any number.
    Now i am facing another problem with this BAPI.......
    In our planning book time periods like first two weeks in day buckets, after thet all in week buckets.
    Case1: day buckts - noprob
    case2: weekly buckets : suppose a week start from 17/01/2010 end with 23/01/2010. In this case i am not able to create a order on 22/01/2010.
    BAPI allowing the time period start date as 17/01/2011 and end date as 23/01/2011 and its creating the oder on 20/01/2010(middle day of the week).
    Can anybody suggest on this..
    Thanks

  • Key Figure calculation in Abap is not working correctly - Overlooping

    Hi,
    I wrote a logic to calculate the ratio of key figure but it is not working correctly
    For example I have a requirement to split 1 Product into Several new Products and also the Net Amount will be splitted to these several new products as well. The total Amount of the new product will be equivalent to the Net Amount.
    So far my Logic is splitting the product to several new products but the amount is incorrect as the calculation is over looping.
    Sample
    A PRODUCT has Net Amount 1000. And this product needs to be splitted into 3 new products. Each of this new product is assigned a ratio of 0.3, 0.2 and 0.7 respectively. total sum of the ratio is 1.
    PRODUCT1 0.3 = 1000 * 0.3 = 300
    PRODUCT2 0.2 = 1000 * 0.2 = 200
    PRODUCT3 0.7 = 1000 * 0.7 = 700
    The total amount of this new products is 1000.
    Now my logic is working this way.
    PRODUCT1 0.3 = 1000 * 0.3 = 300
    PRODUCT2 0.2 = 1000 * 0.2 * 0.3 = 60
    PRODUCT3 0.7 = 1000 * 0.2 * 0.3 * 0.7 = 42
    Only the PRODUCT1 is working correctly and there is overlooping for the remaining products
    Logic used
    DATA: t_data TYPE data_package_structure OCCURS 0 WITH HEADER LINE.
    DATA: t_newdso LIKE /bic/newdso OCCURS 0 WITH HEADER LINE.
    DATA: t_olddso LIKE /bic/olddso OCCURS 0 WITH HEADER LINE.
    DATA: amount LIKE data_package-netamount.
    DATA: zidx LIKE sy-tabix.
    REFRESH t_data.
    LOOP AT data_package.
      zidx = sy-tabix.
      MOVE-CORRESPONDING data_package TO t_data.
      REFRESH t_newdso.
      SELECT * FROM newdso INTO TABLE t_newdso WHERE prod =
      data_package-prod.
      SORT t_newdso BY prod.
    *LOOP AT T_NEWDSO.
      READ TABLE t_newdso WITH KEY prodh4 = t_data-prod.
      IF sy-subrc EQ 0.
        LOOP AT t_newdso.
          t_data-prod = t_newdso-/bic/znew_mp.
          t_data-material = t_newdso-material.
    *T_DATA-NETAMOUNT = T_DATA NETAMOUNT * T_NEWDSO-/BIC/ZSP_RATIO.*
          APPEND t_data.
        ENDLOOP.
      ELSE.
        REFRESH t_olddso.
        SELECT * FROM olddso INTO TABLE t_olddso WHERE prod =
        data_package-prod.
        SORT t_olddso BY prod.
        READ TABLE t_olddso WITH KEY prodh4 = t_data-prod.
        t_data-prod = t_olddso-prod.
        t_data-material = t_olddso-material.
        APPEND t_data.
      ENDIF.
      MODIFY data_package INDEX zidx.
    ENDLOOP.
    REFRESH data_package.
    data_package[] = t_data[].
    thanks
    Edited by: Matt on Sep 27, 2010 2:25 PM - added  tags

    Hi,
    I am not really good at debugging Abap code since I am a newbie. however  I have tried to add CLEAR T_DATA before the first loop.
    REFRESH T_DATA.
    LOOP AT DATA_PACKAGE.
    ZIDX = SY-TABIX.
    MOVE-CORRESPONDING DATA_PACKAGE TO T_DATA.
    and before the second loop and select statement and at the end of the loop.
    REFRESH T_NEWDSO.
    SELECT * FROM NEWDSO INTO table T_NEWDSO WHERE PROD =
    DATA_PACKAGE-PROD.
    SORT T_NEWDSO BY PROD.
    READ TABLE T_NEWDSO WITH KEY PROD = T_DATA-PROD.
    IF sy-subrc EQ 0.
    LOOP AT T_NEWDSO.
    but then not all data are being fetched.
    thanks
    Edited by: Bhat Vaidya on Sep 28, 2010 8:33 AM

  • Function module to get the chars and key figures of an infocube

    Hi Everyone,
    Can anyone please let me know is there any function module where if I pass the infocube name as the input parameter, it has to give me the output parameters its characteristics and key figures.
    I require this to display the report in drilldown form i.e first the infocube name and then later its chars-i.e its fiscyear, etc and then compcode..
    Thanks,
    Prashant.

    Thanks the fm is really very helpful, but is there anyother fm or table which stores all the record count of the infocubes in the bw systems according to there infoobjects, say for eg. infocube a has fiscyear and for the year 2000 or 2001 the no:0f records information.
    It would be nice if anyone knows is there any fm which gives all these information.
    Thanks,
    Prashant.

  • Max no. of Characteristics and key figures stored in infocube

    Hi All,
       What is the maximum number of characteristics and key figures that can be stored in the infocube?
    Best Regards,
    Chandan Dubey

    Alright,
        Now what I know about that is max 255 chars and 255 key figures can be stored. Here I am talking about the individual planning levels (like product, product group, customer, location and so on) and not the "DATA".  I know data storage can not be defined in numbers and no significance too.
    I hope my question is clearer now !!
    Best Regards,
    Chandan Dubey

  • Virtual Key Figures in RSR_OLAP_BADI COMPUTE Method not recalculated

    Hi,
    Please clarify why is the COMPUTE METHOD of RSR_OLAP_BADI not always 
    triggered or executed.
    For instance, my query is drilled down by customer and
    material by default. Upon opening the query and after entering
    the appropriate selections, the virtual key figures that I have
    used in the query are correct .
    However, if i make any change to the query and run it in RSRT, the BADi method COMPUTE is not executed.
    Is this really the normal behavior of the said BADI? Why is
    it unstable?

    Hi Rohit,
    I have a similar problem the compute method is not trigerring and i am trying to debug it but it is not breaking at all, although when i generate from rsrt it breaks at a breakpoint of define method however i have defined another break at compute method but not breaking.
    I am using the infoobject inside the query but and tried to hard code it  for testing in the compute method but doesnt seem to be getting executed.
    Please help.
    Cheers,
    Jad

  • Locale Currency symbol present in Win but not Linux

    I am trying to get the currency symbol for the locale en_NZ (English, New Zealand), which is '$'. However, it works on Windows, but not on Linux. On linux it returns "NZD" which basically means it did not find the symbol for the locale. I am using 1.4.0 on both linux and windows, I even tried overwriting jdk/jre/lib/ext/localdata.jar on the linux system with the one on the windows system, and it still doenst find the symbol.
    I have also iterated through all available locales for both the linux and Win JREs, and en_NZ is available.
    Has anyone come across this problem?
    Thanks
    - Adam Langley

    You have complete faith in that dont you?
    It doesnt work. well, it works, but the Symbol is not found. Not on Linux. And the AU symbol is not fuond on Windows when it is on linux. Very annoying really.
    I have quite alot of experience with i18n, and cant see why this wouldnt be found. the libraries are available, but not returning the currect data for some reason.
    Try both of these.
    System.out.println(java.text.NumberFormat.getCurrencyInstance(new Locale("","AU")).getCurrency().getSymbol()); // SHOULD RETURN $, but WIN=AUD, LINUX=$
    System.out.println(java.text.NumberFormat.getCurrencyInstance(new Locale("","NZ")).getCurrency().getSymbol()); // SHOULD RETURN $, but WIN=$, LINUX=NZD

  • How To use the going back function in Safari (multitouch)? Going back on Websites ist only possible using the arrow Key on the left corner but not by using the sweep function like it is possible in macOS.

    How can i use the going back function in Safari like it is possible in MacOS? On the Mac i can chance back to previous Websites by sweeping with two Fingers. Unfortuntely is this Not possible on the ipad. I tried with one and to fingers but it doesn't work.
    The multitouch function is switched on but still Not working. What is wrong? Thx for help.

    To go back a web page in Safari touch the screen with one finger at the extreme left and swipe to the right.
    To go forward a web page in Safari touch the screen with one finger at the extreme right and swipe to the left.

  • Time machine backups present on disk but not seen

    Hi. I just notice that on my macbookpro time machine is keeping creating the hourly backups, but I cannot see them anymore from the time machine interface.
    All backup files seem to be on the disk, but whenever I enter the time machine I can only see the last one, as if I started the time machine for the first time.
    Any idea why this is happening? And, more important, any idea on how to fix it?
    I'm on a macbook pro with OS X 10.8.5; the time machine files are stored in an external USB disk.
    Thank you for your support.

    shuusaku wrote:
    Hi. I just notice that on my macbookpro time machine is keeping creating the hourly backups, but I cannot see them anymore from the time machine interface.
    All backup files seem to be on the disk, but whenever I enter the time machine I can only see the last one, as if I started the time machine for the first time.
    Any idea why this is happening? And, more important, any idea on how to fix it?
    I'm on a macbook pro with OS X 10.8.5; the time machine files are stored in an external USB disk.
    Thank you for your support.
    My TM did this after the upgrade to 10.9
    When I first set it up, I just clicked to use the same drive I had been using, even though I'd just formatted it.
    Apparently that causes the backups not to appear in the app.
    So, here's what finally resolved it. I:
    1. Opened Time Machine Preferences.
    2. Turned Time Machine off.
    3. Clicked "Select Disk...".
    4. DELETED the TM disk I had previously selected.
    5. Reformatted the TM disk once again.
    6. Reopened Time Machine Preferences.
    7. Reselected the newly formatted disk from the list.
    8. Turned Time Machine back on, and let it begin backing up.
    When I opened it the next morning, I had seven backups in the app to choose from.

  • Change comma and period in key figure presentation in BEx WAD reports

    Hi gurus
    We run our BEx WAD reports in the SAP portal. By default the thousands separator is period and the decimal separator is comma. How can I change this so the period becomes the decimal separator and the comma becomes the thousands separator?
    Kind regards
    Erik

    Hi Erik,
    you can change this by setting at user parameters.
    At system, at any screen (RSA1) -> menu SYSTEM- > USER PROFILE -> OWN DATA ->  Defaults Tab, here you can change.
    and Save.
    these will reflect in WAD report output.
    Best Regards.

  • BEx Broadcaster Send button - No Broadcast Wizard with Key Figures in Rows

    Working in BI 7.0 SP 16, we are having an issue with BEx Broadcaster.  For a typical horizontal query (key figures in columns), the send button in BEx on the Portal works properly and returns the Broadcasting Wizard.  However, when using a query in a vertical format (key figures in rows), the window opended by the send button displays the "spinning wheel" and never procceds on to the Broadcasting Wizard.
    I have checked for SAP notes related to BEx Broadcaster and was not able to find anything relevant.
    The same query was tested with the key figures in columns and in rows.  The Broadcast Wizard comes up when the key figures are in columns, but not in rows.  Since it was tested both ways with the same query, I am assuming that the issue is related to the orientation (horizontal vs. vertical).
    Has anyone else run into this issue?  Is there a known limitation, or a patch available?  Does anyone have a BI system with a query you could flip the key figures from columns to rows and give it a try?
    thanks,
    -Shawn

    Shawn,
    I'm having my own issues with BEx Broadcaster in the Portal, but from BEx Query Designer - Query - Publish - BEx Broadcaster, the BEx Broadcaster Wizard is available in both cases (Key figures in columns and key figures in rows).
    Kim

  • Key figures are not available when i performing LBWE action

    Hi gurus,
      I am trying to load 2lis_02_hdr, 2lis_02_itm and 2lis_02_scl to infocube 0pur_c04.
    But whatever the key figures available in the cube its not appear in the R/3 side data Source.. but those keyfigures are available in LIS structure.. for that how can i bring those key figures to dataSource for using LO Cockpit..
    I heard we need to perform some prerequistes in SBIW.. let me know in breif with step by step..
    Full points will assign to all those reply my query early..
    Please let me know if not understand my query..
    Thanks in Advance

    Hello Sudheer
    2LIS_02_HDR, ITM and SCL do not take data from S011 but directly from transactionnal tables like EBEP, EBKO, EBPO (names quoted from memory).
    So you have to look for the key figures from those tables and not the one in S011.
    Historically, the three datasource were built to replace 2LIS_02_S011 but the calculations to rebuild the keyfigures were delivered in BW in an old BCT that made the conversions. The logic and modeling have changed completely.
    If you really need to transfer S011 to BW without remodelling the data, you may want to use a generic extractor based on S011 (provided you have a delta key available).
    Otherwise, in SBIW, Options for datasource specific to the application, Logistics, purchasing, you have two customizing transactions. you have to define branch and process key to load data into BW. But that will not have any effect to LBWE.
    Hope this helps.
    Regards
    Fabrice

  • AD contains system Recovery Key, but not showing in MBAM.

    I am in an environment with MBAM 1.0 installed. I built the MDT 2013 system here and am currently trying to figure out why the bitlocker keys are showing up in AD but not MBAM.
    In MDT, I have disabled the "enable bitlocker" options so there shouldn't be a case where that the TPM ownership is wrong (I think). I do however set the
    bios password with CCTK, then apply the default bios configuration with an ini via cctk. The bios sets and activates tpm just before the hard disk is formatted by LTI.
    q1. Could setting the TPM without restarting cause the TPM ownership to be set to the PE in some weird way.
    q1.1. would I clear the tpm if this is the issue?
    So MBAM client is installed on the reference image and captured by MDT. The WIM is then deployed to a system using a standard TS with the bitlocker disabled like
    I mentioned above. I do not make any changes to reg for mbam in the reference image. For testing, I tried adding the mbam recovery key location url to the reference image reg. I still need to test that but a few other tests I did makes me believe this
    is not the case.
    MDT binds the system to a default OU in the domain. After the system is configured, I start Bitlocker. (Sometimes I start bitlocker when the system is in the default
    OU, sometimes I start it after I move them into the right ou for the role). I am almost positive the default OU has the mbam settings (I do not have access to this gpo), since the manage-bde -status comes back AES 128 with diffuser (as compared to regular
    aes 128).
    After bitlocker finishes, the key is found in AD but not mbam.
    I think the major questions I have are:
    How can I force MBAM to take ownership of the TPM after the os is bitlockered? (about 100/700 machines are not reporting to mbam but are to bitlocker because of this new deployment system)
    If I turn TPM on and activate while I was in the PE, would that mean the PE has the TPM ownership? (or bitlocker in this case, since mbam is not installed on the PE)
    - Could I install MBAM on the PE and use that to manage the tpm? (MDT 2013) (I have seen some documents that cover this but it largely comes from wanting a pre-provisioned bitlocker.)
    ** I think the most manual way of correcting the issue I am having, is to either clear the tpm and rebitlocker, or
    .. when a system is about to image, turn tpm on but leave it deactivated. (If I leave the tpm deactivated, every system will need to be manually rebooted and f10 will need to be pressed to continue the bitlocker process. this includeds
    a user login too)

    Keep the MBAM out of the .wim! Install it in task sequence.
    MBAM Client has its own log files in event viewer, there you perhaps find the reason why recovery key is not stored in DP. But fix your image first, keep it thin.

Maybe you are looking for

  • My purchases, such as movies and music, are not showing up on my new laptop even though its the same account

    I just got a new laptop and recently downloaded itunes. I logged on to my apple account, and everything was right except none of the movies and songs I had bought before getting this laptop show up in the library. I authoried my computer with my appl

  • Get Last date of every Month in a year

    Hi All, I need to find last date of month for given year. Example: I used to pass date or year such as 2012 or 01-01-2012(DD-MM-YYYY) SQL query needs to return last date of every month such as 31-01-2012 28-02-2012 31-03-2012 30-04-2012 31-12-2012 fo

  • Ipod not recognised by car cd player

    I just installed a brand new Alpine CDA-105 and have the high speed connection cable hooked up to it. When I hook the iPod up to it, the stereo doesnt recognise it and the iPod doesnt seem to think it is connected. I have tried to hook up my 5th gen

  • Run ssh command in labview

    does anyone knows how to run an ssh command in labview? I know how to run some linux commands in labview but my problem is when I try to run an ssh command ... thks JP

  • IPhone 5 slidind on or off glitch

    Hi I have an iphone5 with os 6.1.4 and I see a very weird issue with the settings, especially over top right corner of the screen. Everytime when I go to settings to turn anything on or off I have to tap or slide 10 to 20 times, this is more prominen