Sales for Parent Value of other dimensions

I am having trouble in using the "Sales" member with a cross dimensional parent relationship.Dimensions: Account(Sales), Month, Years, Channel, Plant, Brand, Branch, Scenario, ProductI am trying to get the "Sales" amount for Total Channel, Total Plant and Total Branch as below:"ABS_SALES" = Channel->Plant->Branch->SalesThis doesnt seem to be working. Can anyone shed some light on what I am doing wrong?Simon

Not to worry. Sorted it out. was a calc order problem. Simon

Similar Messages

  • Calculate a measure depending on the value of other dimension

    HI,
    I would like to know if it’s possible to calculate a measure depending on the value of other dimension. I want to calculate this measure in the Business Model and Mapping. I show you how I am trying to do it:
    http://img338.imageshack.us/img338/2496/imagenjp.png
    But when I try to make an aggregation of this measure then I get an error of consistency.
    I think a good example to make you to understand me is the function TODATE which calculates an aggregation depending on one time dimension. I would like to do the same thing but regarding to the value of other dimension.
    Can someone help me? Thanks a lot.

    Hi,
    Do you have that dimension table as a "Sources" in that BMM folder? if yes, then you can use the "Data Type" option and click on "show all logical sources". Then click on your fact table using which you want to do the calculation and then use this formula. After that you can have the aggregation.
    It should work.
    Thanks,
    Rohit

  • To get reference value from other dimension

    Hello,
    Database: Oracle
    BO : BOXIr3
    Have 2 questions:
    1. I want to subtract 2 values for a dimension based on dates like for mindate and maxdate i.e. (the value of dimension for mindate - the value of dimension on maxdate).
    Is it possible in WI?
    2. I want to get the count of a column.
    I drag 2 columns from Universe to report, 1st one is datetime column and 2nd one is a column for which I want count.
    Now in custom sql, if want to write one more column for get the count, getting error like" use 3 columns instead 2"
    I added COUNT(SITE_ID)
    Please suggest.
    Thanks & Regards,
    Vijesh Chandra

    1. I want to subtract 2 values for a dimension based on dates like for mindate and maxdate i.e. (the value of dimension for mindate - the value of dimension on maxdate).
    Is it possible in WI?
    ---> Create a variable for your maxdate, however you need to know the level grouping for you Maxdate and you have to use Calculation context. Your variable should have someting like  
                                  max( [dimentdate] ) in Report 
            the In Report tells the WebI to get the max data value of the dimension for the enire report or you may say your max date for the entire query
    2. I want to get the count of a column.
    I drag 2 columns from Universe to report, 1st one is datetime column and 2nd one is a column for which I want count.
    Now in custom sql, if want to write one more column for get the count, getting error like" use 3 columns instead 2"
    I added COUNT(SITE_ID)
    --> if you want to add another column from your query make sure it has a placeholder. if you have 2 objects in the query and you want to add 3 object with count(siteID), you need to add another object to make 3 and modify the SQL and assign your count to the 3rd column.

  • Preaggregation across value based hierarchy dimension in 11g

    Hi All,
    I have created a cube with 6 dimensions in olap 11g. One of those six dimensions has only one hierarchy which is value based hierarchy. I have chosen level based aggregation as I know at what levels exactly users are going to query. When I was going through the dimensions to choose levels to preaggregate I noticed there were no options available for my value based hierarchy dimension ( I could see "all" option for the same case in 10g) then I tried to look for definitions of underlying objects just to make sure it will preaggregate data across my value based hierarchy dimension.
    I found value set corresponding to my value based hierarchy dimension in <CUBE NAME>SOLVEAGGMAP object , which AWM uses to decide which dimension values to preaggregate but if I do rpr on that value set (rp r<CUBE NAME>SOLVE<DIMENSION NAME>_PVSET) it shows NA so my question is can I pre aggregate across value based hierarchy dimension in olap 11g?
    Olap Version: 11.2.0.1
    AWM version: 11.2.0.1
    Thanks

    Even if you know exactly which levels your users will query, percent based precompute (e.g. 30%) may still be faster in practice because queries are returned using 'sparse looping' instead of 'dense looping'. This was the single biggest performance advantage of 11g over 10g.
    But if you still want to use level based precompute, then you should look at the XML template for the cube (as saved by AWM, for example). In it you should find something called PrecomputeCondition. This defines the set of members that are precomputed. Here is an example I just created using the GLOBAL schema
    <PrecomputeCondition>
    <![CDATA[
      "TIME" LEVELS ("TIME"."MONTH", "TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
      CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL, CHANNEL.CHANNEL),
      CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT, CUSTOMER.REGION, CUSTOMER.SHIP_TO),
      PRODUCT LEVELS (PRODUCT.CLASS, PRODUCT.FAMILY, PRODUCT.ITEM)]]>
    </PrecomputeCondition>The PrecomputeCondition is also visible through the USER_CUBES view.
    SELECT PRECOMPUTE_CONDITION
    FROM USER_CUBES
    WHERE CUBE_NAME = 'MY_CUBE';You can hand modify this condition in the XML to specify an alternative 'non level based' precompute condition for any dimension. For example, if you define an attribute named 'SHOULD_PRECOMPUTE' on your PRODUCT dimension that is 1 for members to be precomputed and 0 for all others, then you can change the condition as follows.
    <PrecomputeCondition>
    <![CDATA[
      "TIME" LEVELS ("TIME"."MONTH", "TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
      CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL, CHANNEL.CHANNEL),
      CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT, CUSTOMER.REGION, CUSTOMER.SHIP_TO),
      PRODUCT WHERE PRODUCT.SHOULD_PRECOMPUTE = 1]]>
    </PrecomputeCondition>If you recreate the cube from the XML with this condition, then the PVSET valueset you discovered should contain all dimension members for which the attribute value is 1.   This gives you complete control over what is precomputed.   Note that AWM doesn't support this form of condition, so it won't show up if you go to the Precompute tab, but it is valid for the server.  The PL/SQL below will modify the PrecomputeCondition (for the cube named MYCUBE) without going through AWM.
    begin
      dbms_cube.import_xml(q'!
    <Metadata
      Version="1.3"
      MinimumDatabaseVersion="11.2.0.2">
      <Cube Name="MY_CUBE">
        <Organization>
          <AWCubeOrganization>
            <PrecomputeCondition>
              <![CDATA[
               "TIME" LEVELS ("TIME"."MONTH","TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
               CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL,CHANNEL.CHANNEL),
               CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT,CUSTOMER.REGION,CUSTOMER.SHIP_TO),
               PRODUCT WHERE PRODUCT.SHOULD_PRECOMPUTE = 1]]>
            </PrecomputeCondition>
          </AWCubeOrganization>
        </Organization>
      </Cube>
    </Metadata>
    end;
    /

  • Entering value for parent dimension

    Hello
    Once the dimension are loaded from OGL into Hyperion along with hierarchy (parent with child relation) is there a way to enter values (financial figures) for parent dimension ONLY into the dataform manually?
    If yes, can you please suggest a way how to go about entering values....

    You would probably need to use a target type version to enter at upper levels
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Unable to view ECA and PCA value dimension for Parent Entity

    Hi,
    Situation: There is a parent Enity in (INR) with about 5 children Entity ( also in INR). Application default currency is USD .
    Parent has ' allowadjfromchildren' selected and Children have 'allowAdjs' selected .
    When I pull up a data grid with Parent and children for a particular POV , I can see data in < Entity currency > , < Entitty curr Adj> , <parent curr> , <Parent Currency Adj> for all children , However I dont see the <Entity curr Adj > or < parent curr Adj> at the Parent Level .
    I can only see <entity currency> <entity curr total> and <parent curr>, <parent curr total> for the Parent .
    qs. 1 . is this standard functionality ? Since Adjustment was not made at parent level , those intersection of ECA and PCA for parent will remain empty ?
    qs 2 : Is there a way to roll up the sum of all children values in ECA into ECA at parent level ? rule change may be ?
    eg . If child 1 has 10 , child 2 has 20 and child 3 has 30 in ECA , then their Parent to have 60 in ECA.
    Currenty in our Appsettings we DO NOT have the Consolidationrules parameter selected .
    Not sure if i was clear , Will appreciate some thoughts and direction on this .
    Vik.

    Hi,
    Seeing that the currency is the same for the parent and children in your example, you will not see a difference between the children's <Entity Curr Adjs> and <Parent Curr Adjs>. In other words, if you post $10 to Child1 <Entity Curr Adjs>, you will also see that same amount in the <Parent Curr Adjs> - that is normal behavior and the child will only contribute the $10 to the parent. Because you have selected AllowAdjFromChildren HFM will allow you to post to [Parent Adjs] and [Contribution Adjs].
    Q1: Yes, the adjustments are made to the child and will form part of the <Entity Currency> amounts in the parent. The parent's adjustment value members will store journals to the parent.
    Q2: The sum of all the [Contribution Total] value members of the children will make up the <Entity currency> of the parent.
    Q3: No, you will see the 60 in <Entity Currency> of the parent -- the way it works in more detail below:
    EC + ECA = ECT;
    Trans to Parent currency and seperate journals to PCA;
    Security defines access to the [] nodes and if the parent has AllowAdjsFromChildren then [Parent Adjs] will be available;
    Rules apply to [Proportion] and [Elimination] giving [Contribution];
    Final adjustments allowed to [Contribution Adjs] to get to [Contribution Total]
    Parent <Entity Currency> is the sum of children [Contribution Total];
    Process starts again for the parent.
    Regards,

  • Make dimension values shown reflect other dimension filter values

    I have created a cube and uses access this cube in an Excel pivot table.  Is it possible to make values shown for one dimension display only the values valid, if I have selected another dimension's value that would limit the values that should
    show under the first dimension?  I tried linking the dimensions together with a key and that did not appear to do the trick.  I also tried using dependsondimension in properties for the other dimension, but that did not work either.  Is
    there something I am missing that makes the cube only display the values in a dimension that apply when another dimension's value is filtered?

    @Naveen - I am linking to the proper measure and am seeing the correct measure values. 
    @KR Jurgen - I'm not finding a spot to set the scope to NULL.  I would, but some people need all the values.
    Here's an example.  I have company 1 and 2.  Company 1 has item A and Company 2 has item B.  They both have sales of $1.  There is a company dimension and item dimension.  When I filter by company 1, I see sales of $1. 
    The problem is, when I select the list of items from the item dimension, I still see item B.  If I put the items in the row, I only see item A.  The ideal situation would be to have only item A show when I select the list of items from the item
    dimension.  Is there some way to accomplish this?
    Thank you both for your responses.

  • Account Creation - Badi for Default values for BP Role and Sales Area

    Hi all,
    my requirement regards the possibility to create a new prospect (a link should be available in the navigation bar or create section).
    Logically, a bp role as "Prospect" and particoular sales area should be created automatically.
    I created an implementation for the BADI definition "BADI_CRM_BP_UIU_DEFAULTS". But don't know how to create the default values for BP role and Sales area:
    In my code
    assign cr_me->('VIEW') to <lv_view_name>.
      if sy-subrc ne 0.
        exit.
      endif.
      lv_viewname = <lv_view_name>.
      case lv_viewname.
        when 'AccountDetails.htm'.
    I obtain the viewname "AccountDetails" , the related context "Header". After I don't know how to proceed to obtain the related entities through the relationship BuilRolesRel and BuilSalesArrangementRel.
    Am I following the right way? Is there another solution to prepare the output for default values?
    Any kind of suggestion will be appreciated.
    Regards, Roberto

    go to spro>cross-application components>sap busines partner>business partner> basic settings>field groupings>Configure Field Attributes per BP Role
    Double click the business role which you want to customaze (e.g. 'A') and change the proper settings.
    Regards.

  • Copy values from one Parent node to other Parent Node

    Hi all,
    I have a 2 Parent node each having 3 child nodes. I want to copy the values of all the attributes of all the child nodes of one Parent Node to corresponding other node.
    Both the Parent Nodes as well as their Child Nodes have different name but their attributes have same name.For ex:
    Parent Node -A
    Child Nodes - a, b,c
    Child Node "a" has attributes "x" and "y"
    Parent Node -B
    Child Nodes - d,e,f
    Child Node "d" has attributes "x" and "y" .
    Now I want to copy the values od attributes "x" and "y" from one Parent Node to other Parent node.
    Please help me out.
    Helpful answers will be rewarded.
    Thanxs in advance...

    Hi Jin,
    To use copy service API, u need to satisfy 2 condition for the attributes of source node and target node:
    1. The name of the attribute should be same (including the case of the name)- Abc is different from ABC
    2. Type of the attribute should also be the same.
    copy elements works for copying values from Model node to context and does not work vice-versa. To enable the copying of context node to model node, use copycorresponding API.
    Eg:
    int contextNodeSize = wdContext().node<contextNodeName>().size();
    for(int i = 0; i < contextNodeSize; i++)
         <modelNodeName> modelObject = new <modelNodeName>();
         <contextNodeName>Element contextObject = wdContext().node<contextNodeName>().get<contextNodeName>ElementAt(i);
         WDCopyService.copyCorresponding(contextObject, modelObject);
    This will copy the values from Context Node to Model Node.
    Hope this helps you.
    Regards,
    Poojith MV

  • ORA-35563: Multiple values exist for an attribute of this dimension member

    After following the tutorial Building OLAP Cubes I was trying to make a cube with aggregation down to the day instead of down to the month.
    I created a times table pretty similar to the one used in the tutorial:
    CREATE TABLE EVENT_TIMES (
            HOUR_KEY        DATE NOT NULL,
            DAY_ID          VARCHAR2(10),
            DAY_NAME        VARCHAR2(10),
            DAY_END_DATE    DATE,
            DAY_TIME_SPAN   NUMBER,
            MONTH_ID        VARCHAR2(30) NOT NULL,
            MONTH_NAME      VARCHAR2(40),
            MONTH_END_DATE  DATE,
            MONTH_TIME_SPAN NUMBER,
            YEAR_ID         VARCHAR2(30) NOT NULL,
            YEAR_NAME       VARCHAR2(40),
            YEAR_END_DATE   DATE,
            YEAR_TIME_SPAN  NUMBER
    As you can see, instead of a DAY_KEY like in the tutorial, I now use an HOUR_KEY.
    This is a sample of the data I inserted in this table:
    select to_char(hour_key,'YYYYMMDDHH24MISS'),DAY_ID,DAY_NAME,DAY_END_DATE,DAY_TIME_SPAN,MONTH_ID,MONTH_NAME,MONTH_END_DATE,MONTH_TIME_SPAN,YEAR_ID,YEAR_NAME,YEAR_END_DATE,YEAR_TIME_SPAN from event_times;
    TO_CHAR(HOUR_KEY,'YYYYMMDDHH24MISS') DAY_ID     DAY_NAME   DAY_END_DATE DAY_TIME_SPAN MONTH_ID                       MONTH_NAME                               MONTH_END_DATE MONTH_TIME_SPAN YEAR_ID                        YEAR_NAME                                YEAR_END_DATE YEAR_TIME_SPAN
    20140104050000                       Y2014M1D4  Y2014M1D4  04-JAN-14                1 Y2014M1                        Y2014M1                                  31-JAN-14                   31 Y2014                          Y2014                                    31-DEC-14                365
    20140104060000                       Y2014M1D4  Y2014M1D4  04-JAN-14                1 Y2014M1                        Y2014M1                                  31-JAN-14                   31 Y2014                          Y2014                                    31-DEC-14                365
    I then created my TIME dimension with DAY as the lowest level.
    When I try the maintain cube option it fails at the 'LOAD NO SYNCH' step with the rejected records having an error message that says:
    ORA-35563: (XSRWLD17) Multiple values exist for an attribute of this dimension member.
    To me, this is a very cryptic message and the only explanation I find online is:
    Cause
    Multiple source table rows containing different values for a dimension attribute were found. Only the first of the multiple rows has been loaded.
    Action
    Fix the mapping or remove the rows with conflicting attribute values..
    This confuses me. In the tutorial the lowest level was day and the TIMES table contained 1 record for each day.
    In my example, the lowest level is hour and the TIMES table contains 1 record for each hour.
    Which attribute has multiple values? And which values?
    The rejected records (101) are not very clear:
    ALIAS_1 = 'MONTH_Y2014M1' AND ALIAS_3 = to_date('31JAN14') AND ALIAS_4 = 31 AND ALIAS_5 = 'Y2014M1' AND ALIAS_6 = 'Y2014M1' AND ALIAS_7 = 'YEAR_Y2014'
    If anyone can help point me in the right direction, it would be greatly appreciated.

    I have seen this recently. The issue is with the dimension load itself.  You have a hour level record table but the rules relating to hierarchy/attribute values etc are checked/reinforced during the load and this error comes up sometimes.
    I would guess that the issue seems to be with your month level information present in the higher level month columns. There are many records corresponding to a single month in ur case, month of Y2014M1. Information relating to Month level member Jan 2014 or member MONTH_Y2014M1 is present in these records: 31 (days) *24 (hours) = 744 records. The data in these 744 records for columns - MONTH_ID, MONTH_NAME, MONTH_END_DATE, MONTH_TIME_SPAN need to be exactly the same in order for the single member MONTH_Y2014M1 to have month attributes loaded with valid values.
    For e.g: if records #1 to #743 contain month_timespan=31 but for some unknown reason record #744 contains month_timespan=30 then this error will come up. OLAP does not know which value to load (31 or 30), and only 1 value can be loaded onto the month level member corresponding to month Y2014M1.
    A quick check of the data should give you the answer. Typically there may be some mistake/invalid assumptions made with the boundary records (in your case, check for values for records corresponding to hour=0 or hour=23/24) which is causing the issue.
    HTH
    Shankar

  • If change in PO value, need other rel stategy made for value change only

    I have customized PO Relase strategy based on value. working correctly.
    In that, if there is a change in PO value after the PO release, then Release strategy is being redetermined according to new value. But user wants that if there is a change in PO value, it should follow different rel startegy for which change value is >0 USD(not regular release startegy defined for each value range).
    For this to happen, for value change, what kind of characteristic(table field) I can use as criteria so that new release startegy can be determined for any change value after final relaese?
    Is ther any possible way to make this happen? Pl. suggest me different ways.
    Vijay

    Dear Vijay,
    In order for another release strategy to getting determined, the PO should have another set of value
    to meet the characteristic for the new release strategy or else it will use back the same release strategy
    with approval reset and management need to reapprove again the same release strategy.
    Based on your description, there is no need for another release strategy to get determined if the PO
    still contain the same set value that meet the previous release strategy . Let say you increase the
    total value of the PO, incase the release strategy still meet the current approve release, it should reset
    it again but not another release strategy that not meet with value in the PO.
    If you create another new release strategy that the criteria overlay the characteristic of this old release strategy,
    for new PO, no release strategy will be getting determine.
    Best Regards,
    Ian

  • Open Sales Order quantity & value

    Hi,
    We have a requirement here of report to show open sales order quantity & value for any month (monthend). There is a datasource 2LIS_11_V_ITM which gives Open order quantity. I have created an ODS with 2LIS_11_VAITM & 2LIS_11_V_ITM which can give me desired qty & value, but only for date of last data upload and not for date in the past.(and to get that, I have to sumup all open orders quantity without using any date filter)
    I am thinking of creating a Infocube over this ODS to update the Open Order qty & value at the monthend (Snapshot scenario). But to update this, I am not able to get the logic for date to be used in time dimension.
    If anyone can think of the solution or any alternate way to develop this kind of report, your help/suggestions are most welcome.
    Thanks,
    Vikram.

    Hi Vikram,
    Find the link, which solves u r requirement
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bi/arobustdesignofopensalesorderdataflow
    Thanks & Regards
    Ramakrishna Kamurthy

  • How to find all intersections of children of currency dimensions and currentmembers of all other dimensions where data exists

    Hi all, I have a requirement where I need to find all intersections of children of currency dimensions and currentmembers of all other dimension wherever data exists for them.
    Its a ASO cube with and version is 11.1.2.2.
    If I try to write the formula in a the below way to test, I get an error that 'Currenttuple can only be used with a named set'. But when I try to create a named set with the 'WITH' keyword, it not able to recognize the 'WITH' keyword. I think I am missing something obvious and this may not be the correct way to achieve this. Please help.
    1st try with just Currenttuple - error 'Currenttuple can only be used with a named set'
    iif(
      (isgeneration([Time].currentmember,4)),
      CASE
      WHEN NOT ISEMPTY(
    Crossjoin([Currency].Children,
    {([Time].currentmember,[Org].currentmember,
    [S Org].currentmember,[C Code].currentmember,
    ).Currenttuple
      THEN  Missing
      ELSE Missing
    END, Missing)
    2nd try to create a named set with 'WITH' keyword - syntax error at WITH
    /*with set [NewSet] as                                      
    'Crossjoin([TC].Children,
    {([Fiscal].currentmember,[Organization].currentmember,
    [Sales Org].currentmember,[Company Code].currentmember,
    [Measures].currentmember,
    [Product].currentmember,
    [Channel].currentmember,
    [Order Reason].currentmember,
    [Country].currentmember,
    [Billing Type].currentmember,
    [Business Area].currentmember,
    [Sales District].currentmember,
    [Data Source].currentmember,
    [View N/A]
    iif(
      (isgeneration([Fiscal].currentmember,4)),
      Filter([NewSet], NOT IsEmpty([NewSet].CurrentTuple))
    , Missing)

    Hi Tim,
    Thanks for you reply and sorry for my delayed response. Actually there is one more requirement in this, which makes it a bit complicated. There are another set of members in the Measure dim called FXDirrate and FXIndrate. The logic is :
    1. If data exists for the combination of a Currency.children, FXDirrate and current member of all other dims
    then convert the value for Currency.children by diving by FXDirrate
    2. If data exists for the combination of a Currency.children, FXIndrate and current member of all other dims
    then convert the value for Currency.children by multiplying by FXIndrate
    3. Then value of the calculated members will be sum(all FXDirrate converted + all FXIndrate)
    Currency does roll up but as the data for its children can either be in Dirrate or Indrate and the sum needs to be taken after the conversion, there I am not able to proceed as I am not able to check the existence of data in individual children of currency as Isempty isn't working on a set . Thanks a lot for your help.

  • Sibling count calculation ignoring filtering from other dimensions.

    Hi.
    I have an issue whereby including my calculated measure in a pivot returns more rows that I've filtered by.
    So within my Account dimension I have a few attributes, one being a 'Parent Acct Id' and another the 'Child Acct Id'. I have setup the hierarchy accordingly and then created my measure as below
    [Measures].[Linked Accounts] AS COUNT([Account].[My Hierarchy].CURRENTMEMBER.SIBLINGS)
    Then if I select my 'Child Acct Id' on rows then my calculated measure does correctly show the number of siblings. However the problem arises when I want to reduce the result set by an attribute from another dimension (e.g. a country name from a 'Country'
    dimension) - doing this has no affect on the rows returned.
    I should mention that if I filter on another attribute within the 'Account' dimension then that DOES filter as required. So it's behaving that my calculated measure only works
    with selections from within the slice that I'm doing the sibling count on.
    So I don't understand why the CURRENTMEMBER function doesn't work as it should.
    Any ideas?
    Thanks
    Dave

    Hi Dave,
    You can't filter Dimension_1 members by selecting Dimension_2 members. It's normal cube behavior.
    Try use nonempty function with measure. For example:
    [Measures].[CalcMember] AS nonempty([Employee].[Employees].currentmember.siblings,[Measures].[Reseller Sales Amount])
    So you can count nonempty siblings using other dimensions in filter. I hope that is you need.
    Best regards.

  • Allocating Values to other Time Members

    Hi ALL,
    We are on BPC 7.0 SP3 for Microsoft platform
    Time Dim in my application looks like this
    Year->Month->Work Week->Day (Day is Say 2009.Jun01)
    I have created an input template which contains a Days in the column and product in rows. My requirement is, while sending data through the input schedule I should be able to allocate the value entered against the day 2009.Jun01(as part of input schedule).
    For example users enters value 10 against 2009.Jun01 and  what i need to do is to populate this value to all the other Days belonging to that month.
    I am trying to right a allocation logic using the following and if i can determine the parent and then the next parent of the value(2009.Jun01) being passed though the input template then i guess it shall work...
    Please suggest if there can be some better way of doing this..
    *RUNAllocation
    *Description=Time Allocation
    *DIM TIME what=%TIME_SET%; where=bas(?????])
    *ENDALLOCATION
    *commit

    I would simplify the process and build the concept into the excel template. Maybe use a input area which may spread, followed by an EVDRE section that copies the days that have been selected or loaded with the values using standard excel concepts, to then send the values, instead of adding a script process for every combination.
    I think in 7M SP4, the availability of PARENT as a property pulled in a dimension EVPRO is available, but if you need it for time, I would suggest adding the property to the dimension seperately, and then filling in th erelated parent value.  That way you could have multiple parent properties for those instances where you wish to allocate by week, month etc.
    But I think the hard part is working out the variables for the script logic to be flexible enough to allocate based on the inbound send process.
    Hope this helps.

Maybe you are looking for

  • Edge Animate CC 2014 Update (2014.0.1) live now

    Congratulations All!! The new update for Edge Animate CC 2014(2014.0.1) is now available on Creative Cloud. The following issues have been addressed : Resolved compatibility issues with Chrome 36 Fixed crash when publishing static HTML when the compo

  • Problem about loading server program to server

    Hey Experts, I'm facing an unexpected problem. I'm Using netbeans 6.1, JasperReport 3.7.0, iReport3.5.1 for creating a report. I've successfully created a report using servlet. And after that I create a new report for another report. In this case, ne

  • Problem in Redo log backup

    Hi I am trying to take "redo log backup" through db13 but it show following error and terminate. BR0252E Function fopen() failed for '/oracle/SEP/saparch/aeatzgjn.cds' at location file_printout-4 BR0253E errno 2: No such file or directory External pr

  • PO referancing both Contract Purchase agreement and an Active Quotation.

    We have a valid active contact purchase agreement and an active bid quotation and both of them are attached to the ASL against a particular item. We set up a price list for that item. (We want to default the price of the item from the price list into

  • Muvo2.

    Just wondering a couple of things as i recently RMA'd my old Muvo2 4gb and just recieved a new one... Its 5gb and doesnt say muvo 2 FM anywhere?! is this just the updated muvo2 4gb as the dri'ves have become cheaper or is it a muvo2 Fm definatly? Als