Defining the Sum for GEN 1 (Market Share)

Hello,I was wondering if some one can give me a hint. I need to get the total sum of my Time dimension for each individual member. For instance: M1 M2 MonthA 2001 Sales 25 25 50 Share 50 50 50 2002 Sales 20 20 40 Share 50 50 50 FY Sales 45 45 90 Share 50 50 50B 2001 Sales 25 25 50 Share 50 50 50 2002 Sales 20 20 40 Share 50 50 50 FY Sales 45 45 90 Share 50 50 50Country 2001 Sales 50 50 100 Share 56 56 56 2002 Sales 40 40 80 Share 44 44 44 FY Sales 90 90 180 Share 100 100 100I am not able to get the numbers to be like that.I have tried1. Sales % Sales -> FY2. Sales % @ANCESTVAL(FY,1,SALES)3. SALES % @PARENTVAL(FY,SALES)it always comes out that Essbase takes the sum for the next level but not for the GEN 1 of the Dimension.Can some one help me?Best regards,Bob

The data you posted is a bit confusing - it looks like you need values from more than one dimension - not just time. Maybe its just that its a Saturday, but I can't figure out the calculation based on the data. At the lowest level it looks like a percentage share on the time dimension, but then the share at the FY total is not 100%, which implies there is another upper level value involved in the calc.How did you calculate the values below? With Excel? If so, post the formula then it might be more clear.Regards,Jade--------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected] Posted by RGrund   3/14/02 05:13---Hello,I was wondering if some one can give me a hint. I need to get the total sum of my Time dimension for each individual member. For instance: M1 M2 MonthA 2001 Sales 25 25 50 Share 50 50 50 2002 Sales 20 20 40 Share 50 50 50 FY Sales 45 45 90 Share 50 50 50B 2001 Sales 25 25 50 Share 50 50 50 2002 Sales 20 20 40 Share 50 50 50 FY Sales 45 45 90 Share 50 50 50Country 2001 Sales 50 50 100 Share 56 56 56 2002 Sales 40 40 80 Share 44 44 44 FY Sales 90 90 180 Share 100 100 100I am not able to get the numbers to be like that.I have tried1. Sales % Sales -> FY2. Sales % @ANCESTVAL(FY,1,SALES)3. SALES % @PARENTVAL(FY,SALES)it always comes out that Essbase takes the sum for the next level but not for the GEN 1 of the Dimension.Can some one help me?Best regards,Bob

Similar Messages

  • How to let the user define the colors for each plots in the graph (I use LabVIEW 7)?

    How to let the user define the colors for each plots in the graph (I
    use LabVIEW 7)?

    Hi,
    Take a look at this example, it uses property nodes to select tha
    active plot and then changes the color of that plot.
    If you want to make the number of plots dynamic you could use a for
    loop and an array of color boxes.
    I hope this helps.
    Regards,
    Juan Carlos
    N.I.
    Attachments:
    Changing_plot_color.vi ‏38 KB

  • Help define the requirements for an Oracle Spatial management tool

    Hi,
    We are developing a tool that, we hope, will be indispensable for all Oracle Spatial and Locator dbas/users. We've released version 1.0, but we need your help to define the requirements for the next version.
    What features would you like to have in a management tool for your spatial databases?
    The features we've got so far:
    1. Viewing of vector data in a map + attributes
    2. Loading from shapefiles
    3. Exporting to shapefiles
    4. Validating metadata, indexes and spatial data.
    We are adding editing of vectors in the next version - basic stuff for add, update and delete.
    But there must be a lot more. What do you find difficult to do in Oracle Spatial/Locator? What would you like in a tool such as this?
    Any feedback either to myself or the forum is much appreciated.
    cheers,
    Andrew
    [email protected]
    PS If you like to have a look at what we have done so far, go to http://www.geometryit.com/products/spatialConsole.php

    Andrew knows what I have asked for but for others to think about and to start
    the ball rolling, here's what they are:
    1. Ability to enter own SQL commands but with PARAMETERS for attributes
    and shapes as in the following examples:
    SELECT ...
    FROM my_spatial_table a
    WHERE a.ATTRIBUTE = :attr
    AND MDSYS.SDO_RELATE(a.shape,:polygon,'mask=anyinteract') = 'TRUE'
    When executed the attribute value is asked for via a input box (data type?)
    and the user is asked to define the SDO_GEOMETRY for the :polgygon parameter via mouse clicks on the screen.
    Similarly, this would work for INSERT, UPDATE and DELETE...
    INSERT INTO my_spatial_table (shape) values(:polygon)
    The data type of an attribute parameter could be determined in two ways:
    a) By querying the Oracle catalog;
    b) By using a "PARAMETERS" command before the query as follows
    PARAMETERS name type [(size)] [, name type [(size)] ...]
    The PARAMETERS declaration has these parts:
    name     The name of the parameter.
    type     The type of the parameter.
    size     The size of the parameter in characters or bytes.
    2. When executing an SQL SELECT statement I would like the tool
    to suggest the HINTS that are needed to improve performance.
    3. Following on from 2, I would like to Tick an option that would return the
    EXPLAIN PLAN that the query optimizer used when executing my query.
    4. The tool has to support ALL Oracle's spatial vector data types.
    5. It would be nice to be able to work with GeoRasters. Since Spatial Console
    imports/exports shapefiles why not the same for rasters. However, the problem
    with supporting foreign data formats is WHERE DO YOU STOP!!!!!
    6. You could allow for the styling of the Spatial Console to be stored in the MapViewer catalogs or use the MapViewer catalogs when styling an Sdo_Geometry if it exists (I note that your tool extracts the SDO_METADATA
    why not the MapViewer metadata as well)?
    regards
    S.

  • How to define the texts for UI element Dropdownlistbykey?

    Hi everyone,
      I don't know how to define the texts for Dropdownlistbykey. It seems that Dropdownlistbykey has an attribute "selected key", but where can I bind the texts I want to display when user clicks the downwards
    arrow?
    Thanks in advance.

    hi,
    you can use this code :
    method WDDOINIT .
      DATA : node_info TYPE REF TO if_wd_context_node_info,
             value1 TYPE wdy_key_value,
             set TYPE wdy_key_value_table,
             k1 type string value 'M',
             v1 type string value 'MAGO',
             k2 type string value 'S',
             v2 type string value 'Saurav'.
      value1-key = k1.
      value1-value = v1.
      APPEND value1 to set.
      value1-key = k2.
      value1-value = v2.
       APPEND value1 to set.
    node_info = wd_context->get_node_info( ).
    node_info = node_info->get_child_node('FOR_DROP').
    node_info->set_attribute_value_set( name = 'DROP_KEY'   value_set = set ).
    I hope it helps.
    Thanx.

  • Basic parameters to define the grouping for the Items and the BPs in SAPB1

    Dear Friends,
    What should be the basic parameters to define the grouping for the Items and the Business partners in SAP B1?
    What will be the case when the client wants to classify the sales revenues various categories?

    Hi
    What should be the basic parameters to define the grouping for the Items and the Business partners in SAP B1?
    For items:
    Raw Material.
    Capital Goods
    Finished Item
    Semi Finished Item.
    Conusmables
    Stationary .........etc
    or .
    Metal.
    Rubber
    Wooden.....etc
    Bsuiness Partner
    Foreign or domestic.
    Region wise e.g South,North,East,West.
    State wise  e.g MH,KT,DELHI,GOA....ETC
    What will be the case when the client wants to classify the sales revenues various categories?
    SIMILARLY
    Foreign Revenue, Doomestic Revenue, Region Wise Revenue, State wise, Or Territory wise.......etc
    I hope this clarifies you
    Ashish Gupte

  • How to define the style for JTextArea using synth style xml file.

    Hi all,
    How can we align the text inside the JTextArea using synth style xml file.
    We defined a style for the TextArea. But the text is displayed immediately after the border. So we want to provide some space between the border and the text.We specified the insets as given below. But it is not reflecting during runtime.
    <insets top="3" left="3" bottom="3" right="3"/>
    Please help me if any one knows

    Hi Anju,
    This may help you.
    http://www.xenta.nl/blog/2009/10/28/oracle-soa-suite-11g-setting-and-getting-preferences/
    Preferrence Variable can be updated either thorugh EM console or ConfigPlan
    Regards,
    Richa

  • Defining the path for the use of beans in a JSP

              Hello,
              I would like to use a bean in a JSP file, via the <jsp:usebean> directive.
              I didn't find any property (weblogic property) which could define the path
              to the directory of my beans classes.
              So :
              1) i have put the path of this directory in the weblogic classpath in the weblogic
              start script.
              2) i made the same with the java classpath.
              Both solutions don't work at all.
              Any suggestion would be appreciated.
              Thanks in advance.
              

              We use the \weblogic\myserver\serverclasses for beans..
              of course we pack beans into jar files, and these jar files are included into
              the wls classpath..
              "Sylvain R." <[email protected]> wrote:
              >
              >Hello,
              >I would like to use a bean in a JSP file, via the <jsp:usebean> directive.
              >I didn't find any property (weblogic property) which could define the
              >path
              > to the directory of my beans classes.
              >So :
              >1) i have put the path of this directory in the weblogic classpath in
              >the weblogic
              >start script.
              >2) i made the same with the java classpath.
              >
              >Both solutions don't work at all.
              >
              >Any suggestion would be appreciated.
              >Thanks in advance.
              >
              

  • How to define the format for numeric field ?

    Hello
    I have Amount field and I would to define the format to be ( XX.XXX,000 )
    How can I do this ??
    I'm new in ADF and need your help ..
    rgrds
    Edited by: moh3li_pal on Mar 1, 2010 8:05 AM

    i have the same problem i try with pattern "###,###.##" but the application adf is the inverse "###.###,##" , this a bug or the pattern errornious.??Hi Joaquin. This is not a bug, although this is a little difficult to explain without face-to-face communication :D The confusing thing here is the difference between the 'special pattern characters' and actual output characters (which are chosen based on your locale).
    If you check the Java DecimalFormat class (which provides the rules for formatting) you'll see the following:
    Using , in the pattern = Grouping separator
    Using . in the pattern = Decimal separator or monetary decimal separator
    According to your locale, the grouping separator is '.' and the decimal separator is ','. So the pattern you have specified does dictate that you should get the result you have found.
    You either need to change your locale settings (best option) or cheat by switching the , and . in your pattern.

  • Help in defining the datastructures for a problem

    Hi there,
    I am a newbie to Java programming and would like to get some feedback on how I can proceed with a problem I have at hand. I have to maintain the objects information in the memory for a SITE. SITE has side id, site name, and a site will be related to devices (one or more devices). Devices will have information such as is it alive what is the frequency of its alive signal coming to the server. These information have to be in-memory all the time so that at any point of time I would have to pick the device alive signal and process the neccesary tasks such as send an email to user whose device is not working. (email information for each device as well will be maintained in the memory). What kind of data structure can I use to acheive this scanerio. I was thinking of HASHTABLE but I am unable to get any samples that can explain the HASHTABLE usage. If anyone could help me in getting the right information it will be really helpful.
    Thanking you in advance
    regards
    John

    Hi,
    This solution is based on few assumptions.
    Hope u know abt a value object.
    If u dont know, Value object is just a java class which contains few properties and getter and setter methods for getting and setting the values of properties. In ur case the value object may look like this.
    public class Device {
    private boolean alive;
    public void setAlive(boolean alive) {
    this.alive = alive;
    public boolean getAlive() {
    return alive;
    and so on for all the properties u need to check for devices.
    --> I think there will be only 1 device of a particular type. i.e., we will not be using 2 instances of the same device. Then for each device use a value object and set it properties and save it in HashMap with a name.
    For example:
    Let the device be Mortor(Just an example)
    Device d = new Device();
    d.setAlive(true);
    and set all other properties.
    Then put the object into HashMap as follows.
    HashMap map = new HashMap();
    map.put("Motor", d);
    in the same way u can keep all ur devices with a name and value pair.
    When ever u want to get that device, u can use as follows
    Device d = (Device)map.get("Motor");
    and u can work on the device "d" using getters.
    in case if we want to use 2 instances of the same device then add the 2 instances to ArrayList and u can retrieve from arraylist when ever u want.
    Hope I am clear
    Regards
    Karthik

  • Where are defined the keybindings for keyboard navigation on a JTree?

    I guess in the JTree.java file but I can't find the line of that tells the JTree to expand a node when you press the + key.

    Do you mean, where is the binding (i.e., the InputMap) created? For the most part, they're generated by the by the LookAndFeel and stored in the UIDefaults table under the keys "FocusInputMap", "AncestorInputMap" and "ComponentInputMap". Most will be found in BasicLookAndFeel.java, but the concrete LnF may override some of them. Also, some UI delegates generate or add to the InputMaps; I know BasicEditorPaneUI does.
    If you want the code for the action itself, it's in BasicTreeUI.java, in the inner class "Actions".

  • Where do I define the author for a topic?

    Need to know how to set or define who the "author" is for the
    project and or topics. Anyone? I'm fairly new to Robohelp and have
    not been find the place to do this. Thanks in advance for any help
    you can provide!

    Hi again Tracy at Cheval
    In your situation, I might suggest you would benefit from
    what I refer to as "poor man's version control". I'll outline
    below:
    Using careful coordination, two or three help authors can
    easily achieve sharing a single RoboHelp project without resorting
    to any type of a third party Source Control system. The key to this
    approach is strict adherence to communication policies!
    Source Control works like a combined traffic cop/librarian.
    It is an automated way to allow collaboration between two or more
    help authors. Here is a hypothetical situation. Three different
    help authors have a need to "share" authoring responsibilities.
    I'll refer to them as Mary, Bob and Mike. All three wish to update
    and maintain a single RoboHelp project. There are a few different
    ways that this can be done.
    1. A Source Control system may be acquired and implemented.
    This could be cost prohibitive and require setup, configuration and
    ongoing maintenance that is undesired.
    2. Mary, Bob and Mike may carefully communicate and
    essentially "share" a single project.
    3. The project may be carefully split into three different
    projects and each of the authors becomes "captain of their own
    ship" so to speak. Each author is totally responsible for
    maintaining their own project.
    In case number 1, a version control system is purchased and
    implemented. In this case, once it has been installed, each user is
    configured with a login name and password so that each is uniquely
    identified. Then one or more projects are added to the version
    control system. So let's say Mary checks out Topic1.htm to make an
    edit. Then Mike comes along and wants access to the same topic. The
    source control system says nope! Sorry, but Mary has it checked
    out. You can't make changes until she checks it back in! In this
    case, the source control system is preventing undesired changes
    from being made to the files. The traffic cop part stopped Mike.
    The librarian part kept track of the fact that Mary had the topic
    checked out.
    In case number 2, careful communication is mandatory. So
    let's say Mike wants to make some changes. Here is what would need
    to happen:
    1. Mike sends a message to advise Mary and Bob that he will
    be working on the project.
    2. Mike copies the project from its central location to his
    hard drive.
    3. Mike opens the project, makes the changes, generates or
    compiles, then saves the project.
    4. Mike copies the modified version of the project from his
    hard drive back to the central location. This replaces the original
    with Mike's modified copy.
    5. Mike then sends an "all clear" message to Mary and Bob,
    advising that either of them are now free to make any changes.
    6. Perhaps at this point, Bob needs to make changes. In this
    case, the cycle repeats.
    7. Bob sends a message to Mary and Mike advising he will be
    working on the project.
    8. Bob copies the project from its central location to his
    hard drive.
    9. Bob opens the project, makes the changes, generates or
    compiles, then saves the project.
    10. Bob copies the modified version of the project from his
    hard drive back to the central location. This replaces Mike's
    modified copy with Bob's modified copy. At this point, because
    things were carefully applied, the central location now reflects
    modifications made by both Mike as well as Bob.
    In case number 3, each author has his/her own project. Each
    is captian of his/her own ship! Essentially, each author has their
    own copy on their own hard drive. When changes are required, they
    simply open the project at any time they like, make changes and
    copile or generate as needed. In this case, one person is normally
    nominated as the "Master" or head person. This person's project
    contains special information that tells it to "look" for the other
    projects. This type of setup is known as either the "Parent/Child"
    or the "Master/Slave". The end result is that the person viewing
    your help system is actually viewing content provided by two or
    more separate help systems. But from their perspective, they see
    only one. So they are none the wiser.
    Hopefully this helps... Rick

  • Defining the Fields for Manual Entries in Conditions Type

    Dear Team,
                      I want to define new fields in the Option Manual Entries in Condition Type eg PR00 . Can you tell me the Setting where do we define those settings and where are they control.
    Thanks,
    Prashant

    Hi
    The option provided for Manual Conditios are Hard Coded by the SAP, and you can not add any new option. If you want to check, pl. check the value range of Domain KMANU, where it is maintained.
    What is your requirement? May be you can fulfill your requirement by some other mean, like USER EXIT.
    Regards
    AA

  • Errors defining the destination for SQLAssembler inside data-management-config.xml

    Hello,
    I am following the LCDS ES sample at
    http://localhost:8700/samples/#sqlassembler
    for defining a destination inside data-management-config.xml,
    there you can define SQL
    statements that can be referred to from MXML
    I am having the following error:
    'Error in SQL for 'fill' in destination 'sql-product'.
    Matching pair of # tokens not found'
    And the statement it is referring to, from within the
    data-management-config.xml file is:
    <name>getAllForServer</name>
    <sql>SELECT * FROM MYTABLE
    WHERE SERVER_ID = #SERVER_ID#
    </sql>
    I do not understand the # syntax, and how can it be used
    universally? for example, setting the value of LIMIT, or variables
    in WHERE statements

    Thanks a bunch, that was it. Any ideas where I can find DTSs
    or Schemas for the FDS config files?
    -Robert

  • Define the language for all notifications to language receiver

    Hi,
    In our workflow after the manager has done an action, a notification is send to the employee.
    The problem is that the text of the notification is always created in the language of the initiator. With us the language of the initiator can be different from the receiver.
    I would like to define that for all notifications always the language of the receiver is to be taken and not this from the initiator.
    Does anybode knwos how we can do this ?
    Kind regards
    Pascale Thys
    Dexia Bank Belgium

    (A) Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    (B) Swipe upwards from bottom of screen to launch Control Center. Make sure sound is not muted (tap the little bell)

  • Problems defining the array for quicksort

    import java.io.*;
    import java.util.*;
    import chn.util.*;
    public class Store
              private Item [] myStore;
              public Store (String fileName) {
                   fileName = "file50.txt";
    /*          public void displayStore ()       
              public String toString () { }
              public void doSort () { }
    */          private void quickSort (Item[] lit, int lo, int hi)   // I don't exactly know what Item[ ] lit will do. please explain it for me.
              int h, l, p, t;
            if (lo < hi) { 
                l = lo;
                h = hi;
          /*      p = a[hi];     //my problem starts with the array 'a' (suppose to be item, but don't know how to modify that.
                do {
                    while ((l < h) && (a[l] <= p)) l++;
                    while ((h > l) && (a[h] >= p)) h--;
                    if (l < h) {
                        t = a[l];
                        a[l] = a[h];
                        a[h] = t;
                } while (l < h);
                t = a[l];
                a[l] = a[hi];
                a[hi] = t;
              private void loadFile (String inFileName)
                   FileInput inFile = new FileInput (inFileName = "file50.txt");
    }The array 'a' should be replaced with the array 'Item' but some how I'm getting the errors that Item's not a valid type.
    for more information, please see http://forum.java.sun.com/thread.jspa?threadID=699397&tstart=60 for more information (the original problem)

    Here is what I suggest.
    Use collections. I suggest an ArrayList. Using one array involves all sort of messy swapping around which really will make things difficult for you to grasp the basic concept of.
    So let us assume a method like this
    public void quicksort(List items)
    items is a List of Items.
    So here is how to write a quicksort
    1) If the size of the list is 1 then return the list because it is down to it's final piece and doesn't need to be sorted further
    2) Choose a pivot element of your list. The mid point is often chosen for this.
    3) Create two new Lists. One for lower elements and one for higher and equal to elements.
    4) Go through the list and use compareTo to compare the elements of the list with your pivot element. Take care to skip the pivot element. If elements are less than the pivot put them in the first list. If they are more than or equal to put them in the second list.
    5) Recursively call quicksort(list) on the sublists we made.
    6) Merge the sublists and pivot values back into one list
    7) return the merged list

Maybe you are looking for

  • Upload data from excel file -URGENT

    Hi All, Advanced thanks to ur reply How to upload data from excel sheet to itab what are the functional modules we are using for that Please help me i look forward to ur reply Regards Raja Sekhar.T

  • Custom icon at application tool bar in transaction CJ20N

    Hi, Experts my requirement is to create a custom Icon in the Application tool bar of CJ20n transaction kindly suggest me  any user exit or badi   or enhancement spot for this to implement . i have tried menu exit CNEX0009 but it ill create entry  at

  • Apple Sponsorship towards Mac Pro Purchase?

    Hey everybody I am a student musician and composer, looking for help towards the purchase of a Mac Pro for music production and scoring. I am wondering whom I would need to contact to get further information about this? Many thanks

  • Can apple unlock an iPhone 4 that was bought from the apple store?

    I bought an iPhone 4 last year from the apple store, my network provider cannot unlock it as I didn't get it through them. Hope someone can help.

  • Word 2010 Template Saving issues

    When I save my new templates, they do not appear in the "My Templates" folder.  What is the path for this folder?  I can find the template in Recently created, but never in My Templates. I don't see a way to set the template path in the options secti