Issue with member formula editor in Planning 11.1.2.4

Hello Gurus,
I just wanted to add a formula for a planning application member through workspace (v.11.1.2.4), but when I tried member -> edit -> member formula... it stays there by saying the 'Loading Member Formula Editor'.................. nothing happens after that.. same case with all the members.. I am using IE.11...
any tricks??
Thanks,
Siva

Hello Gurus,
I raised an SR with Oracle support and they have replied by saying that, In EPM 11.1.2.4, the IE11 is only supported for interactive reporting and we will have to use IE 10 & 9 for workspace.
Yes. It works fine in IE 10 & 9.
Thanks,
Siva

Similar Messages

  • Issue with Member Formula written for Balance Type

    Folks,
    I am facing an issue with a member formula written for a balance type dimension,
    The code says
    IIF( IsUda([Accounts].CurrentMember, "BalanceSheet"),
    CASE
    *WHEN IS([Time].currentmember,[YearTotal]) THEN MISSING*
    WHEN IsLevel([Time].CurrentMember, 0) THEN (BALTYPE.[EndOfPeriod])
    WHEN IS([Time].currentmember,[Q1]) THEN (BALTYPE.[EndOfPeriod],Time.[MAR])
    WHEN IS([Time].currentmember,[Q2]) THEN (BALTYPE.[EndOfPeriod],Time.[JUN])
    WHEN IS([Time].currentmember,[Q3]) THEN (BALTYPE.[EndOfPeriod],Time.[SEP])
    WHEN IS([Time].currentmember,[Q4]) THEN (BALTYPE.[EndOfPeriod],Time.[DEC])
    END
    ,MISSING)
    Outline Structure for Time dimension looks like below
    +Time
    --|+YearTotal
    ------|+Q1
    ----------|+Jan
    ----------|+Feb
    ----------|+Mar
    The highlighted Part of the code works good for all the Measures which is With the UDA tag BalanceSheet, Except if the Measure with BalanceSheet UDA is a Parent Member.
    Parent Level Measures are populated with Data(populating Dec Data) instead of showing #MISSING.
    Any help on this issue will be appreciated.
    Thanks
    Sathish

    Hello Gurus,
    I raised an SR with Oracle support and they have replied by saying that, In EPM 11.1.2.4, the IE11 is only supported for interactive reporting and we will have to use IE 10 & 9 for workspace.
    Yes. It works fine in IE 10 & 9.
    Thanks,
    Siva

  • Copying data to member with member formula

    Hi All,
    How do I copy data to a member with member formula? For example, I have a member called "Opening_Balance_Rooms" this member has member formula so storage property is Dynamic Calc. It has data value of 1300 in local currency for post0+12 (Post0+12->Local=1300) and I want to copy the same to USDForecast0+12Rates. Below will explain my requirment clearly. Using Essbase V11.1.1.3.
    Column1........... Column2
    Post0+12.............. Post0+12
    Local.................... USDForecast0+12Rates
    Opening_Balance_Rooms 1300.............. 0 (I want to populate 1300 instead of 0 here)
    Thanks,
    Edited by: MoFa on Sep 4, 2012 1:21 PM
    Edited by: MoFa on Sep 4, 2012 1:23 PM

    Hi Tim,
    This is the member forumula that calculate the Opening_Balance_Rooms.
    IF (@ISMBR ("Jan") AND @ISMBR ("2002 Actuals"))
    Opening_Balance_Rooms = ("OPB_Rooms"->"BegBalance"->"2002 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2003 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2002 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2004 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2003 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2005 Actuals"))
    Opening_Balance_Rooms = ("OPB_Rooms"->"BegBalance"->"2005 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2006 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2005 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2007 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2006 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2007 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2007 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2006 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2008 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2007 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2008 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2008 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2007 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2009 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2008 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2009 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2009 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2008 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2010 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2009 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2010 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2010 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2009 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2011 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2010 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2011 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2011 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2010 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2012 Actuals"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2011 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2012 Actuals Adjustments"))
    Opening_Balance_Rooms = 0;
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2012 Actuals after Adjustments"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2011 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2004 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2003 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2005 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2004 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2006 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2005 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2007 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2006 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2008 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2007 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2009 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2008 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2010 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2009 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2011 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2010 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2012 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2011 Actuals");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("2013 Target"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2012 Actuals");
    ELSEIF (@ISMBR ("Post0+12")
    OR @ISMBR ("1+11OrigPre") OR @ISMBR ("1+11PrePush") OR @ISMBR ("1+11PreAdj") OR @ISMBR ("Post1+11")
    OR @ISMBR ("2+10OrigPre") OR @ISMBR ("2+10PrePush") OR @ISMBR ("2+10PreAdj") OR @ISMBR ("Post2+10")
    OR @ISMBR ("3+9OrigPre") OR @ISMBR ("3+9PrePush") OR @ISMBR ("3+9PreAdj") OR @ISMBR ("Post3+9")
    OR @ISMBR ("4+8OrigPre") OR @ISMBR ("4+8PrePush") OR @ISMBR ("4+8PreAdj") OR @ISMBR ("Post4+8")
    OR @ISMBR ("5+7OrigPre") OR @ISMBR ("5+7PrePush") OR @ISMBR ("5+7PreAdj") OR @ISMBR ("Post5+7")
    OR @ISMBR ("6+6OrigPre") OR @ISMBR ("6+6PrePush") OR @ISMBR ("6+6PreAdj") OR @ISMBR ("Post6+6")
    OR @ISMBR ("7+5OrigPre") OR @ISMBR ("7+5PrePush") OR @ISMBR ("7+5PreAdj") OR @ISMBR ("Post7+5")
    OR @ISMBR ("8+4OrigPre") OR @ISMBR ("8+4PrePush") OR @ISMBR ("8+4PreAdj") OR @ISMBR ("Post8+4")
    OR @ISMBR ("9+3OrigPre") OR @ISMBR ("9+3PrePush") OR @ISMBR ("9+3PreAdj") OR @ISMBR ("Post9+3")
    OR @ISMBR ("10+2OrigPre") OR @ISMBR ("10+2PrePush") OR @ISMBR ("10+2PreAdj") OR @ISMBR ("Post10+2")
    OR @ISMBR ("11+1OrigPre") OR @ISMBR ("11+1PrePush") OR @ISMBR ("11+1PreAdj") OR @ISMBR ("Post11+1")
    AND @ISMBR ("Jan"))
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2011 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY1+11Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"1+11OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY1+11Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post1+11");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY2+10Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2+10OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY2+10Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post2+10");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY3+9Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"3+9OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY3+9Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post3+9");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY4+8Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"4+8OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY4+8Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post4+8");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY5+7Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"5+7OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY5+7Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post5+7");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY6+6Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"6+6OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY6+6Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post6+6");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY7+5Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"7+5OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY7+5Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post7+5");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY8+4Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"8+4OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY8+4Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post8+4");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY9+3Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"9+3OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY9+3Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post9+3");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY10+2Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"10+2OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY10+2Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post10+2");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY11+1Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"11+1OrigPre");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY11+1Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post11+1");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY0+12Pre") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"Post11+1");
    ELSEIF (@ISMBR ("Jan") AND @ISMBR ("FY0+12Post") )
    Opening_Balance_Rooms = ("Rooms"->"Dec"->"2012 Actuals after Adjustments");
    ELSEIF (@ISMBR ("Feb") OR @ISMBR ("Mar")
    OR @ISMBR ("Apr") OR @ISMBR ("May")
    OR @ISMBR ("Jun") OR @ISMBR ("Jul")
    OR @ISMBR ("Aug") OR @ISMBR ("Sep")
    OR @ISMBR ("Oct") OR @ISMBR ("Nov")
    OR @ISMBR ("Dec"))
    Opening_Balance_Rooms = @Prior("Opening_Balance_Rooms")
    + @Prior("Affiliations")
    + @Prior("Disaffiliations")
    + @Prior("Other_Rooms");
    EndIf

  • Issue with PSE 9 Editor

    Running PSE 9 on a new iMAc with 8 Gig memory, 1 TB hard drive.  When trying to save an edited file, the Editor consistently becomes unresponsive when I try to close the saved file requiring that I force Editor to close.  Not only with not Editor close the saved file but the Editor cannot be closed normally.

    I appreciate the help, I found out how to change paper type and it seems to work great.  The remaining question, when I've finished editing an image and attempt to "Save" or "Save As" the system shows a box "Adobe Photoshop Elements 9 quit unexpectedly".  If I go to "Reopen" it reopens the PSE at the organizer level and hasn't saved the image.  Also at this level, "Save" is grayed out and unavailable.  I sure appreciate someone that seems to know a lot more than the "Techs" at Adobe.Don
    Date: Thu, 7 Apr 2011 20:40:38 -0600
    From: [email protected]
    To: [email protected]
    Subject: Issue with PSE 9 Editor
    The second thing, opening the print dialog box does not open the same one as Windows, and allows no selection of paper type.
    That is just a difference between macs and windows. On a mac, you choose the paper and print quality in the OS X system print window that opens after you click the Print button in the PSE window:
    http://forums.adobe.com/servlet/JiveServlet/showImage/64219/ScreenSnapz.jpg
    If you only have the little stub window, click the triangle to the right of the printer's name to expand the dialog box to see all the menus.
    >

  • Problem with member formulas and allocation

    Hi guys,
    I am experiencing a problem I am not currently able to solve. I'm building a planning application in which
    volumes can be inputed in different units of measure (5 are currently available). For example a user can input in liter or KG, and the
    system converts this data in all the different units of measure available, executing a script logic after
    the input (for every bas member is also stored a conversion factor, which is used  by the logic for conversion).
    Two are the major issues of this approach:
    1) storing 5 different volumes for every SKU is consuming in term of disk and DB space;
    2) script logic must be executed every time the user sends data and in some cases this could be time-consuming.
    The solution I'm trying is to use member formulas in order to calculate different units of measure, storing
    only one of these. However, this way lead to another problem: when I try to input data with a top-down approach, using BPC
    ALLOCATION ENGINE, I cannot use the correct unit of measure as a driver for the spread.
    For example, if I input volumes is KG, and the unit of measure stored is only liter, I cannot use nor KG as a driver (because is not stored,
    but only a member formula) neither liter, because the spread using this driver would lead to a wrong result.
    What I would like to do is to give the user the possibility to input in the desired unit of measure at an aggregated level and spread data
    using the existing mix, which must be volumes with the same unit of measure used for input.
    Does anyone has an idea that could help me?
    Regards
    Edited by: utenza pubblica Public on Oct 23, 2009 4:48 AM

    hi
    i found a solution for the Problem in another Forum
    http://businessintelligence.ittoolbox.com/groups/technical-functional/hyperion-admin-l/dynamic-calc-formulas-not-refreshed-1719379?cv=expanded
    The suggestion is
    1. change the Member from Dynamic Calc to Store
    2. Refresh (After these Step the Formulas where still out of sync)
    3. change the Member from Store to Dynamic Calc
    4. Refresh
    After these Steps the Formulas are in sync again.
    Kevin Kraft
    Edited by: Kevin Kraft on Mar 25, 2009 12:33 PM

  • Issue in Member Formula after enabling parallelization

    Hi all,
    System Details :
                    SAP BW      - 731 Release - SP9
                   CPMBPC     - 801 Release - SP4
                   EPM Excel - 10.0 SP 15 Patch 1
    Model Details :
                  Periodic Model
    Background Information :
              Sometimes back I had a performance issue in my BPC 10.0 report. So I implemented the steps mentioned in the SAP NOTE 1854228. After this, the report performance increased very signifiacntly.
    Issue Details :
         There are few reports where in the Column axis we were trying to fetch data of both Periodic and YTD Measure along with Time Period. and in the row Axis I have accounts.
         My Issue is if in a single report I keep accounts :
                            CATEGORY 1 - Don't have member formula
                             CATEGORY 2 - have member formula : but accounts used in the formula of member formula are of same account type
                             CATEGORY 3 - have member formula : but accounts used in formula are of different account types ( e.g mix of INC and AST )
         Then the values fetched for any accounts for YTD measure is same as Periodic Measure.
    But If I separate this single report to 2 different reports, where
                        1. In one report I kept accounts of Category 1 & 2.
                        2. In 2nd report I kept accounts of Category 3
    Then the values for both YTD and Periodic are same.
    As an developer I can do this. But this creates problem when user creates some Adhoc reports, where they want all there category of accounts in a single report. So if any body has any idea about how to overcome this issue, then it's very much appreciated.

    Thanks Valdim. I was really expecting some respose from you.
    Example :
    ANNUAL CHURN = ( Disconnection / Avg Base YTD ) * -12.
         Where Disconnection : EXP type account
                     Avg Base YTD : AST Type Account.
                                                = Avg Base Periodic / Month Num of Current Month.

  • Issue with Measure formula

    Hello friends,
    I am having an issue with the following MDX script. I have separated out all the IIF Conditions to make it easy to read. This is a periodic measusre.Liability, income and expense accounts appear just fine. However Asset accounts' 2011.Q3 and 2010.total values are just blank. please advise.
    IIF ([%ACCOUNTDIM%].CURRENTMEMBER.PROPERTIES("ACCTYPE")="INC",
    -MEASURES.[SIGNEDDATA],
    IIF([%ACCOUNTDIM%].CURRENTMEMBER.PROPERTIES("ACCTYPE")="EXP",
    MEASURES.[SIGNEDDATA],
    IIF([%ACCOUNTDIM%].CURRENTMEMBER.PROPERTIES("ACCTYPE")="AST" AND [DATASRC].CURRENTMEMBER.PROPERTIES("ID")="CTA",
    MEASURES.[SIGNEDDATA],
    IIF([%ACCOUNTDIM%].CURRENTMEMBER.PROPERTIES("ACCTYPE")="AST",
    (MEASURES.[SIGNEDDATA],CLOSINGPERIOD([%TIMEDIM%].[%TIMEBASELEVEL%])),IIF([%ACCOUNTDIM%].CURRENTMEMBER.PROPERTIES("ACCTYPE")="LEQ",
    -(MEASURES.[SIGNEDDATA],CLOSINGPERIOD([%TIMEDIM%].[%TIMEBASELEVEL%])),
    -MEASURES.[SIGNEDDATA])))))

    Yes ZalakT . You are correct . I tried same and its retrieving blank when specified DATASRC or any dimension  with ID comparison in measure formula  .ie   DATASRC.CURRENTMEMBER.PROPERTIES("ID")="CTA" or  %ACCOUNTDIM%.CURRENTMEMBER.PROPERTIES("ID")="xxxx" .
    I tried following way and it retrieved periodic totals  for asset accounts  . ie for 2011.TOTAL & 2011.Q1 its retrieving total of base months  instead  of closing period's value for asset accounts  . 
    1) don't not change PERIODIC measure formula .
    2) Add FORMULA property to DATASRC .Add new member CTA_CALC to DATASRC . In formula property of CTA_CALC specify
    IIF([ACCOUNT].CURRENTMEMBER.PROPERTIES("ACCTYPE")="AST",[MEASURES].[SIGNEDDATA],[DATASRC].[CTA])
    3) save some data in  (CTA,PERIODIC)  for  both Asset & non Asset accounts . Retrieve same data from  CTA_CALC .
    let me know if it works .

  • Issue with reversal of MIRO for Planned Delivery Cost

    Hi Xperts
    We have found out an issue while reversing the MIRO document for Planned Del costs. When we have done the MIRO, the accounting entry got correctly posted with correct account keys.Conditions are not inventoried.
    However, when we had reversed it - the stock account got hit.Do not understand, why that happened.Do you have any clue?
    1. Suppose we have done the MIRO for Del Cost & then performed GR.Now Stock has already consumed & afterwards we have found that the MIRO for Del Cost is wrong & reverse - in this scenario shall the Stock account will get a hit????
    2. I have maintained Price Control "V" in Material Master.However, I have maintained a Standard Price by mistake.In that case shall SAP ignores the MAP & takes Standard Price into account & post PRD??
    Regards
    Soumick 

    Hi,
    Before checking Planned Delivery costs accounting documents in MIRO posting and MIRO cancellation document, 1st check how Planned Delivery costs designed for your procurement process.
    Use t.code:ME23N, check your Purchase order
    Option-1:
    Is Planned Delivery costs added to inventory account and at the same time Planned Delivery costs posted to Separate Planned Delivery costs G/L account.
    OR
    Option-2:
    Is Planned Delivery costs posted to Planned Delivery costs G/L account ONLY
    OR
    Option-3:
    Is Planned Delivery costs added to inventory account ONLY.
    Based the above one setting, system  will post goods receipt and invoice posting document with corresponding accounting entries. Also cancellation of invoice posting document refer to these setting.But account posting depends on price control available in material master.
    NOTE:
    Standard price procedure (price control “S”):The system carries out all stock postings at a price defined in the material master. Variances in price are posted to price difference accounts.
    Moving average price (price control “V”): The system valuates goods receipts with the purchase order price and goods issues with the current moving average price.Differences in price between the purchase order price and the invoice are posted directly to the relevant stock account if there is sufficient stock coverage.
    Regards,
    Biju K

  • Issue with executing Business Rules from Planning web

    Hi,
    We are using Hyperion Planning 9.3.0.1 and we keep getting an issue with the Business Rules. We get an error if we try to run the rules from Planning web. The same rules validates and executes fine if we run it from AAS. This issue gets resolved if we restart the Planning and RMI service. But this issue keeps happening randomly. Is there a permanent resolution to it? Is it a bug or I am missing something here?
    Thanks and Regards,
    Amol
    Edited by: user638718 on Apr 7, 2009 5:20 PM

    Hi,
    Have you installed any of the patches for 9.3.0.1, I think it goes up to 9.3.0.1.09
    One of the fixes was :-
    8-665086601 (6588823) – When the Business Rules connection to the relational database is lost, Business Rules does not reconnect to it. To solve this problem, an optional property, HBR_CONNECTION_VALIDATE_TIME, was added to HBRServer.properties. This property specifies a time interval for checking the connection between Business Rules and the relational database. If the connection is not valid, a new connection is established. The time interval is specified in milliseconds and defaults to 300,000 (five minutes).
    Though I know there has been more attention to fixing known issues on 9.3.1 than 9.3.0.1
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Issue with new Message Editor

    I have come across some awkward behavior with new Discussion Forums message editor.
    Previously, if you wanted to add a smiley, or a link or image, when you clicked the button aboved the edit window, those features behaved more like a menu drop down or had a dialog box.  With the new editor, those features come up in a separate window.  Using IE6.0 at work, the new behavior is pretty similar to the way it worked before.  However, using IE7.0 at home, these come up as separate tabs within IE.  So instead of getting a small menu dropdown or dialog box to select a smiley, a new IE tab gets created that is mostly blank except for the smileys.  Insert an image, a whole new IE tab comes up where you fill in the lines such as the URL to the image.
    I like the older method of it behaving like a menu drop down or dialog box, it is awkward how in IE7, these come up as separate tabs in IExplorer.

    Laura F. wrote:
    Hi Ravens Fan,
    I found this IE7 behavior annoying on more sites than just the Forums, so I changed my settings so that these types of links would open in a window instead of a tab.   In the Tools > Internet Options menu, I changed the Tabs Settings on the General Tab to "When a pop-up is encountered: Always open pop-ups in a new window"  Tabbed browsing still works the way I expect, I don't think I changed any of the other settings.
    Thanks,
    Laura
    Web Support & Operations
    National Instruments
    Thanks,  I will give that one a try.

  • Hyperion Planning Smart View issue with Member Names & Aliases

    Hi,
    Im using Smart View "Essbase" Connection to a Hyperion Planning Application, ver 11.1.1.3, however with the essbase connection i am not able to select at the smart view options to see aliases, members or both. I change the setting ( Duplicate member names allowed =true) directly at the properties of the outline in EAS, and now i am able to see the aliases, however if time I refresh using web planning/workspace this setting is undone. Furthermore i dont thing i should use it with planning. Any comments?
    Kind Regards

    First of all I hope you have not changed the properties of the outline in EAS for a planning application.
    For more information on using aliases in smartview have a read of :- Smartview --- Display options --- to display alias names
    Also you will only be able to view member name or aliases not both at the same time.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Issue with member move, change or delete from Planning web application

    Hi
    We need to make some basic editing (move, change or delete) of level 0 members of the cost center dimension from Planning web application instead of from essbase database outline. But everytime, we tried from the web Admininstration/Dimension drill down and did a Cut or Delete of a base member, the screen either becomes blank or hangs. And we would have to stop and restart the Planning web application server to bring it back.
    Is this a bug or is there something we missed? We are using Planning 4.0.1 and essbase 7.1.1. Any advice on workaround is greatly appreciated. Thanks.

    Hi,
    Have you tried running the planning server in the foreground from the start menu and check the output to see if there are any issues.
    Also it might be worth trying to increase the java heap size, maybe you have a complex hierarchy and this is causing the heap size to max out.
    Have you tried using another method to make changes to the hierarchy such as HAL ?
    Cheers
    John

  • Security issue with page drop down on planning form 11.1.1.3

    I'll buy a round of Newcastles for anyone that can fix this issue.
    Planning 11.1.1.3 a given user is given @idescendants write access to a cost center rollup that has shared members underneath. The stored members are in a primary rollup higher up in the hierarchy. The webform has the cost center selection on the page drop down. The first child in the rollup does not display. This occurs for every rollup, the first child member is not visible i nthe drop down. So for example, the outline looks like this:
    primary cost center hierarchy (stored)
    rollup1
    --ccxxx stored
    --ccyyy stored
    alternate hierarchy (shared members)
    rollup2 <--------------user has write access to @Idescendants of this rollup
    --ccxxx shared
    --ccyyy shared
    In the page drop down, only the ccyyy member shows. Not the ccxxx. Dev has the same access applied and both show correctly. I've tried refreshing security, pushing filters from plan to essbase (even though this is metadata security in planning) and nothing fixes. Webforms are identical. My next step is to restart the planning service when i get down time but was wondering if anyone else has seen this issue.Always the first child of the shared rollup that doesnt display.
    Edited by: EssbaseInAz on Nov 4, 2009 3:11 PM

    Exports are identical. In fact, prod security was cleared and reloaded using an export from dev. after the upload i re-exported prod and compared the export to what was loaded (export from dev). Security is identical. This only for users with security set on the alternate hierarchy rollups up. Admin members are fine. One test i did do was to give access to the first child that is not displaying up on the stored member. If i do that, the member will show. But that's not really feasible in this security setup and it does not explain why the exact same security works fine in dev.
    I thought about about the second issue you raise. it does seem to behave like that. but the part is tagged never share, not label. Same as in dev, which works. plus like you said, that situation only seems to arise when the members are on the row and even then, the member displays, it's just set to read only. I'm wondering if there's some flag set in the relational backend that's causing an issue or something like that. I've pushd the filters to essbase and using a test id setup i can replicate this issue, but with an excel retrieve i can obviously see the member (since metadata security isnt applied in excel) and i can also see the data for the missing cost center. So, its somewhere in planning where the metadata security is applied. I might poke around the planning tables and compare to dev to see if i can find any smoking guns. Really bizarre. Plus tomorrow i've got a window to restart the planning service to see if that helps.
    Thx for the response Jake and if you have any other suggestions i'm open. If i find a solution i'll let you know.
    Pete

  • Issue with date formula when running a report on the 1st day of the month

    We have a formula that compares last month data against last year last month, the report runs on the 1st of every month although the report errors when it tries to run in January being the first month of the new year it tries to look for a month begining with Zero instead of looking back at decemeber which would be 12.
    Does anyone any solutions for this issue?
    Thanks,
    Chris
    Example of some formula's we have tried but none seem to work.
    if {@MonthName} = "December" then year({CDCCHD.CDOPDT}) in year(currentdate)-1 to year(currentdate)-2 else year({CDCCHD.CDOPDT}) in year(currentdate)
    OR
    (if {@Last Full Month Name}= "December" then year({CDCCHD.CDOPDT})= year(currentdate)-2 or
    {CDCCHD.CDOPDT} in lastyearytd else {CDCCHD.CDOPDT} in lastyearytd or
    {CDCCHD.CDOPDT} in yeartodate)
    OR
    ({CDCCHD.CDOPDT} in dateserial(year(currentdate)-1,month(currentdate),01)-1 to dateserial(year(currentdate)-1,month(currentdate)-1,01) or
    {CDCCHD.CDOPDT} in lastfullmonth)
    OR
    if {@monthname} = "December" then {CDCCHD.CDOPDT} in dateadd("m", -28, (currentdate)) to (currentdate)-14 else {CDCCHD.CDOPDT} in dateadd("m", -14, (currentdate)) to (currentdate)

    Chris,
    Give these formulas a try...
    Beg of Last Month
    DateAdd("m", DateDiff("m",#1/1/1900#, CurrentDate) - 1, #1/1/1900#)
    End of Last Month
    DateAdd("m", DateDiff("m",#1/1/1900#, CurrentDate), #1/1/1900#)
    Beg December of Last Year
    IF DatePart("m",CurrentDate) = 1
    THEN DateSerial(DatePart("yyyy",CurrentDate) -2, 12,1)
    ELSE DateSerial(DatePart("yyyy",CurrentDate) -1, 12,1)
    End December of Last Year
    IF DatePart("m",CurrentDate) = 1
    THEN DateSerial(DatePart("yyyy",CurrentDate) -1, 1,1)
    ELSE DateSerial(DatePart("yyyy",CurrentDate), 1,1)
    Note that the "End" formulas produce a value that shows midnight of the following day that you would normally expect to see... For example, if you are expecting to see 12/31/2009, it will show 1-1-2010.
    The reason is that the formulas come out to be midnight of the day shown... So a range of 12/1/2009 - 1/1/2010 will include 12/31/2009's data but none of 1/1/2010... (12/1/2009 - 12/31/2009 would actually cut off 12/31/2009).
    If for some reason your data is stored w/o time values then an adjustment would need to be mande.
    HTH,
    Jason

  • RE: Issue with the formula

    hi,
    I have one formula like below.
       X =  - ' &0T_CMONV& / Actuals' +
              ' &0T_CMONV& / S&OP / &ZDPTPLN1&'.
       where &0T_CMONV& / Actuals = restricted key fig. with 0calmonth and Actuals key figure(&0T_CMONV& - text variable for cal month)
         and &0T_CMONV& / S&OP / &ZDPTPLN1& = restricted key fig. with 0cal month and Demand.
       Now we get some negitive values for this key figure , the user doesnot want to see the negitive values. So we have done, Absolute value of X. But now what he says is , he wants to see the negitive values but the result of that key figure should be sum of all absolute values. So we provided to him , extra column giving the result as the sum of all absolute values. So let us say , the sum of all values of key figure X including negitive values is 50(X1) and the sum of all absolute values of key figure X is 300(X2).Now when we are using X2 in another calculated key figure it is supposed to take 300 as the value but it is taking only 50 as the value and doing the calculation. What is the reason for this  ? Can't we do some calculation on 300(X2).I request some help on this issue.
    Thanks ,

    Somesh,
    Welcome to SDN!
    For the infoobjects used in the Query Designer, click on the propereties and there you have an option - reverse +/- signs.
    Did you try with this
    Hope this helps!

Maybe you are looking for

  • Error message MH 175 "The listing end is not allowed to be in the past"

    Hi,         While I try to execute listing in the new article creation using particular disctribution chain, i.e. with reference to a Sales Org and distribution channel, the error message MH 175, 'The listing end is not allowed to be in the past' pop

  • PI 7.3 receiver AAE idoc scenario-No receiver comm channel found in ICO

    Hi, I am working in PI 7.3 receiver AAE idoc scenario.When I try to configure Integrated Configuration(ICO),I am not able to see the receiver comm channel in receiver agreement. What is the reason for this??I have configured the communication channel

  • Statements in Crystal

    Hi all Does anyone know if/when SAP will be providing Statements for Business One in Crystal? Thanks Denise

  • KSII activity prices not calculation (actual)

    Hi During Actual Price calculation KSII following is error message : All activity prices are manually entered Message no. KP211 Diagnosis All activity prices in controlling area HGC, fiscal year 2011, and version 0 were determined and set as manually

  • Managing characteristic value combinations in APO DP

    I am using APO DP V5. I have two questions regarding characteristic value combinations (CVCs) in APO DP: 1. Suppose I am planning with planning characteristics of product and customer. I have existing CVCs of product 1 at customer A, and product 2 at