Changes made to a cube

I have added two characteristics to a cube - they share a dimension with another characteristic.
The cube is loaded from a staging ODS
Before the changes were made the % of transferred to received records at the cube level was about 70%.  Now the ratio is about 35%.  Would the adding of these characteristics reduce the ratio? If so why since I thought it would be greater.  Thanks

Hi,
<i>Before the changes were made the % of transferred to received records at the cube level was about 70%.</i>
Do you mean ration between Transferred to added records. How are you counting this ratio? I mean do you summed all transferred records from all <b>requests</b> uploaded to cube to count the Tranferred records.
If you counting like this , definately Transffered records of request after chage the cube will be less, because now you are taking only records from Active table.But in the earlier requests you would have considered the change log records.
With rgds,
Anil Kumar Sharma .P

Similar Messages

  • Will the changes made in the cube affects the query also??

    Hi all.
         I have loaded a cube with data and created a query over it. Now, I am trying to change the multiple currency types (EUR, INR,$) to constant currency(INR) in the cube level.
         Will this affects the query also../.
         pls give me a quick response...
    With Regards,
    Yokesh.

    Hi ,
    Yes the output can affect if there is any analysis on currency type . But if it is not there and you have only one base currency in source system then it wont affect unless you have made any changes in update rules or transfer rule.
    Regards
    Rahul Bindrooo

  • Report for abserving changes made to the customer master and moniter

    Report for abserving changes made to the customer master and moniter and detail
    Please send with t. code.

    Hi Dhari,
    Well the requirement seems very simple but its not as simple as it looks.
    i have an idea not sure whether it gonna work or not. you need to build a history cube as if i understand your requirement then for any selected period you wanna see the change in wage type or pay rate for each employee if any.
    1. pick up an cube that builds on emp transaction data.
    2. add the 0empoyee Md, wage type and pay rate from MD to the cube and fill the cube
    3.so now every day or in scheduled time interval the MD will load and the corresponding the TD will be loaded to the cube.
    4. create a info object say indicator and add it to the cube
    5.while loading the data to the cube everyday in tranformation check if for same employee there is a change or not in the wage type and pay rate. If so set the indicator to 1.
    4.now build one more cube for holding the changed records from this cube and call it say zhrchange
    5. now pull the date, year and related emplyee information for the emplyee to the zhrchange for those with indicator 1.
    6. before the next load happen, rememrbe to set the indicator to 0 before checking the conditoin in the transformation routine , so that only if the conditoin satisfy then only it will be 1 else it will be 0.
    now the cube zhrchange has all the changed records with time stamp and you can base your query on that to get the changed values in specific time period
    hope this helps.

  • Changes to Real-time cube through input-field entry

    Hello,
    I have created query on Real-time cube (which has some data ) and enabled input-entry field for one of the key figures.
    2).Created a "Push-button" to save the changes made in query.
    Issue : changes are not saved at cube level , when i press "Push" button.
    For Push button Properties, I used "Planning -specific Command" --> "Save"
    Pls. let me know possible reasons and solution to the problem.
    Thanks
    CP

    Hi,
    Check at first that you dont have a lock data issue (TCODE SM12).
    If you are using WAD or Query Analyzer, please double check the following:
    1) Your input-ready query must be created based on the aggregation level but not direct to the real-time infocube.
    2) In the Query Analyzer look into the query properties and check that Change Mode is marked on and the key figure properties on the PLANNING tabstrip check that you have at least one method for ready-input.
    3) In WAD Data Provider is linked to your input-ready query.
    4) Check your Analyzer web item looking for data binding to Data Provider just mentioned.
    5) Add a couple of push-buttons with SAVE_DATA command and RESET_DATA also.
    Please check step by step and try again.
    Hope this helps.

  • List view web part not reflecting changes made to list view in SharePoint Designer

    Dear All,
    When adding a list view web part containing a view modified in SharePoint designer (e.g. conditional formatting applied, or group headers modified) I'm finding that the changes made in SPD are not reflected in the web part. 
    For example, I go into SPD edit a view, and the view appears correctly when I go back into SharePoint, however when I link to the view within a list view web part it results in losing the changes made in SPD. 
    Becasue it's a publishing page I'm unable to edit the contents of the web part in SPD.
    I'm sure this is expected behavior but how do I get around this?
    Thnaks,
    MDB

    Try below
    http://stackoverflow.com/questions/19533998/sharepoint-designer-doesnt-show-anything-in-list-and-libraries-link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/a63a1894-6b1d-420a-95dd-b6c546eab34d/updates-made-to-sharepoint-designer-2010-workflow-do-not-show-up-on-the-server?forum=sharepointcustomizationprevious
    http://stackoverflow.com/questions/5959521/sharepoint-designer-saves-the-changes-but-it-does-not-affect
    http://social.technet.microsoft.com/Forums/en-US/1e9a8c27-bbc5-4a6f-8daf-4b243182f543/changes-in-sharepoint-designer-2010-not-showing-in-sharepoint-server-2010-page?forum=sharepointadminprevious

  • ALV Grid: how to save changes made in an editable Grid

    Hi,
    How to save changes made bu the user in any of the editable cells in a ALV Grid?
    Regards,
    deb.

    Hi,
    If you are using the FM look at the following example code...
    data: LC_GLAY TYPE LVC_S_GLAY.
    LC_GLAY-EDT_CLL_CB = 'X'.<<<<<------
    gt_layout-zebra = 'X'.
    gt_layout-detail_popup = 'X'.
    gt_layout-colwidth_optimize = 'X'.
    call function 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = i_repid
    i_callback_user_command = 'USER_COMMAND1'
    it_fieldcat = header
    is_layout = gt_layout
    i_callback_top_of_page = 'TOP-OF-PAGE1'
    i_grid_title = text-h17
    it_sort = gt_sort[]
    i_default = 'X'
    i_save = 'U'
    is_variant = gt_variant
    it_events = gt_events
    I_GRID_SETTINGS = LC_GLAY<<<<<<------
    TABLES
    t_outtab = itab.
    clear itab.
    Form USER_COMMAND1
    FORM USER_COMMAND1 USING u_ucomm LIKE sy-ucomm
    us_selfield TYPE slis_selfield."#EC CALLED
    case u_ucomm.
    when '&DATA_SAVE'.<<<<<<<<----
    This will come after the data was EDITTED and when SAVE was clicked by user in output scren.
    Here now in the final internal table(ITAB) you can find the data changed in EDIT mode.
    After this you can do manipulation what ever you want.
    Thanks.
    If this helps you reward with points.

  • IPhone using Exchange slow to sync changes made in Apple Mail

    I searched but didn't see anyone with this particular problem.
    When I make a change on my Mac in Mail, say deleting a message from my inbox or moving to another folder, it usually takes hours before that change finally syncs and shows up in my iPhone.
    However, there is no problem the other direction. If I move or delete a message on the phone, the change shows up on my phone within one minute.
    Any idea why this would be? I hate having junk I've already deleted still on my phone for hours before it goes away! Anyone else seen this issue? Thanks!

    However, there is no problem the other direction. If I move or delete a message on the phone, the change shows up on my phone within one minute.
    Do you mean a change made on your iPhone is reflected with the Mail.app on your Mac within a minute?
    I don't access an Exchange account. I have no problem with this in either direction with my MobileMe account.
    Are you accessing your Exhange account as an IMAP account with the Mail.app on your Mac and are you are accessing your Exchange account via ActiveSync with the iPhone's mail client?
    If so, not sure this would make any difference, but it might.

  • How to Track the changes made to the custom table field value

    I want to track the changes made to the custom table field value in table maintenance generator.please help me it is very urgent
    Thanks & Regards,
    Kranti

    Hi Satya,
    These are the steps you've to do.
    1. Enable the change document flag in the data element level for the fields of the tables you want to monitor.
    2. Go to transaction SCDO. Create a new change object, and add your table to this object. After generation, you'll get a function module.
    3. Call this function module in the table maintainence generator screen, after the data is saved to the database table. This function module automaticallly writes the changes, with the old and new values, and the fields that were changed to the tables CDHDR and CDPOS.
    4. You can keep track of the changes made to the table by monitoring these tables.
    Regards
    Anil Madhavan

  • Report for the changes made in Purchase Order

    Hi Friends,
    In my location, changes are made to the purchase orders as and when required. Is there any report which shows the changes made to the Purchase Orders?? I am aware of the Item changes option in the Purchase Order.
    Thanks in advance..
    Regards,
    Phani

    Hi,
    You have to develope an own ABAP report for this, based on the change tables CDHDR and CDPOS
    CDHDR - Header Change
    CDPOS - Item Change
    EREV - Version Change
    Check the link
    Purchase order change log
    Regards
    KK
    Edited by: Kishore Kumar Galla on Apr 5, 2010 1:16 PM

  • The changes made in the WAD web template is not replicating on web browser

    Hi,
    We are using BI 7.0 WAD. Suppose if i create a one web template and if i run it ...it is working fine.
    If i change the present web template and if i do change anything on the present web template and if run this web template it is giving the previous result....it is not reflecting the present changes.
    The changes made in the WAD web template is not replicating on web browser result.
    I went to transaction SMICM, then choose "Goto" from the top menu. From there, go to HTTP Server Cache, then choose Invalidate, then choose Global in system. With this thing also it didnt slove.
    thanks

    Clear your browser cache also and see if the changes are visible.....
    Arun

  • My account was accessed and unauthorized changes made by We R Wireless

    I recently became a ware of a very serious issue and have been getting little assistance from Verizon.  My account was password protected and had only 3 people identified as having the ability to make changes on my account.  I received a notice from Verizon regarding a change made on one of my lines.  Upon review it was an unauthorized change to add "Total Mobile Protection" to one of my lines for $9.00 a month.  Also in this notice was a credit which I was entitled to for a $10.00 Active Promotion.  I believe this credit was placed on the account so that the change might slip by unnoticed.   When I looked into the change it was made by a Representative from We R Wireless in Ship Bottom NJ.  I have never been to this store nor have I spoken with anyone ever at this store.
    After calling the store and confirming my account was accessed and unauthorized changes made, I was told by the manager that an employee had in fact accessed my account and made those changes.  I still could not understand how it was possible for the changes to have been made without my password.  The activity certainly looked very suspicious and I figured it had to do with commission to the representative for adding the insurance plan.  This was denied multiple times by the manager of the store as well as the District Manager.  In the meantime I had received multiple emails from We R Wireless in their attempts to "Make this go away"
    What came next was the most disturbing and upsetting part of this situation.  I was told by the District Manager of WE R Wireless that my information they had collected years ago during a purchase of a phone and activation INCLUDING MY PASSWORD and that they had kept it in their system!!
    WE R Wireless had shared my personally identifiable information and Password to my account with Sales representatives at the Ship Bottom WE R Wireless store  and that was how they accessed my account!!
    As you can imagine I have now been receiving multiple calls from The Director of Retail Operations, Musafa as well as the Director of Operations, Jimmy.  They are attempting to sweep this under the carpet and it is inexcusable and unacceptable.  The reason for this post is to WARN others who may have made purchases at anytime at a We R Wireless store that they KEEP YOUR PASSWORD and employees are given the Passwords and have made changes to accounts.  I cannot believe that I am the only one that this has happened to and I am concerned this is a widespread breech and more importantly is ILLEGAL.
    I will keep this Board updated with developments but can tell you so far Verizon has not been very responsive to my concerns but this is unacceptable and I am thinking of contacting the FCC as well as an Attorney.  In this day and age of Identity Theft this situation must be addressed by Verizon whether or not this was one rogue employee or not our PASSWORDS and other Information should never be shared nor kept without our knowledge.
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Message was edited by: Verizon Moderator

    I can only tell you that the Verizon rep from the Fraud department as well as Verizon's legal department contacted me and said under no circumstances are these companies to retain Customer Passwords.  As you can see look at the potential for issues as evident in this situation.
    As far as the FCC and their responsibilities this is directly from the website
    The Federal Communications Commission regulates interstate and international communications by radio, television, wire, satellite and cable in all 50 states, the District of Columbia and U.S. territories. An independent U.S. government agency overseen by Congress, the commission is the United States' primary authority for communications law, regulation and technological innovation. In its work facing economic opportunities and challenges associated with rapidly evolving advances in global communications
    The agency investigates consumer issues such as Cramming which has occurred here if you go to the site you will see some of the recent fines for cramming levied by the FCC and it is a huge issue.  A consumer does not get involved in legal fees the FCC is responsible to investigate consumer claims of fraud and regulates the industry.  The Attorney General also takes this very seriously as well.
    Cramming - Unauthorized Charges on Your Phone Bill
    Cramming Settlement for Consumers Announced
    Dec. 19, 2014: The FCC, along with the FTC and state attorneys general, announced a $90 million settlement with T-Mobile regarding unauthorized charges - commonly known as "cramming" - on phone bills.
    Current and former T-Mobile wireless customers should review their bills and apply for refunds if they suspect third party charges were wrongly added to their bills at www.t-mobilerefund.com/
    Sent from my iPad

  • Error message when I insert a div tag: Couldn't commit the changes made in Live View. Refresh the Live View and try editing again.

    According to a web and support forum search, myself and another person, Chloe in the Dreamweaver Club forum, have ever reported this. Trying to follow along a Lynda.com tutorial, and the instructor isn't getting this error. Can't imagine why it's happening. I'd be very grateful for any help. I'm also getting an error dialog message:
    DIALOG BOX:
    While executing onClick in InsertFGDiv.htm, the following JavaScript error(s) occurred:
    At line 687 of file "Macintosh HD:Applications:Adobe Dreamweaver CC 2014.1:Configuration:Commands:InsertFGElement.js": The object is not currently contained in a document.
    This appears at the top of the screen:
    Couldn't commit the changes made in Live View. Refresh the Live View and try editing again.  [Refresh doesn't do anything.]

    Try the suggestions here -
    Index to Dreamweaver FAQ
    The solution for Javascript errors is likely the one.

  • How to track changes made in the ERD in oracle designer

    I want to track all changes made in my ERD in oracle 10g designer. Please suggest how to achieve it.
    use case: An ERD was approved in design phase. Few changes were made by development team and now in Implementation phase I need to track what all changes were made from say 3-Jan-12 to 3-Mar-2012
    Edited by: 909570 on Mar 5, 2012 1:14 PM
    To add here:
    Designer Version is 10.1.2.0.2.
    1. In my project versioning of ER is not being used so ER Version diff is not an option for me.
    2. In Reports, there are options for getting all entities, attributes which are created/modified in a period. But it seems it is not giving me correct results.
    Edited by: 909570 on Mar 5, 2012 1:14 PM

    Since versioning if off, there is no way to track changes.
    You can get a rough overview of possible changes by looking at the audit attributes (date created, date modified) in the properties palette, but that is already mentioned in your point 2.
    Basically, developers should comment what they added/modified.

  • My ipod nano 7th gen no longer shows "Playlists" in the music menu. No changes made other than deleting one and adding one playlist to those synced. Synced fine in late February. Not working as of 3/7/2014.

    My ipod nano 7th gen no longer shows "Playlists" in the music menu. No changes made other than deleting one and adding one playlist to those synced. Synced fine in late February. Not working as of 3/7/2014.

    I would either say that the iOS is correpted due to a software glitch or y have have a hardware problem like bad memory locations that are corrupting the iOS.
    - Restore from backup via iTunes. This will install a fresh copy of the iOS. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.   This will elimate corruptin in the backup causing the problem.          
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Since updating my iPhone 5 to OS 7, changes made to calendar on phone no longer sync to Mac Book Pro OSX 10.6.8 via iTunes 11.1.1.  Any thoughts?

    Since updating my iPhone 5 to OS 7, changes made to calendar on phone no longer sync to Mac Book Pro OSX 10.6.8 via iTunes 11.1.1.  Any thoughts?

    BHI00 wrote:
    Thanks -  I would rather not upgrade to snow leopard.  Is there a way to revert from IOS 7.0?
    What year, screen size, CPU speed and amount of RAM installed?
    Why not upgrade to Snow Leopard, if you can?
    NO. There is no way to downgrade your iPhone OS back to iOS6. Apple makes downgrades of their mobile OS not possible.
    If you can, the only thing you can do is upgrade your Mac's OS X operating system.
    Sorry,

Maybe you are looking for

  • Poor performance with Acrobat Pro 9

    Hello, Acrobat Pro 9 has begun to run very slowly. When checking review comments, simply filling in a check box for an edit can take a solid ten-count. If I take the same file and open it on another computer, it runs fine. I use the shared review fun

  • Defining values on SD Billing Plan during order entry

    Scenario- User enters a sales order with 10 line items. Based on specific material master information (material group, etc), items will be split on two billing plans. For example, lines 1, 3, and 10 would go on the first billing plan at 5% of the pri

  • Apple iphone 4s + apple care doubt

    hi guys i recently bought an iphone 4s from the US. whilw i was buying, the sales guy at apple store told that apple care+ for iphone has an international warranty that includes india. But when i reached back home (india) and called an AASP(apple aut

  • Protecting a DVD from being copied

    Is it possible to create a DVD using iDVD and protect it so that it cannot be copied by others? Thanks for your help!

  • Error in MIGO(Import)- FI/CO interface: Currency item entered several time

    Dear All, I'm doing Import process. I have created PO, then have done BOE in MIRO. After that I'm trying to do GR, at that time system is giving me following error FI/CO interface: Currency item entered several times Message no. RW018 Diagnosis Curre