Activating Changes in Dimension without Closing BPC for Admin

Hi,
  How do i activate the changes made in dimension tables without having to close "BPC for Admin"?
Cheers

Closing the admin console has no impact, except if you have earlier taken the system offline and are reminded to bring the system back online when you exit.
To activate the changes from the admin perspective, you need to process the dimension. If it's a secured dimension, you may also need to process the application, and update member access profiles as appropriate. If you're adding a new property to the dimension, you'll need to populate the property values & process the dimension from the member sheet.
Once the admin processing is through, end users will either need to exit Excel & log in again (the guaranteed solution), or eTools -> refresh dimension members. This second option is faster, but doesn't always update dim properties completely, if you're developing a report that uses that modified property. Sometimes closing & re-opening the XLS file seems to do the trick, but exiting Excel is the sure way.

Similar Messages

  • I change my password in my ipod about an hour but now i want to change it again and they won't recognize my old passwords. How do change my password without them asking for my old passwords? Also can i change it in iTunes?

    I changed my password in my iPod about an hour but now i want to change it again and it won't recognize my old password. How do I change my password without them asking for my old password? Also can i change my password from my iPod through iTunes?

    On the iPod did you go to Settings>Store and sign out and then sign in with the new password?

  • Can't find any BPF function in BPC for ADMIN for NW 7.0

    Hi experts,
    I am studying BPC for NW 7.0. and can't find any BPF function option at Action pane in BPC for ADMIN for NW 7.0.
    Can anyone help me?
    any thanks.

    Hello,
    As far as i know, there is no BPF option for BPC NW 7.0 but at 7.5 version we will be able to use BPFs.
    Peter

  • Dimension updation through BPC for Excel

    Dear All,
    Can we update Dimension through BPC for Excel ?
    Thanks for your support,
    Regards,
    SANJAY

    Thanks Nilanjan,
    Here in our case, we have created the Account dimension. Now user want that as we are using SAP GL codes and description in the BPC Account dimension ID and EVdescreption, If new GL account is created in SAP then it must be updated into BPC Account Dimensions also.
    I am not getting How Can I achive this in BPC. Till today I have developed Delta Reprot in SAP which will give me the exception Report which indicates that these are the new GL has been created in SAP in certain time period (That i will schedule in SAP daily).
    So that I have that record in .txt file.  Now I need to upload the same in BPC. Whether user need to go admin and update the same by copy peast or we can run some package in BPC for excel and it will update the dimension.
    Regards,
    SANJAY

  • Can I do all my work with 8 bpc and then change the comp to 32 bpc for final render?

    Well, I know I can, but I want to know if this is a fine workflow.
    Since non of the effects in AE are destructive, when I change from 8-bit to 32-bit everything gets recalculated, right?
    To give you more detail, I'm working with RAW footage from my Canon 5Dm3 and I'm using Element 3D and RedGiant plugins. The whole thing has tons of comps and effects.
    Any help would be highly appreciated.

    The look of blend modes, color correction, and blurs, gradients, and motion blur will change so you'll need to check everything carefully before you render. FYI I seldom work in anything but 32Bit because most of my work involves a lot of blending and layering and that all works better. If I do 8 bit projects they are usually just simple graphics. Even those projects are usually converted to 16bit for rendering.
    Most of the time I render tests for client approval using the AME using the Vimeo or YouTube h.264 presets, but most approved projects are rendered to a 32 bit image sequence if they are to be used again or at minimum a 10 bit 444 Digital lIntermediate for archiving. Compressed deliverables are always rendered using the Adobe Media Encoder or specialized software requested by the client.

  • Activating audit for Dimension Members in BPC 7.5 NW

    Hi,
    Is it possible to activate dimension member audit in BPC 7.5 NW. Meaning, can we trace changes to master data (dimension members) in BPC 7.5 NW?
    Best regard
    SSC

    Hi,
    The Activity Auditing tracks Administrative and User tasks at the Appset level.
    This will be controlled by the Administrators to check whether activity auditing is enabled or not.
    To enable this future go to -> Administration for the Web, choose Manage Activity Audit -> then choose one or both types of activities to audit.
    Please check the help file for the same.
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/a0/2d2e0ec3da472c82a3f0ff5a96d9ce/content.htm
    Regards,
    Raghu

  • Create an mp4 from mov without changing the dimensions

    I am working on a project in InDesign that needs to output to DPS.
    I take screen capture movies which are saved in the default mov format. These movies are 700 px x 400 px. That can't change.
    I need to convert the mov to an mp4 to add to ID for DPS.
    I open Adobe Media Encoder but I am confused as to how to set the output controls.
    I don't want to change the dimensions.
    What setting will convert the mov to mp4 without changing the dimensions?

    Does this help?

  • Change Topology without Closing Reference

    Hello All,
     Wondering if I should be able to change the topology of a MUX (reinitialize) without closing the reference?  I have a application that loops through the basic initialize, connect, disconnect sequence for the NI-Switch functions, and the topology changes for each loop.  I think my reference is getting lost, because it becomes invalid after several loops.  Do I need to close the reference before I reinitialize with the new topology?  I would prefer to not have to close it every time, because I have "cleanup" steps that close all of the references outside of the loop. Working with PXI-2527, LV 2013 and TS 2013.  Thanks in advance.
    GSinMN    
    Solved!
    Go to Solution.

    Hekki GSinMN,
    This KnowledgeBase Article should answer your question. The last line reads, "When changing the topology, you have to close the present session if one is open, and reinitialize the card with the new DriverSetup selected."
    Jonathan L.
    Applications Engineer
    National Instruments

  • In CVI !!!! How to dynamic change BaudRate of RS232 Serial COM Without closing the Port !!!

    Dear all:
    I want to change the buadrate of serial com without closing the serial com, but it failed when I use the function "SetCommConfig(m_hCom, &Com_cfg, Com_cfg_S) " to reset the buadrate ,baudrate is no change when use GetCommConfig to read back the value. 
    Appreciated all of your advice . TKS!
    Code with WINAPI as beloow:
    CreateFile(..) ;
    GetCommState(..);
    dcb.BaudRate= 1000000 ;
    SetCommState(..);
    //......do other things
    //change baudrate to normal without closing port .
    GetCommConfig(m_hCom, &Com_cfg, &Com_cfg_S);
    Com_cfg.wVersion = 0X100;
    Com_cfg.dwProviderSubType = 1;
    Com_cfg.dcb.BaudRate =9600  ;
    Com_cfg.dcb.StopBits =1 ;
    SetCommConfig(m_hCom, &Com_cfg, Com_cfg_S);
    GetCommConfig(m_hCom, &Com_cfg, &Com_cfg_S);   
    Solved!
    Go to Solution.

    This topic has been discussed some years ago: see here. Please note that even if I made that sample program which changes the baud rate without closing the port, I never used it in a real situation: you'll need to made your tests and check if this solution can satisfy your needs in the short and long term.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    How can I have one thing open in Safari on my MacBook Pro and search for another thing in Safari without closing out of the other? For instance, How can I leave Pandora playing while I search Facebook?

    With Safari open use the Command + T keyboard shortcut to open a new tab.
    Or, Command + N to open a new window.

  • Roles for the user to Edit the Dimension without being an administrator

    Dear Users,
    I have a query based on Planning security.
    I want the user to edit the dimensions and members in planning application. However, the user cannot be administrator.
    I have created a user and assigned the role of "Interactive User" on Planning roles and of "Dimension Editor" on Shared Services access. With this provisioning user the "Administration-->Dimension" is grayed out for the user.
    Please suggest if roles can be assigned to the user in order to Edit the Dimension without being an administrator?
    Regards,
    Praveen.

    I am sure this question gets asked over and over, they need to be an administrator.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Activating 'change documents' for notification item class 015

    Dear Experts,
    Kindly help me in activating  'change documents' for notification item class 015.
    Thanks and Regards,
    R N Sabat

    Hi R N Sabat
    The creation of change documents for the classification has to be
    activated for every class type. Go please to the customization of the
    appropriate class type:
    Cross-Application Components
    -> Classification System
      -> Classes
       -> Maintain Object Types and Class Types
    You will find there a flag to activate change documents.
    As a precondition you'll have to activate the flag 'Multiple objects
    allowed' before. If you already have classified objects
    for this class type these classifications has to be converted before.
    For the conversion of already existing classifications use please report
    RCCLUKA2. It processes the conversion and sets the flag 'Multiple
    objects allowed'. Regard please the documentation of report RCCLUKA2.
    Thereafter you'll be able to activate change documents for this class
    type.
    Please check the 2 notes :
    80907 Setting the several objs.for each class type indctr
    65124 Classification Change Documents
    If you have any questions , please let me know .
    Enda.

  • Whenever I open a post on Facebook I can't close it without closing also the site. How can I change that ?, Whenever I open a post on Facebook I can't close it without closing also the site. How can I change that ?

    Since I got OS X Mavericks whenever I open a post on Facebook I can't close it without having to close the whole site also. How can I change that ?, Whenever I open a post on Facebook I can't close it without closing also the site. How can I change that ? Thanks.

    What does FaceBook have to say about that?
    Repeating yourself four times was such a great help, not.

  • Was using the crop tool without problem.  Not letting me change crop dimensions.  What do I do?

    Was using the crop tool without problem.  Not letting me change crop dimensions.  What do I do? using photoshop

    You can Reset the Crop Tool by right clicking its' icon in the options bar and choosing Reset Tool from the menu.

  • Apparently the default country for an account is US. I want it changed to Netherlands without having to call customer service. In need of assistance please.

    Hi,
    Apparently the default country for an account is US. I want it changed to Netherlands without having to call customer service. In need of assistance please, is there someone from Adobe on this forum who can help me? Or does someone know an email address?
    thanks!
    Arjan de Jong

    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/change-country-associated-with-adobe-id. html

Maybe you are looking for

  • My iPod touch 4th gen. Is saying that it is charging but the green part on the battery, when it's is plugged up, is not going up. Why?

    Ok so I just had bought a new iPod touch 4th generation from an apple store just at the end of last year and until now, it has been working awesome! But just today, I have it plugged up into a wall outlet and it says it was charging for a while but I

  • 970a-g46 am3+ cable connection questions

    Hi all, I'm a first time computer builder and am in the process of building my own rig. I have MSI AMD 970a-g46 am3+ mobo and cool master elite 431 case. 1) I can't seem to find where on the mobo to connect the speaker for the post beep test. I've tr

  • A place to maintain planned downtime

    Hi all, are there any SAP standard functionality to maintain planned downtime? In Solution Manager? Another central place in the SAP landscape? Users should be able to see when the system will be unavailable, and get warnings or messages before the s

  • Batch process to Tiff Image

    I have several hundreds of psd documents every now and then and I need to print them out to black&white TIFF format. Is there a way that I can do an automation in FW CS4? I know how to get them into greyscale from Bridge but I am looking for Black&Wh

  • ASR1001 interface won't come UP

    Hi, I need some help with the connection between a ASR1001 and a Catalyst 2960G. The interface on the ASR won't come up, and I am pretty sure this is a configuration issue but I can't figure it out At first, both interfaces wouldn't come up, but sinc