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

Similar Messages

  • 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

  • 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

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • [svn:fx-trunk] 12982: Fix for issue with exposing accessible names for combobox list items

    Revision: 12982
    Revision: 12982
    Author:   [email protected]
    Date:     2009-12-15 20:44:23 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Fix for issue with exposing accessible names for combobox list items
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ComboBoxAccImpl.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/accessibility/ListBaseAccImpl.as

    Add this to the end of your nav p CSS selector at Line 209 of your HTML file, after 'background-repeat...':
    margin-bottom: -2px;
    Your nav p will then look like this:
    nav p {
              font-size: 90%;
              font-weight: bold;
              color: #FFC;
              background-color: #090;
              text-align: right;
              padding-top: 5px;
              padding-right: 20px;
              padding-bottom: 5px;
              border-bottom-width: 2px;
              border-bottom-style: solid;
              border-bottom-color: #060;
              background-image: url(images/background.png);
              background-repeat: repeat-x;
              margin-bottom: -2px;

  • Issue with Audit Vault Collector for Peoplesoft-MS Sql Server

    Experts,
    Requesting your valuable inputs regarding below issue :
    Environment:
    - Peoplesoft with SQL Server 2008
    - Oracle Audit Vault.
    Current issue with Audit Vault collector for SQL server is that it is not giving PSFT login ID instead it is giving Peoplesoft DB service Account ID.
    Is this expected ?. If yes, what is the workaround ? Can Database Firewall is a best option to capture PSFT login ID ?
    Thanks

    Hi Rabi ,
      just do one think here ..
    During data source creation , in the Additional tab area , in the SQL Engine session , select "Vendor SQL"  instead of "Open SQL".
    HOw could u create data source without selecting the driver corrsponding to MS SQL.?
    it is recommended to download the latest Driver and use this for Driver creation.
    let me know ..
                                       Regards
                                       Kishor Gopinathan

  • Hi All, can i have some production support issues with rootcasue and resolution for SAP TM?

    Hi All, can i have some production support issues with rootcasue and resolution for SAP TM?
    Thanks,
    Sreenivas

    Hi Sreenivas,
    I would recommend that you read the Rules of Engagement and other documents in the Getting Started link (top right) before posting anymore.  Your Discussion will most likely get reported as non-specific and get removed.  If you have a specific problem with TM, please post it in a new thread with error messages, version and SPs installed, and how the error occurs and what you are trying to get TM to do.
    There are a lot of resources available in the TM Overview page which can help, so start there and maybe also look at some of the MKS (Monday Knowledge Session) recordings which should also be listed.  There are also a lot of experienced people who can help resolve issues your TM installation, but you need to provide enough information on the problems you are having.  If you are just looking for information on past problems, do a Search or simply browse through past Discussions which are marked with a green Check (Correct Answer).
    Regards, Mike
    SAP Customer Experience Group - CEG (and a Moderator)

  • 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.

  • 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 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 showing input forms for update SQL statement

    Hi guys - I'm currently doing a college project and I'm not overly experienced in the area of Java/JSP but I'm having an issue with a project. I have a JSP project inserting, viewing and deleting rows from a database but having an issue getting the update/modify function working in my project.
    If I hardcode values into my variables and launch the project it updates fine, but I believe theres an issue with how I'm calling the existing rows. I wish for the user to be able to view the rows from the database and modify as they wish. Once they submit the modifications, I want the row to be updated. Can anyone see where the problem might exist in my code below? I hope it's something small, but I'm not able to fix it at the moment and would apreciate anyone's help! :)
    The problem I'm facing at the moment is the input boxes for displaying the current rows from the database are not even showing up..
    ModifyNode.jsp:
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@page import="suaspackage.NodeManager" %>
    <jsp:useBean id="AddNode" scope="session" class="suaspackage.NodeManager"/>
    <%@ page language="java" %>
    <%@ page import="java.sql.*" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title>Suas</title>
        </head>
        <body
        <%! // Class level declarations
            Connection dbCon; // interface type in java SQL
            ResultSet rs; // interface type in java SQL
            String serverName = "localhost";
            String nodeID;
            String valowneremail;
            String valownersms;
            boolean bFirstTime;
            %>
            <%
            bFirstTime = true;
            if(request !=null){
                if(request.getParameter("submit") != null){
                    nodeID = "6";
                    valowneremail = request.getParameter("OwnerEmail");
                    valownersms = request.getParameter("OwnerSms");
                    bFirstTime = false;
                    AddNode.update(nodeID, valowneremail, valownersms);
            %>
            %>
        <%
            try{
            Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
            dbCon = DriverManager.getConnection( // SQLServer specifics 2
                    "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
            Statement stmt;
            String sqlString = "select nodeid, node, owneremail, ownersms from nodemanager";
            stmt = dbCon.createStatement();
            rs = stmt.executeQuery(sqlString);
            } catch (ClassNotFoundException e){
                out.write("<B><CENTER><P>");
                out.write("Error loading class for Suas database connection: </P><P>");
                out.write(e.toString());
                out.write("</B></CENTER></P>");
                } catch (SQLException e){
                    out.write("<B><CENTER><P>");
                    out.write("Error accessing Suas database connection: </P><P>");
                    out.write("</B></CENTER></P>");
            if(rs!=null){
        %>
    <jsp:include page="includeheader.jsp" />
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td><img src="images/pagemarker_nodemanager.jpg" alt="Node manager" width="176" height="55"></td>
        </tr>
      </table>
             <jsp:include page="includenodemenu.jsp" />
    <TABLE WIDTH="75% BORDER="0" CELLPADDING="5" ALIGN="CENTER">
    <TR BGCOLOR="#9ddc4f">    </TR>
    <br>
    <TR BGCOLOR="#9ddc4f">
      <TH>Node ID</TH>
      <TH>Node</TH>
      <TH>Owner E-Mail Address</TH>
      <TH>Owner SMS Number</TH>
      <TH></TH>
    </TR>
             <%  } else {
                %>
    <% while (rs.next()){
        %>
    <FORM>
    <TR BGCOLOR="#d7eabf">
        <TD><%=rs.getString("nodeid")%></TD>
        <TD><%=rs.getString("node")%></TD>
        <TD><INPUT size="20" type="text" name="OwnerEmail" value="<%=rs.getString("owneremail")%>"</TD>
        <TD><INPUT size="20" type="text" name="OwnerSms" value="<%=rs.getString("ownersms")%>"</TD>
        <TD><INPUT type="submit" name="submit" value="Save"></TD>
    </TR>
    <% }
        %>
        </body>
    </html>
    {code}
    The relevant part of my NodeManger package:
    {code}
        public void update(String updateNodeId, String valEmail, String valSMS) throws ClassNotFoundException, SQLException{
            try{
                String updateSQL;
                String nodeid = updateNodeId;
                String updateowneremail = valEmail;
                String updateownersms = valSMS;
                Connection dbCon;
                Statement stmt;
                ResultSet rs;
                String serverName = "localhost";
                Class.forName("com.mysql.jdbc.Driver"); // SQLServer specifics 1
                dbCon = DriverManager.getConnection( // SQLServer specifics 2
                 "jdbc:mysql://" + serverName + ":3306" + "/suasdb", "root", "9631");
                updateSQL = "update nodemanager SET owneremail='" + updateowneremail + "', ownersms='" + updateownersms + "' WHERE nodeid='" + nodeid + "'";
                stmt = dbCon.createStatement();
                stmt.execute(updateSQL);
            } catch (ClassNotFoundException e){
                throw(e);
            } catch (SQLException e){
                throw(e);
        }{code}
    Edited by: daveomcgee on Apr 9, 2009 8:03 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I support what ThomYork suggests. Learn how to properly separate database/business logic from your view logic. Learn how to use servlets and JSPs together. Read abourt DAO classes. Learn how to build a view in JSPs using taglibs (JSTL to begin with).
    You might think it is too much work, but if you learn this stuff the wrong way now, it is going to be that much harder converting to the clean, readable, reusable and maintainable way later on.

  • System update configuration issue with local repository related to machine type

    Hi,
     Sorry if the issue has been posted earlier, i tried searching but cudnt find relevant post. Here is my issue:
     My machine is Thinkpad R52. Type as printed on label is: 1858-CLG 
     While adding machine type in update retriever, I added machine type as 1858 (as it doesnt accept 1858CLG). After connecting to the support site, it downloaded all required updates onto a local(shared) repository.
    I installed system update, configured it to pickup update from local (network) repository in the registry.
    Now when I launch system update, it determines my machine type as 1858CLG & it connects to local repository only to display message as "No updates were found for this machine type"
    Though I cud see updates if I directly connect to help center.
    I think the problem is with machine type identification, not sure though.
    Please advice on what I'm doing wrong. Is it with update retriever configuration or system update configuration.
    Thanks much,

    Solution for me was to change status of packages from "Test" to "Active" using Update Retriever.
     Since this is not documented in Best Practices (but is stated in chapter 5 - modify settings) I spent several hours figuring it out..
    -brian

  • Issue With Batch input Session for VA01

    Hi,
    We Created a BDC for Sales order creation using Call Transaction Using and it Ran fine and as a result a sales order got created.
    When we converted the same BDC into session method wherein we created a session using open grp then filled the bdc tab afterwards used BDC insert and then finally closed the session.
    the session gets successfully created but the issue is after processing two screens the session just finishes and it shows as processed with no Sales order being created.This looked very strange issue to us.we also tried using parameters of CTU_PARAMS like NOBINPT but no success yet.
    Searched on SDN forums also but finally i had to post this .
    Please share your solutions or any smilar experinces.
    thanks
    Sachin Soni
    Edited by: Rob Burbank on May 18, 2010 9:33 AM

    Hi Sachin,
    Please tell us that whether your session is having all the records as much as your upload file is having.
    If yes, then probably your BDCDATA table is not getting populated properly.
    Try to debug the routine which you have written for BDC_INSERT then you could find the reason. Apart from that try to run the session in foreground mode for 2-3 records as well.
    Please revert back in case of any doubts.
    Cheers
    VJ

  • ICal issue with entering email addresses for invitees

    Hi all,
    I am using 10.6.2 and I've got a very annoying issue with iCal (started on 10.5 still, and survived an upgrade to 10.6 and even a fresh reinstall, although I did restore from TM).
    Anyway, what happens is that when I am entering email addresses for invitees in the events, it changes the first letter of the email address to "a". IOW, say I want to type in "[email protected]", it will read "[email protected]", then I have to go and delete the "a" and type in the correct letter. It does this all the time, with the macbook keyboard or the external keyboard. I tried deleting the .plist but it didn't help.
    Any idea how I can fix it?

    At what stage does it change? What happens if you start the email with a capital? What happens if you select the address from the pop-up? What happens if you drag the address across from Address Book?
    AK

  • Font Issue with Report Generation Toolkit for Microsoft Office

    I have been using this toolkit for only a few days now, but I just have to get this issue off my back. When developing a toolkit it would be a good idea to use the same cluster to represent fonts in ALL places. If you look at "Excel Set Graph Font" vs. "Excel Easy Table" they take two completely different clusters. Why? I don't know, but it is *very* annoying.
    How could something like this slip through the cracks? Is there some reason why there is this discrepancy? From my perspective as a software engineer I see no excuse, but maybe someone else can justify this oversight for me. I just hope that I don't find any more issues with the toolkit...
    Naveen.

    Naveen,
    what you said is true when dealing with same kind of objects, but in this circumstance, different cluster defines the font of a differnt object. For example, you may not want the user have as many options with defining the font for the X Y axis title as that for defining the text in the table. This is ture when you want your generated report to have similiar styles.
    But this is certainly something we will think about, thanks for your constructive suggestion,
    XD Gao
    Application Engineer
    National Instruments

Maybe you are looking for

  • Can not open Word 2010 docx in Word 2013 from Outlook 2013 mail

    Hello, I got a mail on outlook with a word 2010 attachment in docx format. Open this attachment with double click will show only the welcome screen with the text Open in protected mode. With process monitor I could that word 2013 in an endless loop a

  • How to get poscasts off my ipod???

    hi I have a few podcasts on my ipod classic and want them on my laptop as well. Its a new laptop so they are not on it and if i sync my ipod it will delete all the podcasts on the ipod first. also the poscasts are no longer avalable on itunes or anyw

  • FAILED with error NT_STATUS_NO_SUCH_USER

    Setup: OS X Server 10.3.9. PDC. ALL clients are a combination of XP and W2K. No macs (sadly). Situation: Over the last 3 years I've been plagued with this problem. Symptoms include new authentications are not granted access, but existing connections

  • It is taking too much time run the page from Jdeveloper (R12)

    Hi Gurus When i m running a page in R12 from Jdeveloper ,it is taking abt 15-20 minutes to render the page ,it is happening first time with me ,i m working on Jdeveloper 10G .Would some one please give some hints . Am i missing some setting in Jdevel

  • Shell script for stopping SAP

    Dear gurus, I'm writing the shell script to stop SAP: su - mhdadm; stopsap; when i execute, the script only successfully logon as user mhdadm, and not stopping the sap. please enlight me.. Thanks for your help. Best regards,