How to change Keyfigure Aggrgation Option

Hi All,
         I am using '0AGE_KYF' key figure with Aggregation: Sum.  Now I want to change this option to Maximum.
When i try to change this Aggregation, it's greyed already.
The options for this Key figure
Aggregarion: SUM
Exception Aggregation: Last value
Ref.char.value: 0CALDAY and select as Cumulative Key figure.
Please give your suggestions .

Hi,
If the keyfigure is used in any cubes which are active and containing data, then you can not modify the keyfigure. remove the keyfigure from the datatargets and then go for modifications.
regards

Similar Messages

  • How to change "Your current options" to become our custom label

    Dear All,
    how to change "Your current options" in the IP Phone display, to become our custom label?
    Thanks,
    Jerri

    Hi jerry,
    I don't know if it works out or not but if you want to try then refer below steps
    1). download SCCP-dictionary.utf-8.xml from CUCM (tftp -i GET SCCP-dictionary.utf-8.xml)
    2). Edit that file which contains "Your current options" as per your requirement and save it.
    3). Upload file to all tftp servers (if you have multiple).
    4). Restart tftp service of all tftp servers (if you have multiple).
    If restarting tftp service don't help you then try to do factory reset of the phone.
    Regards,
    Nishant Savalia

  • How to Change System profile Options

    Hi Friends
    I want to Change System profile Option "PASSWORD CASE OPTION" from "MIXED" to "INSENSITIVE"......how
    can I clear it at the Site Level without logging in E-Business Suite Login Page
    Thanks
    Edited by: user10365515 on Aug 26, 2010 3:34 AM

    Try something like this from backend:
    select fpot.user_profile_option_name, fpov.profile_option_value
    from apps.fnd_profile_options fpo, apps.fnd_profile_options_tl fpot, apps.fnd_profile_option_values fpov
    where fpo.profile_option_id = fpov.profile_option_id
    and fpov.level_id=10001
    and fpo.profile_option_name like '%PASSWORD%'
    and fpo.profile_option_name=fpot.profile_option_name
    and fpot.language='US'
    order by 1;
    you can take a backup and update the table from backend. But, be cautious (oracle doesn't recommend updating from backend).

  • How to change hal mount options

    Sorry if discussed before, i couldn't find this information.
    How do I change the default options of hal for mounting external devices? Particularly, I want it to mount every single pendrive with codepage=850.
    Thanks in advance.

    For the most part you don't need to mess with udev. Udev is for the device nodes themselves, whereas hal is for mounting them (among other things).
    Hal can be configured by adding files to /etc/hal/. It's very nasty, though - they're in XML.
    The documentation:
    http://people.freedesktop.org/~david/ha … -spec.html
    Default configuration files:
    /usr/share/hal/fdi/
    Don't edit them, make files in /etc/hal instead.
    My config:
    cat /etc/hal/fdi/policy/user.fdi
    <?xml version="1.0" encoding="UTF-8"?>
    <deviceinfo version="0.2">
      <device>
              <merge key="storage.policy.default.mount_root" type="string">/mnt</merge>
      </device>
      <device>
        <match key="storage.drive_type" string="cdrom">
                <match key="info.udi" string="/org/freedesktop/Hal/devices/storage_model__NEC_DV_5700A">
                  <merge key="volume.policy.desired_mount_point" type="string">cd</merge>
                </match>
          </match>
      </device>
    </deviceinfo>

  • CS4- JS : How to change the DTD Option - Reg.

    Dear All,
    I'm struggle to not getting the answer for change the DTD options though Script.
    Here I can Load the DTD using script and Validate then Its showing so many Errors, It means the root element is wrong [DOCTYPE] so the way I can change as per the XML Root Element.
    Root Element : Chapter
    Load DTD -> DOCTYPE name is  : text
    //================ Start Coding =================================//
    app.doScript(File("D:/program files/Adobe InDesign CS4/Scripts/XML Rules/glue code.jsx"));
    var myDoc = app.documents.item(0);
    var Store = new  Array();
    var count=0;
    myDTDPath = "C:\\Program Files\\Adobe\\Adobe InDesign CS4\\Executables\\Parser\\Macmil.dtd";
    myDoc.importDtd(File(myDTDPath));
    main();
    function main()
      if (app.documents.length != 0)
        var myDocument = app.documents.item(0);
        //This rule set contains a single rule.
        var DTDTitle  = new Array (new DTDRootTitle);
       with(myDocument)
         var elements = xmlElements;
         __processRuleSet(elements.item(0), DTDTitle);
      else
        alert("No open document");
      //Adds a return character at the end of every XML element.
        function DTDRootTitle()
          this.name = "DTDValidation";
          //XPath will match on every XML element in the XML structure.
          this.xpath = "//chapter";
          // Define the apply function.
           this.apply = function(elm, myRuleProcessor)
                with(elm)
                   Store[count] = elm.validate();
                   count+=1;
              return true;// Succeeded
            } //End of apply function
       for(var k=0; k<Store.length; k++)
            var test = Store[k];
             for(var m=0; m<test.length; m++)
              if(test[m].isValid == true)
              $.writeln(test[m].element.markupTag.name);
              $.writeln(test[m].errorMessage);
    //========================== End of the coding ==========================//
    Question : 1
    Manually I can load the DTD & change the DTD Options as per the Root Element of the XML.
    After Validate using Root Element Itself, Its working fine. Zero Errors.
    Mean while I can Load DTD though Script but I can't change the DTD Options, through Script.
    So Please any one can give me the solution for change the DTD Options using script.
    Please any one can give the solution, Really I can appriciate for this...
    Hope I'm waiting the result for this query....
    Thanks & Regards
    T.R.Hairhara Sudhan

    hello  T.R.Hairhara Sudhan
    i don't know whether this is write answer or not .
    do one thing from active doc get reference of Dtd and from dtd set rootTag = "root tag"
    e.g
    var dtd =  app.activeDocument.dtds[0];
    dtd.rootTag = xmlElement.markupTag;
    here xmlElement is value for "Validate from" in DTD option
    Regards
    tahir1987.

  • How to change Anchor Object Options Status of Object Styles?

    hi to all,
    here i'm creating Object Style and applying some properties, when i create a Object Style, and the anchor Object options not become true status instead it being in false status how do i change status of anchor Object options of object styles
    pls help me
    here the i tried code,....
      myAnchorFrame.contents =selItem;
         try{
         var rightObjStyle = app.activeDocument.objectStyles.add({name: "RightAlignment"});
         with(rightObjStyle.anchoredObjectSettings)
          spineRelative = false;
          anchoredPosition=AnchorPosition.anchored;
          anchorPoint = AnchorPoint.LEFT_CENTER_ANCHOR;
          horizontalAlignment = HorizontalAlignment.RIGHT_ALIGN;
          horizontalReferencePoint = AnchoredRelativeTo.COLUMN_EDGE;     
          anchorXoffset = spaceVal;
          verticalReferencePoint = VerticallyRelativeTo.lineBaseline;
         }}catch(e){
           myCharacterStyle = app.activeDocument.objectStyles.item("RightAlignment");
           myCharacterStyle.anchoredObjectSettings.anchorXoffset= spaceVal;
          try{
         var leftObjStyle = app.activeDocument.objectStyles.add({name: "LeftAlignment"});
         with(leftObjStyle.anchoredObjectSettings)
          spineRelative = false;
          anchoredPosition=AnchorPosition.anchored;
          anchorPoint = AnchorPoint.RIGHT_CENTER_ANCHOR;
          horizontalAlignment = HorizontalAlignment.LEFT_ALIGN;
          horizontalReferencePoint = AnchoredRelativeTo.COLUMN_EDGE;     
          anchorXoffset = spaceVal;
          verticalReferencePoint = VerticallyRelativeTo.lineBaseline;
         }}catch(e){
           myCharacterStyle = myDocument.objectStyles.item("LeftAlignment");
           myCharacterStyle.anchoredObjectSettings.anchorXoffset= spaceVal;
          try{
         var L_RObjStyle = app.activeDocument.objectStyles.add({name: "L/RAlignment"});
         with(L_RObjStyle .anchoredObjectSettings)
          spineRelative =true;
          anchoredPosition=AnchorPosition.anchored;
          anchorPoint = AnchorPoint.LEFT_CENTER_ANCHOR;
          horizontalAlignment = HorizontalAlignment.LEFT_ALIGN;
          horizontalReferencePoint = AnchoredRelativeTo.COLUMN_EDGE;     
          anchorXoffset = spaceVal;
          verticalReferencePoint = VerticallyRelativeTo.lineBaseline;
         }}catch(e){
           myCharacterStyle = myDocument.objectStyles.item("L/RAlignment");
           myCharacterStyle.anchoredObjectSettings.anchorXoffset= spaceVal;
          if(align =="Left")
           myAnchorFrame.applyObjectStyle(app.documents[0].objectStyles.item("LeftAlignment"), true);
          else if (align =="Right")
           myAnchorFrame.applyObjectStyle(app.documents[0].objectStyles.item("RightAlignment"), true);
          else if(align =="Left/Right")
           myAnchorFrame.applyObjectStyle(app.documents[0].objectStyles.item("L/RAlignment"), true);

    Is it the:
       enableAnchoredObjectOptions = true;
    As shown here: http://forums.adobe.com/thread/454988?tstart=30

  • How to change the select-options fields length to long

    Dear friends:
       I had develop a program for sent email,and it have a field for fill mail address as below:
       data: lmail like adr6-smtp_addr.
       select-options: mailadd for lmail no intervals.
       my customer complain that the field is too short,but I can not change it to longer,the select-options component limit the visible length , how can i do for this problem!

    Dear All:
      I had realized this function.
      I defined a parameter and a pushbutton to replace the select-option componet,
    the code share as below.
    data: lmail like adr6-smtp_addr.
    SELECTION-SCREEN BEGIN OF LINE.
    parameters: mailCopy like lmail.
    selection-screen:pushbutton 64(5) pubu user-command mailButt.
    SELECTION-SCREEN END OF LINE.
    select-options: mailadd for lmail NO INTERVALS no-display.
    at selection-screen output.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF l_count > 1.
        write ICON_DISPLAY_MORE as icon to pubu.
      ELSE.
        write ICON_ENTER_MORE  as icon to pubu.
      ENDIF.
    at selection-screen.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF NOT mailCopy IS INITIAL AND mailadd[] IS INITIAL.
        MailAdd-low = mailCopy.
        Append mailadd.
      ENDIF.
      IF l_count = 1 and mailCopy IS INITIAL.
        refresh mailadd.
        clear mailadd.
      endif.
      if sy-ucomm = 'MAILBUTT'.
        perform show_box.
      endif.
    *       FORM show_box                                                 *
    FORM show_box.
      TYPE-POOLS aqadh .
      DATA: tab_and_field TYPE  rstabfield.
      tab_and_field-tablename = 'ADR6'.
      tab_and_field-fieldname = 'SMTP_ADDR'.
      CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
           EXPORTING
                TEXT           = 'SET E-Mail To '
                tab_and_field  = tab_and_field
           TABLES
                range          = MAILADD
           EXCEPTIONS
                no_range_tab   = 1
                cancelled      = 2
                internal_error = 3
                OTHERS         = 4.
      IF NOT MAILADD[] IS INITIAL.
        READ TABLE MAILADD INDEX 1.
        MAILCopy = MAILADD-LOW.
      ELSE.
        CLEAR MAILCopy.
      ENDIF.
    ENDFORM.

  • How to change control panel options and shortcuts in CS4

    Hi there,
    I'm trying to customize the control panel in CS4 and am having trouble with a couple of options:
    - I've turned on distribute options but it won't display (only the align options will)
    - Where do I find/change the shortcut for "Highlight the first option in the Control panel" (currently cmd 6)
    Any suggestions would be much appreciated.
    Cheers
    Ben

    I bet A-M is spot on. As for this lingering issue
    macopp wrote:
    The issue with the keyboard shortcut is that I can't find the option to edit it - do you know where it is or how to search for a shortcut so it can be changed?
    since you know the current hotkey combo (CMD+6), you can call up the entire active keyboard set and search for this string. If you do so, you'll find this:
    Product area : Views, Navigation
         Toggle Keyboard Focus in Control Panel --- Default: Cmd+6

  • How to change the select options selection text dynamically in webdynpro abap ?

    I am using standard interface WDR_SELECT_OPTIONS.... i want to change the Selection text dynamically in my select options.I.E. if the select option is for VBELN field than i want to change its description SALES ORDER Number through Code to some other text.
    If anyone can please help me in this.

    Hi,
    You can achieve your requirement as below
    Get the range table of your selection field as below
              data lt_range_table type ref to data.
              wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD(
                        exporting
                        i_id = 'VBELN'
                        receiving
                        rt_range_table = lt_range_table ).
    Update the selection field with new description - 'Your New Text'
              wd_this->m_handler->UPD_SELECTION_FIELD(
                        exporting
                             I_ID = 'VBELN'
                             I_DESCRIPTION = 'Your New text'
                             I_IS_AUTO_DESCRIPTION = abap_false
                             IT_RESULT = lt_range_table ).
    You can also pass the other parameters as per your requirement
    Hope this helps you.
    Regards,
    Rama

  • How to change export report option

    hi
    Im using Crystal report plug in for Eclipse.
    I want to export report to PDF, EXCEl etc...
    for that there is Export report option.
    I want to customize that export report dialog box.
    How can I do that?
    I want to set default path to export file.
    default extention etc.
    want to remove some options like export to rpt...
    & is this forum active or not????
    I've posted 3 threads but no one is answering me.....
    Edited by: Omkar Kelkar on Nov 7, 2008 2:15 PM

    Hi,
    I need some information from your side.
    Which reports are you using?( Crystal Report, Webi or Deski) with exact version of it.
    If the reports are running properly from the designer and you are having issue with application or in coding then you can post this question to BO Java SDK Application (Java Development) forum for better assistance.
    Thanks,
    Sumit Kanhe

  • How to changed the download  options?

    When I tried to download from internet or files they send me it automatically opens with itunes. How can I change this?

    I'll assume for a moment that you're using Safari to download.
    Click on the word Safari in the menu bar at upper left of the screen.
    In the dropdown menu, select Preferences (or press the Command key with the , key)
    In Preferences, select the General tab (the first one at the left), uncheck the box marked '*Open "safe" files after downloading*'
    That prevents downloaded files from automatically opening the assigned Apple application program.

  • Help! The new version of Firefox only prints in landscape mode and I cannot figure out how to change this default option. I need the default to be portrait.

    Where in the world are the printer options??

    '''{ Ctrl + P }''' to open the "native print dialog" box, then hit Properties and change it the printer Properties display box.
    Once that is changed Firefox should hold that setting until the next time you print something thru Firefox, unless you would be using a different printer.

  • How to change default keyword options?

    I'm trying out Lightroom 2 on an Intel Mac and have bumped into a keyword problem. When I use a keyword for the first time or import photos with keywords that are not already in my keyword list, Lightroom defaults to "Export containing keywords" as true. Is there a way to set this to be unchecked by default? I only want explicitly defined keywords to be exported with my images. Right now I either have to go in and change it for each new keyword or perform an update on the SQLite database directly. Both are cumbersome.
    Thanks for any pointers.

    I put in a feature request for global Keyword Tag Options setting for similar reasons to yours. At the moment most people are concerned because the LR2 catalog didn't pick up the settings from their 1.4.1 catalogs. Here is a link:
    http://www.adobeforums.com/webx?7@@.59b5f7c6/30
    that contains a work around for global editing of keyword tag options.

  • How to change RAW processing options?

    Currently editing and processing a large number of soccer images, and am having an issue with both Lift & Stamp, and the RAW Fine Tuning part of the adjustments HUD.
    The problem is that I don't want Aperture to perform the edge sharpening routings (I think it looks bad), and I want to use just the normal 'Sharpening' panel. I've figured that last part out, but cannot for the life of me figure out how to turn off the Edge sharpening within the RAW Fine Tuning panel(where the 'Boost' setting is, etc.). I want to use the settings on a whole folder of images, but no matter what I do, the RAW settings keep reverting back to the 'Apple' settings, which don't show up in the 'Manage Presets' window. It's like it is globally performing the RAW window edits based upon the camera model, and there is no way to turn it off.
    When I try to use Lift & Stamp, even thought the target image has been altered appropriately, the 'default' settings are applied once stamped onto the folder of images. In the Lift & Stamp window (next to the checkbox), it reads "1D MkIII Camera Default-Apple" or something like that. The only way I can turn off edge sharpening is image-by-image, and I refuse to go that route!
    Hope that makes sense, but HELP!
    Jeff

    If I understand you right, it seems to be working fine here.
    I selected one image. Turned RAW sharpening off (unchecked) , saved it as a preset 'no raw sharpening'. Then I selected a group of images, then the lift and stamp tool. 'Lifted' off the 'no raw sharpening' image, checked just the raw fine tuning option in the lift and stamp window, then pressed stamp selected images and volla, no RAW sharpening on any of the selected images.
    I believe you can also select an image that has been set to 'no RAW sharpening' and then pick use as camera default and this may keep sharpening off on future imports for that camera, but I have not tried it myself.

  • How to change my payment option

    Dear friends, I am unable to update my payment detail.

    Accepted form of payment
    http://support.apple.com/kb/HT5552

Maybe you are looking for

  • Why does my laptop no longer connect to our WPA2 shared network drive?

    Our Airport Express is set up to give us access to the internet plus access to a shared network drive via a WPA2 key. Suddenly, I can no longer access the shared network drive, even though my wireless internet access is fine, and the Airport Utility

  • Water damaged MacBook Pro - powers up, but wrong language keyboard is on and I can't log in. How to fix?

    Over a month ago my cat dumped a glass of water on my laptop. I unplugged it and let it dry for days but it never turned on. I plugged it back in a few weeks later and it powers up, turns on and prompts me to log in like always. I type my password bu

  • How to get sum distinct in the cube. Is it possible.

    Here is the scenario. One report has many countries on it but only one amount. For a particular day we have the following data in the fact. TRANSACTION_DAY_NO Country Total Amount 19900101 US 34 19900101 IND 35 19900101 IND 36 19900101 AUS 37 1990010

  • Files

    Is the File object case-sensitive with file names? Because I know that windows isn't.

  • Issue in accessing EJB from plain java

    Hi, I am new to OAS. I am using OAS 10.1.2. I want to access EJB which runs inside OAS, through a plain java program which runs from outside the OAS environment (standalone java program). I am confused on what to use. RMIInitialContextFactory or Appl