Sub Procedures in Calc Manager- Differences

Hi guys,
I was looking the scripts for the rules in Calc Manager and noticed that all set of rules are SubProcedures (even if they are included in the SubCalculate routine).
From the point of view of a traditional .rle file, what are the differences? Is there any changes when you use a subprocedure in the SubCalculate routine? As far as I know, there are no changes.
Thank you!
Regards,
L.

Calc Manager is simply a user interface for HFM rule creation, and therefore the traditional main subroutines still apply:
- Calculate
- Translate
- Consolidate
- Dynamic
- Input
- NoInput
- Allocate
- Transaction
- Equity Pick Up
Certainly when writing rules we can create further custom subroutines within the above main HFM subroutines, but Calc Manager does not alter this functionality at all.
-- Chris

Similar Messages

  • Hyperion Planning business rules migrating to Calc Manager issue

    It was suggested I post this in calc manager as well, so I hope cross posting is allowed!
    We are trying to migrate from Hyperion Planning 11.1.1.3 to 11.1.2.2
    Our business rules were migrated to Calc Manager by our IT team. The rules run (for the most part).
    Our main complaint about this migration is that it excluded our comments inside the business rules and added it's own!
    When we first open the rule it is in graphical mode. But on the Script Tab I can see our orignal Business rule, but it's missing comments. Not all comments -- those at the top of the rule are intact, but after it starts getting into the meat of the rule, it loses many, but not all of the comments. When I chose to edit this rule in script mode, then calc manager adds tons if its own comments, making the code very junky to read.
    So, multiple questions -- how do we get the migration of business rules to calc manager to stop losing our important comments. Is it possible to get the newly migrated rules to initially open in script mode rather than graphical mode so that it doesn't add it's own comments. Or is there a way to turn off the added commenting?
    This is a snippet of our rule in 11.1.1.3:
    FIX ("D0P000 Pushdown")
    "Accrued Salaries and Wages Pushdown" = "BTL Accrued Sal & Wages Total"->"WBS_I19990_PLAN" * (D0P000->"Total Reg Labor" / "LMSS (LRP TEMPLATE LEVEL)"->"Total Reg Labor");
    ENDFIX
    /* FIX on account members that should be rolled up in the AGG statement below. */
    FIX (@DESCENDANTS( "Orders"),
    This is what it looks like when it comes up in graphical mode in Calc Mgr 11.1.2.2 (note that comment is already missing):
    FIX ("D0P000 Pushdown")
    "Accrued Salaries and Wages Pushdown" = "BTL Accrued Sal & Wages Total"->"WBS_I19990_PLAN" * (D0P000->"Total Reg Labor" / "LMSS (LRP TEMPLATE LEVEL)"->"Total Reg Labor");
    ENDFIX
    FIX (@DESCENDANTS( "Orders"),
    This is what it looks like when it switches from graphical to script (bonus comments are added):
    FIX ( /*DIM:Entities*/"D0P000 Pushdown")
    /*STARTCOMPONENT:FORMULA*/
    "Accrued Salaries and Wages Pushdown" = "BTL Accrued Sal & Wages Total"->"WBS_I19990_PLAN" * (D0P000->"Total Reg Labor" / "LMSS (LRP TEMPLATE LEVEL)"->"Total Reg Labor");
    /*ENDCOMPONENT*/ ENDFIX
    FIX ( /*DIM:Accounts*/@DESCENDANTS( "Orders"),
    Thanks for any help.
    Brenda

    You might learn to appreciate graphical mode in Calc Manager, we do. It is not like the old Business Rules in EAS. I am an old school calc script person, and have NO love for drag-and-drop coding ... I need control. ;-)
    Insert a blank script object and paste your code into the 'Script' tab for that object. Set up your prompts and use the {} notation in your code. All of the comments will stay put ... as long as you DON'T USE EDIT, SCRIPT! We make a fair number of generic, reusable pieces of code and save them as shared scripts. These can be dragged into Rules. Click on the Rule's Begin object and choose the Script tab ... you will see how the bits are assembled into complete calc script. We've even come up with a way to use LOOP ... ENDLOOP as though it were a procedural IF statement so we can control whether or not a chunk of code is active or not.
    Shared scripts are especially good for currency translation components since we occasionally add new currencies and want to make a change in one object that is used in dozens of business rules.
    Mike H.

  • 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

  • VARRAYS - how to use in sub procedures and how to empty them?

    Hi!
    I made a procedure where i use three diffrent varrays. I got it working only after
    putting all code in one big MAIN-block. Looks nasty.
    If i try to use sub-procedures i allways got ORA-06531-message.
    = "Reference to uninitialized collection"
    How can i use varrays in sub-procedures? Is there some trick in delcare or in procedure call?
    I try to use IN OUT parameters, but i didn't get it working. Run out of time in trial and error, of cource...
    I seemed to me that varrays aren't same way usable allover in code as all other variables i have declared.
    Is it so?
    Now the MAIN-block is long as a year... I'm used to code short MAIN-block with many sub-procedures calls.
    (In same procedure, not different procedures in db).
    Another problem is how to empty a varray in effective way?
    I tried my_varray.DELELTE and my_varray.TRIM but they won't do the thing. These remove/trim the elements but i just need to
    empty varray before fetching a new line from db. If I my_varray := NULL; then that same ORA-06531 when next read/write in varray.
    Now i just use FOR i IN 1..120 LOOP
    my_varray(i) := NULL;
    END LOOP;
    but there must be better way, hope so.
    Cheers,
    SL

    You were rigth "3360" - i had three varrays too many. Just to the grabage bin and some recoding.
    The link you posted show me the way: Associative Arrays
    - easy to declare, easy to use, works fine in sub procedures. Great - just what i need.
    Thanks alot!
    I fully agree W. Robertson on this:
    "I often see questions on technical forums about arrays in PL/SQL, which type to use and what the differences are. Although the documentation has quite a lot to say on the subject, I feel it tries to introduce too many concepts at once and ends up being confusing, especially when it comes to choosing between VARRAYs and Nested Table collections, where most of the "which to use" advice is about collection columns of database tables (which you probably don't need), and not about PL/SQL at all."
    - sl -

  • Calc Manager 11.1.2.3 does not open

    Hello Gurus
    Just finished applying the maintenance release to 11.1.2.3 from 11.1.2.1.
    Can log in to workspace and was able to upgrade planning applications as well.
    However, when I try to open Calc Manager by doing ----> Navigate -> Administer -> Calc Manager, I get the following error message:
    Default Process Error handlerAn error occurred processing the result from the server.
    URI: http://servername:19000/calcmgr/filterview.getChildren.do
    Description: Syntax error -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <head>
    <title>Oracle Enterprise Performance Management System Workspace, Fusion Edition</title>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    </head>
    <frameset style="border:0px;" border="0" frameborder="0" framespacing="0" rows="*">
    <frame noresize scrolling="no" onload="" src="/workspace/index.jsp?framed=true">
    </frameset>
    I have checked the logs in the folder "D:\oracle\Middleware\user_projects\domains\EPMSystem\servers\CalcMgr0\logs" and
    <Test "SELECT 1 FROM CALCMGRCONFIG WHERE 1 = 0" set up for pool "calc_datasource" failed with exception: "java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
    ".>
    ####<Mar 3, 2015 1:36:05 PM EST> <Info> <JDBC> <TELEAS121> <CalcMgr0> <[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000KjWv6qBEOPCkZCADVr1KxVbb00000O> <1425407765900> <BEA-001128> <Connection for pool "calc_datasource" has been closed.>
    ####<Mar 3, 2015 1:36:05 PM EST> <Info> <Common> <servername> <CalcMgr0> <[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000KjWv6qBEOPCkZCADVr1KxVbb00000O> <1425407765980> <BEA-000636> <Resource Pool "calc_datasource", group "DEFAULT_GROUP_ID" enabled>

    Hello Sree,
    I believe the calc manager database configuration was not done. In fact, during the configuration process we never got any option where we could configure calc manager database. During the configuration, we got the option for shared services, eas, reporting and analysis, and planning.
    In the config node, calc manager comes under FOUNDATION right?
    Also, if I had to reconfigure calc manager, what do I do?
    Do I uninstall calc manager by doing EPM UNINSTALL and choose calc manager and then reconfigure it.
    Can you suggest the steps

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

  • Error while importing xml file in calc manager

    Hi All,
    I am having trouble in importing the xml file for calc manager. I have used the rules migrator utility to convert the .rle file into XML. Now when I import this xml file in the calc manager it gives me the following error- "An invalid application 'XML file name' was found on object Main_Global". Please let me know how should I import the xml file in calc manager and get it deployed. Thakns in advance for the help.
    -Kamran

    Hi All,
    I am having trouble in importing the xml file for calc manager. I have used the rules migrator utility to convert the .rle file into XML. Now when I import this xml file in the calc manager it gives me the following error- "An invalid application 'XML file name' was found on object Main_Global". Please let me know how should I import the xml file in calc manager and get it deployed. Thakns in advance for the help.
    -Kamran

  • 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

  • Can we use Aliases instead of member name in Calc Manager

    We migrated business rules to Calc Manager. After migration Calc Managers are not getting validated (stating the member is missing in the database). Later found out that in the script it has alias name instead of member name which was causing this error.
    example
    Member name = C001
    Alias = Texas
    in the script it is mentioned Texas = 5; (this statement throws an error while validating, stating Texas is not present in the outline, even though Texas is present in the Alias table as an alias for C001).
    Once I modify the script to C001 = 5; it gets validated without any issue.
    Does this mean in Calc Manager we cannot use Aliases unlike business rules and Calc Scripts?
    Please advice.

    The 'Defects Fixed' section of the release notes for 11.1.2 includes...
    "Calculation scripts validate inconsistently in Essbase and Calculation Manager (8800397)."
    ...which is pretty broad!
    Can you run the rules OK? If so, I'd just ignore the Calculation Manager validation message.

  • How do we exit from a sub procedure

    Hi,
    I am calling a sub procedure from my plsql procedure. If an error occurs in the sub-procedure, it should exit from the appilcation.
    return gets the control back to the called procedure. but is there a way to stop the execution totally?
    Thanks,
    Narayan

    Raise an exception that is not handled in the sub-procedure nor in the main procedure.

  • Issue with substitution variable with @MDSHIFT in BR in Calc Manager

    Hi Experts,
    We have a BR in EAS which is working fine.
    and exported to Calcmanager, now while validation it is giving error "@BaseScenario" is not found.
    the code is
    @MDSHIFT("LFLSalesIncVAT_GBP_C_DHP"->&BaseScenario->"Final"->"CD_FinalPlanPL",-1,"Year",,1,"Period",);
    if i hard code it like @MDSHIFT("LFLSalesIncVAT_GBP_C_DHP"->"P7PP"->"Final"->"CD_FinalPlanPL",-1,"Year",,1,"Period",); working fine.
    is there any limitation with calc manger and substitution variables?
    Thanks
    GP

    There seems to be many issues with validations in calc manager, does the rule run if you dont validate.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Jexport CDF issue with Calc Manager

    I have JEXPORT function which works fine as a essbase calc script.But when I try to validate in Calc Manager using EPMA Hyperion 11.1.1.3 ,It gives error
    'Error:Unable to resolve UDA,attribute member or dimension member with value,name or type "" rule Capex.Capex.CAP_Jexport'
    Note :It is a EPMA Application.
    Can we not use CDF in calc manager fro EPMA?

    Try using [url http://download.oracle.com/docs/cd/E17236_01/epm.1112/esb_tech_ref/dataexport.html]@DAYAEXPORT
    JExport was written as a stop-gap until the native data import and export functions could be added to the Calc library.
    Calc dataexport is very fast.
    Regards,
    Robb Salzmann

  • EPMA Batch Client - Can I launch business rules created in Calc Manager?

    I'm currently on a project where we have implemented an EPMA Planning app (v 11.1.1.2), and we need to schedule business rules to run in batch. In the past, I used the command line launcher to perform this task. Unfortunately, the command line launcher is really a part of EAS, so it would appear that I cannot use this method to launch a rule created in Calc Manager. Is this correct?
    It looks like my other option is to use the EPMA Batch Client. In looking at the "Execute" command in the documentation, it doesn't reference the ability to run a business rule. The docs are fairly limited, so I'm wondering if I really CAN launch a business rule from here.
    Has anyone scheduled a business rule (created in Calc Manager) to run in batch? If so, what method did you use? If all else fails, I can create a calc script and run it from MaxL, but I'd rather not have multiple versions of the code floating around.
    Thanks!
    - Jake

    Hi Jake,
    One of the known issues in 11.1.1.3 is :-
    You cannot launch a business ruleset with runtime prompts from the Planning command line launch (7205464).
    Whether this means you can't run calc manager BR's from command line I am not sure.
    There is no documentation in this area so I assume it can't be done yet.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Classic Vs EPMA and Calc Manager in 11.1.2.3

    I'm trying to remember if it is possible to use the Classic mode in 11.1.2.3 or if you are finally forced to EPMA and Calc Manager? Does anyone know?
    We are looking at doing an upgrade and want to make sure we pick the right version.
    Thanks

    You can use Classic metadata management in 11.1.2.3. You can also use EPMA with "Classic" rules if you'd like.

  • Calc Manager displays "Could not connect to dimension server" 11.1.2.1

    11.1.2.1 EPMA
    Opening Calc Manager and expanding Planning displays this error message:
    Could not connect to Dimension Server.
    Please make sure that the required services are started.
    I logged onto the foundation servers and restarted the following services (in this order):
    EPMA_Server
    Hys9EPMAWebTier
    Calc Manager (on respective servers)
    The problem still persists. Any ideas on how to resolve this?
    Edited by: Metatron on Sep 17, 2012 7:32 AM

    After restarting the services I started digging in the logs and I found 2 errors in the application log. These errors only occurred on one of the two foundation(dimension) servers (the other server has no errors in the application logs regarding this):
    1:
    [EPMA Server Startup] FATAL An error occurred during initialization of the Dimension Server Engine: Violation of PRIMARY KEY constraint 'PK_PropMbrArr'. Cannot insert duplicate key in object 'dbo.DS_Property_Member_Array'.
    The statement has been terminated..System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'PK_PropMbrArr'. Cannot insert duplicate key in object 'dbo.DS_Property_Member_Array'.
    The statement has been terminated.
    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
    at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
    at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
    at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
    at Hyperion.DataAccessLayerCore.DALCommand.Execute()
    at Hyperion.DataAccessLayerCore.BaseWriteCommand`1.Execute(Boolean CanWrite)
    at Hyperion.DataAccessLayerCore.InsertCommand`1.Execute(Boolean CanWrite)
    at Hyperion.DataAccessLayerCore.BaseWriteCommand`1.Execute(Boolean CanWrite, T instance)
    at Hyperion.DataAccessLayerCore.GenericDAO.Insert[T](T instance)
    at Hyperion.DimensionServer.DAO.DimensionPropertyManagerDAO.InsertDimensionMemberArrayPropertyItem(PropertyMemberArrayRecord row)
    at Hyperion.DimensionServer.PropertyManager.UpdateDimensionMemberArrayProperty(Int32 applicationID, DimensionMember member, MemberArrayProperty property)
    at Hyperion.DimensionServer.PropertyManager.UpdateRelationshipArrayProperty(Int32 applicationID, RelationshipMember member, MemberArrayProperty property)
    at Hyperion.DimensionServer.RelationshipMember.InternalUpdateArrayProperties(Int32 applicationID, IEnumerable`1 properties)
    at Hyperion.DimensionServer.RelationshipMember.UpdateArrayProperties(Int32 applicationID, ICollection`1 memberProperties)
    at Hyperion.DimensionServer.DimensionMember.UpdateArrayProperties(Int32 applicationID, ICollection`1 memberProperties)
    at Hyperion.DimensionServer.ProductRegistration.UpdateMemberArrayProp(String propertyName, RelationshipMember member, Object target, Application app)
    at Hyperion.DimensionServer.ProductRegistration.ParseValidationAssignments(XPathNavigator nav)
    at Hyperion.DimensionServer.ProductRegistration.ProcessRegistration()
    at Hyperion.DimensionServer.Library.Load()
    at Hyperion.DimensionServer.Global.Initialize(ISessionManager sessionMgr, Guid systemSessionID, String sqlConnectionString)
    2:
    [EPMA Server Startup] ERROR Exception occurred in the DAL. Error Message: 'Violation of PRIMARY KEY constraint 'PK_PropMbrArr'. Cannot insert duplicate key in object 'dbo.DS_Property_Member_Array'.
    The statement has been terminated.'. SQL command or stored proc:
    INSERT INTO DS_Property_Member_Array (
    i_application_id,
    i_dimension_id,
    i_library_id,
    i_member_id,
    i_prop_def_dimension_id,
    i_prop_def_member_id,
    i_ref_dimension_id,
    i_ref_member_id,
    c_value
    VALUES (
    @p_ApplicationID,
    @p_DimensionID,
    @p_LibraryID,
    @p_MemberID,
    @p_PropDefDimensionID,
    @p_PropDefMemberID,
    @p_RefDimensionID,
    @p_RefMemberID,
    @p_Value
    Params:
    p_ApplicationID = 1, p_DimensionID = 4, p_LibraryID = 1, p_MemberID = 177, p_PropDefDimensionID = 1, p_PropDefMemberID = 72, p_RefDimensionID = 6, p_RefMemberID = 281, p_Value = <null>
    System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'PK_PropMbrArr'. Cannot insert duplicate key in object 'dbo.DS_Property_Member_Array'.
    The statement has been terminated.
    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
    at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
    at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
    at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
    at Hyperion.DataAccessLayerCore.DALCommand.Execute()

Maybe you are looking for

  • Why don't all my free apps fail to launch?

    I have installed apps that run fine the first time, but once disconnected, they don't start up again.  Mail, app store, Safari all work just fine.  I have the latest version of software 5.0.1 and the latest version of 8MByte Touch.  I have reinstalle

  • Looking for a keyword using like query which could contain multiple occurrence in the same column

    I am facing an issue. A bunch of my frontend JSP code has been stored in few tables of my database (65 rows in a table), which I have identified using few like queries. Now I want to update a Href link which is present in all these queries. But since

  • Classpath entry in MANIFEST.MF file

    Hi All, When I deploy my application I get an error saying classpath entry in the MANIFEST.MF file is not correct.  The .ear file I am using has lot of .jar files, it is complaining about 1 or 2 jars at at time when I try to deploy the application. 

  • Did anyone notice the problem with theme chooser??

    Hello all! Just wondering if anyone else has noticed a problem -- I have purchased a bunch of extra themes and now when you click on the theme chooser, it brings up a great little window with ALL of your available themes. However, there are no scroll

  • How to show an XML doc's node?/element in a dynamic textbox?

    Hello! I would like to show an XML doc's node?/element in a textbox. I am importing the XML data from a PHP page. My code looks like this: var xmlRequest:URLRequest = new URLRequest("adatatvitel.php"); var xmlLoader:URLLoader = new URLLoader(xmlReque