Unable to deploy calc manager rule with Attributes in 11.1.2.1

I am unable to validate/deploy a calc manager rule in 11.1.2.1. This rule is also developed as a calc script and gets validated/executed successfully.
This is a custom currency conversion script
Sample
Jan (
IF(@ISMBR(@ATTRIBUTE("b_CNY")))
"USD" = "LocalCurrency" / "Avg_Rate"->"CNY" ;
ELSEIF ......
ELSEIF.....
ENDIF
Does any one know if this a known bug ?
Thanks

It used to be a bug that @attribute could not be validated, maybe worth checking the patches to see if it is fixed yet.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How to disable Planning administrators and interactive users to create or edit calc manager rules in their application ?

    Hello,
    According to the Calc Manager Designer Guide 11.1.2.3 and my testing :
    - Planning administrators can edit the calc manager rules deployed into their Planning application
    - Planning interactive users can create their own calc manager rules in their Planning application
    But according to our IT governance, they should not be able to do it and specially in a production environment (and they were not able to do it in Planning 11.1.1 with HBR).
    Any idea or trick to disable Planning administrators and interactive users to create or edit calc manager rules in their application ?
    Thanks in advance.
    Philippe

    Well as far i Know....
    - Planning administrators can edit the calc manager rules deployed into their Planning application ---Its aspected , as admin have to maintain the application and nothing wrong in that....
    - Planning interactive users can create their own calc manager rules in their Planning application--They can create thir own rules only when they have proper access to calc mgr..if you don't have given access to calc mgr then they can't.....
    Cheers!
    Sh!va

  • Migrating Calc Manager Rules using LCM

    Hi,
    When we import calc manager rules from an earlier export of other environment, we only have option to import from file system to Foundation- Calculation Manager on target environment. When I do this, I do not see calc manager rules are imported to my target application though import is successful.We do not have option to select application as target and how do we get these rules to target application.
    Thanks in advance.
    Prasad

    Hi Amith,
    Thanks for the reply.
    Can you help me that which part of definition file can be edited so that Calc manager rules are available under my target application after import
    Development environment has an application with Name "CORPDEV" from which LCM is export is done
    1. I have Test environment with application name "CORPTEST" and UAT with "CORPTEST". What is the way that I can get calc manager rule into both TEST and UAT using LCM?
    Thanks,

  • How can I delete Calc Manager Rules once they are deployed?

    Hello all,
    I have a planning application (11.1.2.1) and I'm using the Calculation Manager. So, after I deploy a rule I'm able to delete it from calculation manager but the rule continues in my planning application. I'm using the classic application.
    What should i do to delete this role from my planning application?
    Warm regards,
    Rafael Melo

    Hi,
    Have you tried deploying all rules once again after deleting the rule?
    In calc manager, right click on the applcation/database and select deploy (or deploy all) option.
    Cheers,
    Alp

  • Unable to integarte Oracle business rules with BPEL

    hi'
    I am unable to integrate Business rules with BPEL, I am using JDeveloper to do this.
    I have successfully made a connection to rule repository and using decision service in synchronous BPEL process.
    In the decision service wizard step 1 of 2
    1.) Selected 'Execute Ruleset' in Invocation pattern
    2.) Selected rules set which I have cretead before.
    the problem is coming when nothing is geting displayed in the
    window below for Fact name, assert name, watch fact.
    please help me why Fact name, assert name, watch fact are not coming.
    thanks
    Yatan

    Thanks Anirudh,
    Do I need to make some changes in the java classes or in the XSD file which I am importing while creating new BPEL process
    I am importing the same XSD file in input and output, actually I am updating the database in the BPEL process so I am taking the
    input from the payload and updating the DB.
    Do I need to make two different <complexType name="updatingDB"> and <complexType name="businessrules">in the XSD
    if you have some example which shows the Integration of BPEL and Business rules
    with Java facts please share it with me.
    thanks
    Yatan
    Edited by: user10681871 on May 25, 2009 11:51 PM
    Edited by: user10681871 on May 26, 2009 12:02 AM

  • Calc Manager - RULE SET

    In order to bundle up some Business rule so I want to use RULE SET in calc manager.
    When I go in Calc Manager, I can see Consolidation, Planning, and Essbase. But, I can not go beyond Planning or Essbase. I have 2 options Export and Refresh, I tried those but nothing changes really... Please Help...

    Did you get this issue resolved? If not what version are you running? Do you have any EPMA or Classic apps already created?
    ~SM

  • Unable to deploy simple EJB example with J2EE Ref. Impl.

    Hi there,
    I'm new to EJB development so please bare with me. I've written a simple EJB, taken from Enterprise JavaBeans by Richard Monson-Haefel (O'Reilly). I can compile the code without problems, load it into the J2EE deployment tool (I'm using version 1.3.1 of the J2EE Reference Implementation), and have succesfully set up the data source and SQL commands for each persistent field.
    When it comes to deployment, I'm stumped with the following error:
    java.rmi.RemoteException: Error processing ejb jar: Compilation failed.
    Here's the stacktrace in the error logs:
    Compilation failed.
         at com.sun.ejb.codegen.GeneratorDriver.compileClasses(GeneratorDriver.java:232)
         at com.sun.ejb.codegen.GeneratorDriver.preDeploy(GeneratorDriver.java:610)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployEjbs(JarInstallerImpl.java:707)
         at com.sun.enterprise.tools.deployment.backend.JarInstallerImpl.deployApplication(JarInstallerImpl.java:221)
         at org.omg.stub.com.sun.enterprise.tools.deployment.backend._JarInstallerImpl_Tie._invoke(Unknown Source)
         at com.sun.corba.ee.internal.corba.ServerDelegate.dispatch(ServerDelegate.java:350)
         at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:250)
         at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:79)
         at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:104)Here's the source:
    ==============================CabinHome.java=========================
    package com.titan.cabin;
    import java.rmi.RemoteException;
    import javax.ejb.CreateException;
    import javax.ejb.FinderException;
    public interface CabinHome extends javax.ejb.EJBHome {
      public Cabin create (int d) throws CreateException, RemoteException;
      public Cabin findByPrimaryKey (CabinPK pk) throws FinderException;
    }================================CabinBean.java========================
    package com.titan.cabin;
    import javax.ejb.EntityContext;
    public class CabinBean implements javax.ejb.EntityBean {
      public int id;
      public String name;
      public int deckLevel;
      public int ship;
      public int bedCount;
      public CabinPK ejbCreate (int id) {
        this.id = id;
        return null;
      public void ejbPostCreate (int id) {
      public String getName () {
        return name;
      public int getShip () {
        return ship;
      public int getDeckLevel () {
        return deckLevel;
      public int getBedCount () {
        return bedCount;
      public void setName (String str) {
        this.name = str;
      public void setShip (int s) {
        this.ship = s; 
      public void setDeckLevel (int d) {
        this.deckLevel = d;
      public void setBedCount (int c) {
        this.bedCount = c;
      public void setEntityContext (EntityContext ctx) {}
      public void unsetEntityContext () {}
      public void ejbActivate() {}
      public void ejbPassivate () {}
      public void ejbLoad () {}
      public void ejbStore () {}
      public void ejbRemove () {}
    }===============================Cabin.java============================
    package com.titan.cabin;
    import java.rmi.RemoteException;
    public interface Cabin extends javax.ejb.EJBObject {
      public String getName() throws RemoteException;
      public void setName(String str) throws RemoteException;
      public int getDeckLevel() throws RemoteException;
      public void setDeckLevel (int level) throws RemoteException;
      public int getShip() throws RemoteException;
      public void setShip (int sp) throws RemoteException;
      public int getBedCount() throws RemoteException;
      public void setBedCount() throws RemoteException;
    }============================CabinPK.java=============================
    package com.titan.cabin;
    public class CabinPK implements java.io.Serializable {
      public int id;
      public int hashCode() {
        return id;
      public boolean equals (Object obj) {
        if (obj instanceof CabinPK) {
          return (id == ((CabinPK) obj).id);
        return false;
    }Has anyone else experienced anything similar, or is there something I'm obviously doing wrong?
    Thanks for your help.
    Matt

    Here's the ejb-jar.xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Created by matt on 10 September 2002, 14:32 -->
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN"
        "http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd">
    <ejb-jar>
        <enterprise-beans>
            <entity>
                <description>
                    This Cabin enterprise bean entity represents a cabin on a cruise ship.
                </description>
                <ejb-name>CabinBean</ejb-name>
                <home>com.titan.cabin.CabinHome</home>
                <remote>com.titan.cabin.Cabin</remote>
                <ejb-class>com.titan.cabin.CabinBean</ejb-class>
                <persistence-type>Container</persistence-type>
                <prim-key-class>com.titan.cabin.CabinPK</prim-key-class>
                <reentrant>False</reentrant>
                <cmp-field><field-name>id</field-name></cmp-field>
                <cmp-field><field-name>name</field-name></cmp-field>
                <cmp-field><field-name>deckLevel</field-name></cmp-field>
                <cmp-field><field-name>ship</field-name></cmp-field>
                <cmp-field><field-name>bedCount</field-name></cmp-field>
            </entity>
        </enterprise-beans>
        <assembly-descriptor>
            <security-role>
                <description>
                    This role represents everyone who is allowed
                    full access to the cabin bean.
                </description>
                <role-name>everyone</role-name>
            </security-role>
            <method-permission>
                <role-name>everyone</role-name>
                <method>
                    <ejb-name>CabinBean</ejb-name>
                    <method-name>*</method-name>
                </method>
            </method-permission>
            <container-transaction>
                <method>
                    <ejb-name>CabinBean</ejb-name>
                    <method-name>*</method-name>
                </method>
                <trans-attribute>Required</trans-attribute>
            </container-transaction>
        </assembly-descriptor>
    </ejb-jar>Thanks...

  • Unable to deploy a BPEL process with rules

    Hi All
    I created a very simple BPEL process and defined a business Rule in composite, that I call from within my BPEL process.
    I am however not able to deploy the project completely successfully.
    I am using JDEV 11g to build/deploy my projects on a SOA_Suite_11g. Note that I can deploy a project successfully if it does not have a business rule.
    This is what I see in the 'Deployment Log' tab:
    [01:49:17 PM] Deploying profile...
    [01:49:17 PM] Wrote SAR file to /Users/satinder/jdeveloper/mywork/ChapterTwo/FLThree/deploy/sca_FLThree_rev1.0.jar
    [01:49:17 PM] Deploying sca_FLThree_rev1.0.jar to soa_server1 [redunca.pvo.groundhog.com.au:8001]
    [01:49:17 PM] Processing sar=/Users/satinder/jdeveloper/mywork/ChapterTwo/FLThree/deploy/sca_FLThree_rev1.0.jar
    [01:49:17 PM] Adding sar file - /Users/satinder/jdeveloper/mywork/ChapterTwo/FLThree/deploy/sca_FLThree_rev1.0.jar
    [01:49:17 PM] Preparing to send HTTP request for deployment
    [01:49:17 PM] Creating HTTP connection to host:redunca.pvo.groundhog.com.au, port:8001
    [01:49:17 PM] Sending internal deployment descriptor
    [01:49:17 PM] Sending archive - sca_FLThree_rev1.0.jar
    [01:49:19 PM] Received HTTP response from the server, response code=500
    [01:49:19 PM] Error deploying archive sca_FLThree_rev1.0.jar to soa_server1 [redunca.pvo.groundhog.com.au:8001]
    [01:49:19 PM] HTTP error code returned [500]
    [01:49:19 PM] Error message from server:
    Error during composite deployment: oracle.fabric.common.FabricDeploymentException: oracle.fabric.common.FabricException: Error occurred during deployment of component: FLI to service engine: implementation.bpel, for composite: FLThree: ORABPEL-01010
    Process Generation Failed.
    failure to generate the BPEL process file "".
    Could not generate named BPEL process file. The exception reported was "/apps/oracle/ofm_11g/user_projects/domains/soa_dev_domain/deployed-composites/FLThree_rev1.0/sca_FLThree_rev1.0/198abebc-19d9-4df6-a712-2122b0b9730a/SCA-INF/FLI.lock (Too many open files)".
    Ensure that the file "" is a valid file to be generated.
    : Error occurred during deployment of component: FLI to service engine: implementation.bpel, for composite: FLThree: ORABPEL-01010
    Process Generation Failed.
    failure to generate the BPEL process file "".
    Could not generate named BPEL process file. The exception reported was "/apps/oracle/ofm_11g/user_projects/domains/soa_dev_domain/deployed-composites/FLThree_rev1.0/sca_FLThree_rev1.0/198abebc-19d9-4df6-a712-2122b0b9730a/SCA-INF/FLI.lock (Too many open files)".
    Ensure that the file "" is a valid file to be generated.
    [01:49:19 PM] Check server log for more details.
    [01:49:19 PM] #### Deployment incomplete. ####
    [01:49:19 PM] Error deploying archive file:/Users/satinder/jdeveloper/mywork/ChapterTwo/FLThree/deploy/sca_FLThree_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Any ideas..
    Thanks

    "Too many open files" issue is most likely because of a (few) Sun JDK6 bug(s). These bugs may not even get fixed in JDK6. It could hit at runtime or compile time depending on the number of jar files getting used and/or a few other variations around the use of file descriptors at a time by the JDK/JRE. One can use "lsof -p <pid>" command on Linux and see how the File Descriptors are growing when this issue is seen. E.g. use the pid of junit java process and not the main Ant java process if you want to debug at runtime. For compile time, grep on the compiler process.
    Increasing the limit of file descriptors is used as a workaround.
    How to increase per-process per-user file descriptor limit on your Linux hosted box:
    Using "limit" (csh) or "ulimit" (bash) command find out what is the value of "descriptors". As a root user (use sudo) edit /etc/security/limits.conf file.
    Close your x term and re-open (or re-connect your NX client) for this change to take effect. System re-start should not be required. If you are not able to increase the limit for some reason using these steps, try a few other things like re-starting your VNC server (or something similar), re-start your Linux box.

  • Dynamic Calc, 2 Pass with Attributes!

    Hi there,We have an Occupancy KPI within our Measures dimension, that works off the following member calc:(("Agency"/"Occupancy")/"Actual"->"DayInMonth"->"DummyHome")*7;This is set with <Dynamic Calc> <Two-Pass>This works great accross our cost centres until we start to use attributes within the ADD-In. Then the figures are shown as #Missing - Nuts!Any ideas would be welcomeMany Thanks in advanceMark

    Are you also trying to pull dynamic time series or any other dynamically calculated member? If every other intersection is stored, I would expect this to work. However, if you attempt to pull, say Q-T-D(&CurrWk), then a #Mi result is quite possible, and unavoidable (depending on your outline).

  • Unable to deploy to managed server - ExceptionInInitializerError

    I have a development/integration environment that lives on a single HP-UX server: two Weblogic domains, each containign an admin server and several managed servers. The machine is running a node manager process, and the node manager plus all servers are started via a WLST Python script (as recommended in the documentation).
    I have a seriously annoying issue whereby I cannot deploy any application, or data source, to a managed server unless that server is shut down. I get an 'ExceptionInInitializerError' any time I try. I can shut down the target server, install the deployment using the console, then start the server, and everything works great. Any insight is greatly appreciated.
    Version: Weblogic 10.3.0.0
    OS: HP-UX B.11.23 U ia64
    Stacktrace:
    ####<Nov 2, 2010 11:58:17 AM EDT> <Warning> <Deployer> <borg.abc.virginia.gov> <AdminServer> <[STANDBY] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1288713497985> <BEA-149004> <Failures were detected while initiating deploy task for application 'pta'.>
    ####<Nov 2, 2010 11:58:17 AM EDT> <Warning> <Deployer> <borg.abc.virginia.gov> <AdminServer> <[STANDBY] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1288713497985> <BEA-149078> <Stack trace for message 149004
    java.lang.Exception: java.lang.ExceptionInInitializerError
         at weblogic.deploy.service.internal.adminserver.AdminRequestStatus.includePrepareFailure(AdminRequestStatus.java:1418)
         at weblogic.deploy.service.internal.adminserver.AdminRequestStatus.signalCancelFailed(AdminRequestStatus.java:1266)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.signalCancelCompletion(AwaitingCancelResponses.java:126)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.doCancelCompletionCheck(AwaitingCancelResponses.java:112)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.receivedCancelFailed(AwaitingCancelResponses.java:97)
         at weblogic.deploy.service.internal.adminserver.AdminRequestImpl.receivedCancelFailed(AdminRequestImpl.java:503)
         at weblogic.deploy.service.internal.transport.CommonMessageReceiver.receiveCancelFailedMsg(CommonMessageReceiver.java:295)
         at weblogic.deploy.service.internal.transport.CommonMessageReceiver$3.run(CommonMessageReceiver.java:779)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.ExceptionInInitializerError
         at weblogic.management.mbeans.custom.Domain.lookupTarget(Domain.java:247)
         at weblogic.management.configuration.DomainMBeanImpl.lookupTarget(DomainMBeanImpl.java:6139)
         at weblogic.deploy.internal.TargetHelper.lookupTargetMBeans(TargetHelper.java:183)
         at weblogic.management.deploy.DeploymentData.getAllTargetedServers(DeploymentData.java:413)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isTargetListContainsCurrentServer(AbstractOperation.java:644)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isDeploymentRequestValidForCurrentServer(AbstractOperation.java:854)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:206)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.NullPointerException
         at weblogic.management.mbeans.custom.AttributeAggregator.<init>(AttributeAggregator.java:36)
         at weblogic.management.mbeans.custom.Domain$TARGETAGGREGATOR.<clinit>(Domain.java:239)
         at weblogic.management.mbeans.custom.Domain.lookupTarget(Domain.java:247)
         at weblogic.management.configuration.DomainMBeanImpl.lookupTarget(DomainMBeanImpl.java:6139)
         at weblogic.deploy.internal.TargetHelper.lookupTargetMBeans(TargetHelper.java:183)
         at weblogic.management.deploy.DeploymentData.getAllTargetedServers(DeploymentData.java:413)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isTargetListContainsCurrentServer(AbstractOperation.java:644)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isDeploymentRequestValidForCurrentServer(AbstractOperation.java:854)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:206)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Nov 2, 2010 11:58:18 AM EDT> <Error> <Console> <borg.abc.virginia.gov> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <> <1288713498054> <BEA-240003> <Console encountered the following error java.lang.Exception: java.lang.ExceptionInInitializerError
         at weblogic.deploy.service.internal.adminserver.AdminRequestStatus.includePrepareFailure(AdminRequestStatus.java:1418)
         at weblogic.deploy.service.internal.adminserver.AdminRequestStatus.signalCancelFailed(AdminRequestStatus.java:1266)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.signalCancelCompletion(AwaitingCancelResponses.java:126)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.doCancelCompletionCheck(AwaitingCancelResponses.java:112)
         at weblogic.deploy.service.internal.statemachines.adminserver.AwaitingCancelResponses.receivedCancelFailed(AwaitingCancelResponses.java:97)
         at weblogic.deploy.service.internal.adminserver.AdminRequestImpl.receivedCancelFailed(AdminRequestImpl.java:503)
         at weblogic.deploy.service.internal.transport.CommonMessageReceiver.receiveCancelFailedMsg(CommonMessageReceiver.java:295)
         at weblogic.deploy.service.internal.transport.CommonMessageReceiver$3.run(CommonMessageReceiver.java:779)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.lang.ExceptionInInitializerError:
         at weblogic.management.mbeans.custom.Domain.lookupTarget(Domain.java:247)
         at weblogic.management.configuration.DomainMBeanImpl.lookupTarget(DomainMBeanImpl.java:6139)
         at weblogic.deploy.internal.TargetHelper.lookupTargetMBeans(TargetHelper.java:183)
         at weblogic.management.deploy.DeploymentData.getAllTargetedServers(DeploymentData.java:413)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isTargetListContainsCurrentServer(AbstractOperation.java:644)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.isDeploymentRequestValidForCurrentServer(AbstractOperation.java:854)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:206)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:723)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1190)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:248)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:157)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:45)
    >
    Thanks,
    Chris

    Hi Chris,
    Did you manage to get a solution to this error, as I am facing the same issue.
    Thanks in advance,
    Pranav

  • Unable to deploy BIPublisher on OracleAS with WebCenter

    I installed the OracleAS with webcenter (i think that's 10.1.3.2.0)
    But when i try to deploy the xmlpserver.ear from BI Publisher 10.1.3.2.1
    the deployment "hangs" on the last step (binding to the webApp).
    I also tried manual deployment using the admin_client.jar, but with the same result.
    Anyone an idea where to start looking for the reason of "hanging"?
    After the non-deployment I see an
    ...\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\lib with the jar-files
    but no xmlpserver dir in the ...\j2ee\home\application-deployments
    no xmplserver.war file under...\j2ee\home\applications\xmlpserver
    and no META-INF under...\j2ee\home\applications\xmlpserver

    Hi,
    do you have any updates on this? I encountered similar situation, but I was trying to manually deployed to AS 10.1.3.0.0.
    Please let me know if you have found a solution,
    thank you
    yee thian

  • Using Calc Manager to update values for Members with Text Data Type

    Hi All,
    In my outline I have a member of text data type. The purpose is to allow users to be able to enter comments.
    Each line item is created through a business rule and I am prompting the user to enter the key values at the launch of the calc manager rules. I want to be able to prompt the user for the comments in the calc manager rule because I know that it supports variables of type string. However I am unable to assign this string variable directly to the member.
    I appreciate that essbase only stores numeric data and that all text data type members really store numeric values which are basically the id's of the text string stored in a relational table by planning. however I cannot update the database table through calc manager and then bring in the generated id. Is there any way I can do this?
    I don't want to skip this field in the calc manager rule and expect the user to enter the comments AFTER the line item has been created because the users want this to be a mandatory field and insist that a new line item not be created unless comments are specified.
    Many thanks in advance for any help I can get.
    Shehzad

    If the comments are a set definition you could you smart lists in your planning forms.
    create this in your smart list
    xxxx = 1
    yyyy = 2

  • LCM: Foundation Calc Manager vs Planning Rules Files

    I need to LCM rules files and see the rules in 2 different places, Foundation -> Calc Manager and Planning -> Rules Files. Which one is the correct file from which to LCM, and what is the difference between them?
    Also, files that were brought in via LCM show under Planning -> Rules Files but NOT under Foundation -> Calc Manager. Why would this be?
    Thanks!
    FA

    For this you need to understand the underlying design. Unlike HBR, which acted as the Rules repository, in Calc Manager, rules need to be deployed to Planning from Calc Manager. Once the rule is deployed to Planning, it (Planning) maintains the copy of the rule in it's repository. You can continue to make changes to your rules in calc manager and it will not have any effect on the rule in Planning.
    So during LCM, you will the rules in 2 places, one in Calc Manager (the version can be different from what is in Planning) and also in Planning.
    So you can import the Planning rules via LCM and it will run without calc manager coming in to picture. But if you want to edit these rules and deploy it back to Planning, you would need to import the rule via lcm in to Calc Manager and redeploy to Planning.
    -Sree Menon

  • 500 internal server error in EPMA and Calc manager in 11.1.2.1

    We are getting the below errors in EPMA log and Calc Manager log and unable to determine the cause of it. It seems like this particular issue was cause while deploying a calc manager rule for an HFM app. The issue resolved itself and the errors went away after about an hour. We have gotten the below error frequently in the last 3 weeks or so after having more activity lately in the environment. Any help is greatly appreciated.
    [2011-11-15T19:53:40.773-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdrMiiBt12LvqT4iX1Ek^ZE0000^U,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.repository.FileRepository.getElement(Unknown Source)[[
    com.hyperion.awb.web.repository.Action.getWorkbenchElement(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    [2011-11-15T19:53:40.773-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdrMiiBt12LvqT4iX1Ek^ZE0000^U,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T19:53:40.773-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdrMiiBt12LvqT4iX1Ek^ZE0000^U,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage1: (500)Internal Server Error
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage2: (500)Internal Server Error
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.repository.FileRepository.getElement(Unknown Source)[[
    com.hyperion.awb.web.repository.Action.getWorkbenchElement(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T19:54:12.852-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdrU^fBt12LvqT4iX1Ek^ZE0000^W,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage1: (500)Internal Server Error
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage2: (500)Internal Server Error
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.repository.FileRepository.getElement(Unknown Source)[[
    com.hyperion.awb.web.repository.Action.getWorkbenchElement(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:19:30.146-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdxGxUBt12LvqT4iX1Ek^ZE0000^l,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage1: (500)Internal Server Error
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage2: (500)Internal Server Error
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.repository.FileRepository.getElement(Unknown Source)[[
    com.hyperion.awb.web.repository.Action.getWorkbenchElement(Unknown Source)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:21:17.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxf5pBt12LvqT4iX1Ek^ZE0000^n,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage1: (500)Internal Server Error
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage2: (500)Internal Server Error
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.jobstask.Service.enumJobs(Unknown Source)[[
    com.hyperion.awb.web.jobstask.Action.getJobsElement(Unknown Source)
    sun.reflect.GeneratedMethodAccessor913.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:21:28.005-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 193] [userId: <anonymous>] [ecid: 0000JEdxhlhBt12LvqT4iX1Ek^ZE0000^p,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - end
    [2011-11-15T20:23:46.176-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.DIMEDITOR.com.hyperion.awb.web.dimeditor.Action] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFa0Bt12LvqT4iX1Ek^ZE0000^t,0] [SRC_CLASS: com.hyperion.awb.web.dimeditor.Action] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: loadAdf] Inside awb dimeditor
    [2011-11-15T20:23:46.614-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFgqBt12LvqT4iX1Ek^ZE0000^u,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:23:46.614-05:00] [EpmaWebReports0] [NOTIFICATION] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFgqBt12LvqT4iX1Ek^ZE0000^u,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] getXml() - start
    [2011-11-15T20:23:46.614-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFgqBt12LvqT4iX1Ek^ZE0000^u,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage1: (500)Internal Server Error
    [2011-11-15T20:23:46.614-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFgqBt12LvqT4iX1Ek^ZE0000^u,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] errMessage2: (500)Internal Server Error
    [2011-11-15T20:23:46.614-05:00] [EpmaWebReports0] [WARNING] [] [oracle.EPMAWT.CORE.com.hyperion.awb.web.common.BaseServiceException] [tid: 200] [userId: <anonymous>] [ecid: 0000JEdyFgqBt12LvqT4iX1Ek^ZE0000^u,0] [SRC_CLASS: com.hyperion.awb.web.common.DimensionServiceException] [APP: EPMAWEBTIER#11.1.2.0] [SRC_METHOD: getXml] exception: <BpmResponse type='error'><actor>none</actor><code>org.apache.axis.AxisFault</code><desc>(500)Internal Server Error</desc><trace>com.hyperion.awb.web.dimeditor.Service.enumDimensionsAndFolders(Unknown Source)[[
    com.hyperion.awb.web.dimeditor.Action.getChildNodes(Unknown Source)
    sun.reflect.GeneratedMethodAccessor257.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    Exception org.apache.axis.AxisFault rethrown
    </trace></BpmResponse>
    ]]

    Have you tried reconfiguring the web server?
    HTH-
    Jasmine.

  • Upgrading Planning from 11.1.2.1 to 11.1.2.2 BR/Calc Manager Issue

    Hi Gurus,
    I am attempting to apply the 11.1.2.2 maintenance release to my 11.1.2.1 environment however I have a question that I cannot find the clear answer to. We have never used Calc Manager so it was never installed. I have already applied the maintenance release to my servers however I have not configured them yet as I do not know what to due about Calc Manager as I was not able to select it during any part of the process. It displays as not installed and I cannot modify my existing home to install it so how am I to migrate the business rules to Calc Manager. The documentation does not state that I need to install Calc Manager prior to applying the maintenance release (I assumed that it would install as part of the process).
    How do I resolve this situation? Is it even possible to install 11.1.2.1 Calc Manager into an environment that has not been configured and is at 11.1.2.2?
    Thanks in advance.
    Gerald

    Really you should have installed Calc Manager 11.1.2.1 before the maintenance release, then when you applied the maintenance release it would upgrade the business rules to Calc Manager, I am sure you would have read that business do not exist in 11.1.2.2
    You will be able to install Calc Manager 11.1.2.2 on top of your existing environment 11.1.2.2 and then deploy it though you will not be able to access your original calc manager rules.
    Did you take an export of the business rules in calculation manager format or do you have access to the rules on another environment.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for