How to lock score displayed in the BSC web

Hi,buddies:
Now I want to restrict the change of the final score in the Balanced Score Card,if I change the score and want to lock it,how can I achieve that?
Thanks for your quick respnse.
Martin Xie

hi
score will be calculated automatically as per the formula u defined in value field and assignment table.
Score will be changed if the plan data in the cube is changed.
If u apply data slices in BPS then the data can be locked for any more changes and the score cannot be changed.
tx
srin

Similar Messages

  • I wanted to keep my locked screen display with the time and date from turning off is that possible

    So I enjoy my locked screen display with my chosen picture because it has the time displayed nice and big and its a cool nightlight but the locked screen display/wallpaper/time with date always goes black after 13ish seconds of locking it is there no way to let the locked screen stay on while charging? because it is awesome if it could stay on as a nightlight also so i dont have to press the lock button to see what time because the normal display is ugly am I just being super picky or am I not the only one who agrees or maybe it does exist im just stupid please respond when you can also thanks for reading much appreciated.

    wjosten wrote:
    Again, there is NO WAY to do what you asked: display the time constantly.
    I have a clock app that displays the time constantly on my iPad. I use it as a bedside clock. Many clock apps have the ability to disable autolock just within that app. Whether there is one that lets you pick your own background, I don't know but I wouldn't be surprised if there were, based on the number of clock apps out there. While what I'm suggestion is not precisely what the OP asked (display the system lock screen), it seems it might be a possible workaround.

  • How to Run a Display with the MacBook closed

    Is there a way to run a display with the Macbook closed, without using a dock?

    Click here and follow the instructions.
    (33321)

  • How to post a XCelsius in the BPC Web Application Getting Started page

    Hi Experts,
    I'm new using BPC 7.5 on NetWeaver. When opening the Getting Started tab in the BPC Web Application there is a white page that I would want to fill with content. This content should be a XCelsius Dashboard linked to the Query or InfoCube on which I`m planning. Creating the XCelsius Dashboard is not the problem, but to insert it in the Getting Started panel of the BPC Web application. Has anyone an idea how to do it or how to proceed. Ideas or a little how-to would be perfect.
    Thanks very much in advanced,
    Àlex

    Hi.
    Try this...
    const string LIST_PAR_NAME = "lu";
    string listName = string.Empty;
    if (this.Request.Params.AllKeys.Contains(LIST_PAR_NAME))
    listName = this.Request.Params[LIST_PAR_NAME];
    else
    throw new ArgumentException("Par lu is not present.");
    SPList listExport = web.Lists[listName];
    However take a look at this
    http://zsvipullo.blogspot.it/2013/10/get-splist-from-internal-name.html?q=getlist
    to check how GetList method is faster than web.Lists[].
    Regards,
    Bubu
    http://zsvipullo.blogspot.it
    Please mark my answer if it helped you, I would greatly appreciate it.

  • How to delete Open Activities in the DTR Web UI? Functions are missing...

    Hi@all,
    we have some problems with open activities and files that are checked-out.
    To solve this we found this desciption by SAP:
    "Deleting Open Activities in the DTR Web UI
    Since open activities can be a problem if they cannot be found any longer - for example if a developer
    PC crashed - there is a function in the DTR Web UI to delete such activities (ADMINA permissions are
    required).
    1. Open the following URL: http://<host>:<port>/devinf and choose the Design Time Repository link.
    2. Choose the system-tools link.
    3. Choose the Activity search.
    4. Navigate to the workspace that contains an open activity that is no longer needed and cannot be deleted by its owner.
    5. Search for open activities.
    6. For the activity that is no longer needed, choose Revert this activity.
    7. Select the Delete the activity resource also checkbox and confirm with Revert.
    The activity is reverted and deleted."
    But when we go there, we only found "Activity Search" under "...\system-tools\reports\ActivitySearch", not directly under s"ystem-tools" or "administration".
    So all functions for reverting or deleting activities are not there (because of reports?!?), we only can watch them.
    Where can we found this? How can we delete activities? in some views files are checked-out, in others they are not... and also activities only can be seen here, not in CBS or somwhere else... we try to solve this by deleting "open" activities.
    Any idea or help?
    thx

    Thanks for help, it works (we still "ignore" that dropdown?!? stupid).
    Question:
    Is there only deleted the activity or also source code is reverted? Waht is with souce code that is actual?
    Because we have some activities on projects that work well, but activities are there for 3 years right now. We want to make NW OK...

  • Images were not displaying in the B2B web shop for the products

    Hi,
    We have an issue with Product catalog images.we maintained images for the products and replicated(Initial) to TREX server,replication was successfull,but the images were not displaying in the b2b webshop for the products.
    Anyone suggest what could be the problem?
    Regards,
    PV.

    Hi,
    The problem could because of following issues.
    1) The replication is not done properly
    2) The XCM doesn't have Image server's settings(URL)
    3) The Image server is not reachable from ISA application.
    4) The image server is not connected through HTTP.
    Please check.
    Regards,
    Sateesh Chandra

  • How to disable u201Csticky sessionu201D for the particular web application?

    Hi All,
    Is there a possibility to disable so called u201Csticky sessionu201D for the particular web application? We have deployed a WAR file with the Axis 1.4 based web service into SAP NW 7.1. The web service works fine but when the client makes SOAP request the server creates a so-called u201Cstickyu201D HTTP session with the default (30 minutes) timeout. Such u201Csessionsu201D are created on each SOAP request from the same client. The maximum number for Java Web Sessions (SAP Management Console) is 1000. After a while the clients start getting the u201C503 Service not availableu201D errors:
    503 Service not available.
    Error: -6
    Version: 7010
    Component: ICM Java
    Date/Time: Tue Mar 03 14:30:12 2009 
    Module: http_j2ee2.c
    Line: 1166
    Server: XXXXXXXXXXX
    Error Tag:
    Detail: server overload: no more sessions available
    The only way to improve the situation we found so far was to set session timeout to 1 minute. That u201Csticky sessionu201D will still be created, though.
    This is a testing environment and we do not use any hardware/software loadbalancer. 
    Any help/advice is appreciated. (Please let me know if you need more information.)
    Thanks,
    Dmitry Vasilenko

    The practical workaround we finally come up with for this problem was to create a servlet filter and map it to the AxisServlet. The servlet filter will invalidate the HTTP session and effectively destroy the sticky session created by the server on each SOAP request.
    Here is the fragment from the web.xml
    <filter>
      <filter-name>StickySessionFilter</filter-name>
      <filter-class>com.xxxxx.xxxxx.xxxx.services.StickySessionFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name> StickySessionFilter </filter-name>
      <servlet-name>AxisServlet</servlet-name>
    </filter-mapping>
    <servlet>
      <servlet-name>AxisServlet</servlet-name>
      <servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
    </servlet>
    The doFilter() method looks like this:
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
           try {
                  chain.doFilter(request, response);
           } finally {
                         javax.servlet.http.HttpServletRequest httpRequest = (javax.servlet.http.HttpServletRequest)request;
                         javax.servlet.http.HttpSession session = httpRequest.getSession();
                         session.invalidate();
    Thanks,
    Dmitry Vasilenko

  • Coded UI: How to verify watermark displayed in the fields and Data grid?

    Hi,
    I've an requirement to verify watermark in the fields say username field displays "Username" water mark when no data is available in the field and water mark in data grid saying "No data available".
    Please observe the water mark displayed in screenshot below:
    So how to verify watermark?
    Thanks & Regards,
    Sunil
    Best Regards, Sunil Email: [email protected]

    Hello,
    Depending on what form technology you are using, you can try posting to one of the following forums:
    Windows Forms General
    Windows Presentation Foundation (WPF)
    ASP.Net forums
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • How to make my display be the main view with my mac Book Pro

    How to set up my external display automatically work as the main display when plugged into my MacBook Pro. I had it set up to work this way on my old MBP but I got a new MBP with Mountian Lion and the Display set up seen different and I can figure out how to make my Apple HD display (about 3 years old) be the main display when I turn on my MBP. Mirror is off when I look at
    System pref’s – Display – Arrangement I just get to pick which display is left and right. I cant remember how it was set up on my old MBP. Mirroring does me no good. Any help will do!!!
    Thanks Brad

    Drag the menu bar in the picture to the picture of the other display.

  • CIF - PurchOrder to SCM - how will PO be displayed in the Product View

    Hello,
    I am just wondering how a purchase order from R/3 (material is purchased from an external vendor) for a specific plant is shown in APOs Product View:
    1. New Purchase Order  - PchOrd
    2. Purchase Order in R/3 with an order confirmation (AB category) - POMemo????
    3. Purchase Oder in R/3 with a shipment notification (LA category) - POMemo
    Why is the category within APO already a POMemo even so we only have a order confirmation?
    Thanks.
    Kind regards,
    Andrea

    Hi Sandeep,
    Please use BADI :/SAPAPO/PPT_SELECT 
    Restriction of the selection in the product planning tab.
    /SAPAPO/PPT_SELRES:Adjustment of Selection in the Product Planning Table
    Also for scheduling planning board you can use  customer exit APOCDPS8 to  select object according to customer-specific criteria.
    Manish

  • How to lock CRM orders considering the lock scope

    Hello All,
    I am currently using Function Modules CRM_ORDER_ENQUEUE and CRM_ORDER_DEQUEUE to lock and unlock these orders respectively. However, these two function modules do not take the lock scope into picture.
    I need to use function modules which consider the lock scopes. I could use ENQUEUE_E_CRM_ORDER and DEQUEUE_E_CRM_ORDER directly but I do not wish to. (because of other objects such as CSL, pricing document et cetera).
    Is there any other function module that I can use to lock / unlock the CRM order keeping into consideration the lock scope as well?
    Thanks,
    Mithun

    if you want yo lock the object(order)  in bol programming do like this
    data : lr_entity type ref to cl_crm_bol_entity.
    if  lr_entiy->lock( ) = if_genil_Boolean=>true.
    Regards
    siva

  • How can i score well for the scjp 1.5 xam!!

    hi..
    i'm gonna do the scjp 1.5 exam.can anybody help me?bcz some people are saying that scjp 1.4 is much easier than 1.5. and also scjp 1.4 z gna expire..i don't know what should i do now..plz mail me.. [email protected]
    thx a lot... :-)
    Edited by: bukzrock on Mar 26, 2008 12:53 AM

    iMessage and FaceTime work with iCloud. Change your Apple I.D in iCloud as well as in iMessage (SETTINGS - MESSAGES). Either turn off and on again iMessage and it would ask you to sign in with your Apple I.D or change it at "Receive at" by clicking on "Apple I.D" (Sign out and sign in with your new Apple I.D.)

  • How do i clear history of the firefox web browser?

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/986629 /questions/986629]''
    How can I have LinkedIn, Facebook, Amazon, CreateSpace, and Firefox web browser as my top sites and delete all other sites?

    At the top of the Firefox window, click the Firefox button, go over to the History menu and select Clear Recent History....
    History Win1
    Select how much history you want to clear:
    Click the drop-down menu next to Time range to clear to choose how much of your history Firefox will clear.
    History Win2
    Next, click the arrow next to Details to select exactly what information will get cleared. Your choices are described in the What things are included in my history? section above.
    History Win3 Fx11
    Finally, click the Clear Now button and the window will close and the items you've selected will be cleared.
    How do I make Firefox clear my history automatically?
    If you need to clear your history every time you use Firefox, you can set it to happen automatically on exit so you don’t forget.
    At the top of the Firefox window, click on the Firefox button and then select Options
    Select the Privacy panel.
    Set Firefox will: to Use custom settings for history. Custom History Fx21 Win7
    Check the box for Clear history when Firefox closes. History Win4
    To specify what types of history should be cleared, click the Settings... button next to Clear history when Firefox closes.
    In the Settings for Clearing History window, check the items that you want to have cleared automatically each time you quit Firefox.
    History Win5
    After selecting the history to be cleared, click OK to close the Settings for Clearing History window.
    Click OK to close the Options window

  • How to add new validation for the iProcurement web page?

    Hi,
    I am very new to OA Framework. Can you experts give me some guidance on how to proceed with the following customization?
    My requirement is in iprocurement when you open a new cart and check out on "ICX_POR_SHOPPING_CART" there is a Project Field and reference to Charge account. If the users go to charge account (ICX_POR_CHECKOUT_SUMMARY) and enter the segment values ( which includes project segment) and enters a value in project segment other than '000000' with out entering the Project Field on "ICX_POR_SHOPPING_CART" the page should give error.
    Please give me some suggestions on how to proceed.
    Thanks
    Vish

    I need the client side validation. By saying server side validation if you mean writing a triger on tables to validate then I am thinking to take that option as last resort.
    Can you please tell me what is PPR ( Is it personalization?) stands for.? In my case the Charge Account is DFF.
    Can you direct me to any documentation on how to add custom javascript to achieve my objective?.
    Thanks for your Help.
    Regards

  • How to return to UWL from the launced web dynpro

    Hi guys,
    Our UWL can launch a web dynpro program, what we want is a “close” button in our web dynrpo view which close the web dynpro application and return to the UWL. Now we can close the web dynrpo application but the screen can't return to the UWL, how to do this, thank you!
    Regards,
    Xiaoming Yang

    Hi,
    Try to follow the below threads.Hope these might be useful.
    Going Back to UWL from WebDynpro Application
    Navigate back to UWL from WD Java
    Rgds,
    Santhosh

Maybe you are looking for

  • HR - Programming without Logical database

    Hi All I have some doubts, I am mainly using Logical database while creting Reports in HR, if I want to use HR function modules and BAPI do they use logical database, question is when we have to do HR programming with Logical database and when withou

  • Extra content not showing up in fcp

    hello, when i installed my final cut i installed the 50+ gigs of extra content (sounds, templates, etc) on my second internal hard drive while the final cut apps are on my main hard drive. in final cut, under the veiwer generator pop-up menu there is

  • Active Directory error using Upgrade Mgmt Tool - BI 4.1 sp 3

    I am in the process of creating a new BI 4.1 SP 3 environment within out company.  The software has been installed and I wanted to perform a Complete Upgrade from our existing XI 3.1 sp5 environment into our new 4.1 environment.  Also, we are using W

  • Cant play .qt files on XP or ME win edition

    I have Quicktime on my home pc (win me) and on my laptop (win XP home). Downloaded the latest version of directx on them. My problem is I can not get Quicktime files with an .qt extension to play after I save them off of a web site. The .mov files wo

  • Suggested programs to resize photos in MacBook Pro w/retina?

    I am new to apple, I have a macbookpro with retina and need to know what software to download in order to resize pictures. Thanks.