Error validating business rules containing variable from another plan type.

We have created few business rules in in plan type "Plan1" which we are using variable from plan type "Capex". This is how we are using it.
"(@XREF(cpx,"Intangible Assets Finite, Gross","Unspecified","No Project","Information Technology (IT)","371064911-01"))"
But when we validate this rule it gives the following error
"An error occurred in: Rule:IFLJAN13.Plan1.B - Trail Balance - Capex
A validation error was received from the Planning server 'http://hptstorg:8300/HyperionPlanning/servlet/HspAppManagerServlet?appname=IFLJAN13'.
'Error:The member 'Unspecified' cannot be found.
The member 'Unspecified' cannot be found.
The member 'Intangible Assets' cannot be found.
The member 'Unspecified' cannot be found.
The member 'Unspecified' cannot be found. Rule IFLJAN13.Plan1.B - Trail Balance - Capex'."
We have checked the location aliases using EAS Console and they are correct.

Could you pls. check if you can see your BR in the location for the cube where you are unable to validate the rule?! (EAS console --> Administration --> Locations --> (right click) open)
your user must be able to "validate or launch" the rule in this location (changeable with "Add Access Privileges") and the rule itself must be able to launch in this location (changeable with "Add rules").
Kind regards
André

Similar Messages

  • Error Validating Business Rule in Calculation Manager (@_AT) ?

    I have migrated an 11.1.1.3 business rule and two macros (templates) into Calculation Manager 11.1.2.2. When I validate the script I get the following error. Has anybody seen this before or have any guidance? The script syntax checks ok.
    "An error occurred in: Rule:FCO_3YrBud_DGAlloc Error:Error parsing formula for [FIX STATEMENT] (line 24): Expected [(] found [@_AT] after function name Rule FCO_3YrBud_DGAlloc "
    Line 24 is the first FIX statement in the script show below:
    SET UPDATECALC OFF; SET AGGMISSG OFF;
    %Template(name:="FCOm_TargetSection",application:="FCO",plantype:="FCO",dtps:=("parm1":=([["Three Year Budget"]]),"parm2":=([["DGAllocation"]]),"parm3":=([[{FCOrtpYears}]]),"parm4":=([[Mar]])))
    %Template(name:="FCOm_TargetAgg",application:="FCO",plantype:="FCO",dtps:=("parm1":=([["Three Year Budget"]]),"parm2":=([["DGAllocation"]]),"parm3":=([[{FCOrtpYears}]]),"parm4":=([[Mar]])))
    First template:
    SET UPDATECALC OFF; SET AGGMISSG OFF;
    FCOm_TargetSection
    parm1 = scenario
    parm2 = version
    parm3 = years
    parm4 = periods
    The purpose of this macro is to translate Target input to GBP and copy to Curr NA and aggreggated. Step1: Copy inputs to Total Section to I/P Total Section and No Project Step1: Copy inputs to Converted Currency - no need to translate as all inputs are in GBP Step2: Copy Input GBP values to Curr NA
    FIX(([["Three Year Budget"]]),([["DGAllocation"]]),([["FY15"]]),([[Mar]]),@IDESCENDANTS("BH - T"), "Curr NA", "Baseline","Entered Currency","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Total Section" TO "Input_Total Section";
    DATACOPY "Total Section" TO "No Project";
    ENDFIX
    FIX(([["Three Year Budget"]]),([["DGAllocation"]]),([["FY15"]]),([[Mar]]),@IDESCENDANTS("BH - T"), "Curr NA","Total Section", "Input_Total Section", "No Project","Baseline","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Entered Currency" TO "Converted Currency (GBP)";
    ENDFIX
    FIX(([["Three Year Budget"]]),([["DGAllocation"]]),([["FY15"]]),([[Mar]]),@IDESCENDANTS("BH - T"), "Total Section","Input_Total Section","No Project", "Baseline", "Entered Currency","Converted Currency (GBP)","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Curr NA" TO "Input GBP";
    ENDFIX
    Second template:
    FCOm_TargetAgg
    parm1 = scenario
    parm2 = version
    parm3 = years
    parm4 = periods
    The purpose of this macro is to  aggreggate Target data Step2: Aggregate data
    FIX(([["Three Year Budget"]]),([["DGAllocation"]]),([["FY15"]]),([[Mar]]),"Baseline","Entered Currency","Converted Currency (GBP)")
    CALC DIM("Account","BudgetHolder","Input Currency","SectionProjects");
    ENDFIX

    Actually
    I have just been re thinking about your post. My comments above may not be correct for your situation. The Syntax above is correct if you are talking about the code "within" the template itself (So if you open the template and look at the code). But if the code you posted in your messages was from the script window of the rule (When in script mode) then your problem is something different potentially.
    So the first thing is to make sure that in the template itself (template open) the DTPs are defined in the global range or member range as [Parm1],[Parm2] etc (Or fix, depending on how the template is shown) as I said in my first response above, the template only defines the DTP, not the members and should be enclosed in square brackets, like [Parm1}. That will make sure the DTP as defined in your template correctly. Then we need to look at how you are defining those DTPs in the rule itself. Normally this is a lot easier if your rule is in graphical view, as you just click on the template and your can enter the values. As you have your rule in Script mode you need to be very careful in how you define the DTP values. Each DTP 'type' has different syntax in script mode.
    On looking at your script again I can see another problem potentially. When defining the values in the DTP's, the value needs enclosing with double square brackets, like so  [["Three Year Budget"]]. In your script you also have parenthesis. Which isn't always correct. There are times having parenthesis and double brackets is correct, but that is only when your DTP is type "Members", and by default I think old business rule macros will be translated into templates with the DTP types of "Script"
    So if you also amend your business section where the templates are defined to as below; (as you can see, no parenthesis around the DTP values).
    SET UPDATECALC OFF; SET AGGMISSG OFF;
    %Template(name:="FCOm_TargetSection",application:="FCO",plantype:="FCO",dtps:=("parm1":=[["Three Year Budget"]],"parm2":=[["DGAllocation"]],"parm3":=[[{FCOrtpYears}]],"parm4":=[[Mar]]))
    %Template(name:="FCOm_TargetAgg",application:="FCO",plantype:="FCO",dtps:=("parm1":=[["Three Year Budget"]],"parm2":=[["DGAllocation"]],"parm3":=[[{FCOrtpYears}]],"parm4":=[[Mar]]))
    The end game should be that when you open your rule and view in script mode and then select script tab down the bottom your templates should look as below, as you will see, all that should be shown in the script are the values substituted from the template definition, key point is that there are no brackets or Parenthesis. The script should show "pure" script. ( I have highlighted and underlined how those 4 DTPs should translate in the script view)
    First template:
    SET UPDATECALC OFF; SET AGGMISSG OFF;
    FCOm_TargetSection
    parm1 = scenario
    parm2 = version
    parm3 = years
    parm4 = periods
    The purpose of this macro is to translate Target input to GBP and copy to Curr NA and aggregated. Step1: Copy inputs to Total Section to I/P Total Section and No Project Step1: Copy inputs to Converted Currency - no need to translate as all inputs are in GBP Step2: Copy Input GBP values to Curr NA
    FIX("Three Year Budget","DGAlocation",FY15,Mar,@IDESCENDANTS("BH - T"), "Curr NA", "Baseline","Entered Currency","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Total Section" TO "Input_Total Section";
    DATACOPY "Total Section" TO "No Project";
    ENDFIX
    FIX("Three Year Budget","DGAlocation",FY15,Mar,@IDESCENDANTS("BH - T"), "Curr NA","Total Section", "Input_Total Section", "No Project","Baseline","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Entered Currency" TO "Converted Currency (GBP)";
    ENDFIX
    FIX("Three Year Budget","DGAlocation",FY15,Mar,@IDESCENDANTS("BH - T"), "Total Section","Input_Total Section","No Project", "Baseline", "Entered Currency","Converted Currency (GBP)","A - 6111","A - 6112","A - 6113","A - 65","A - 66","A - 620905")
    DATACOPY "Curr NA" TO "Input GBP";
    ENDFIX
    Thanks
    Anthony

  • Error with Business Rules using Cmdline in Hyperion Planning 11.1.1.3

    Dear all,
    When I want to run an HBR, I have an error and I don't know where it does come from:
    C:\Hyperion\products\Essbase\eas\console\bin>CmdLnLauncher -p:password.txt -S"DG
    IWSXXX.ros.jc.org" -UIntegration -rRDG01_2 -fexp_file.xml
    com.hyperion.hbr.excp.ExceptionAdapter: Error while sending command to HBR Serve
    r running within the EAS server.
    at com.hyperion.hbr.transport.HBRCommandRequestor.<init>(Unknown Source)
    at com.hyperion.hbr.cmdlnlauncher.LaunchManager.connect(Unknown Source)
    at com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher.main(Unknown Source)
    Detail:org.apache.xerces.dom.DocumentImpl.getXmlStandalone()Z
    Error while sending command to HBR Server running within the EAS server.
    2010-07-07 10:59:15,266 WARN main com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher
    - Error while sending command to HBR Server running within the EAS server.
    Thank you for your help.
    Jérémy

    Hi Celvin,
    Planning 11.1.2.3 is installed on a Linux box.
    Moreover I couldn't find the folder names 'services' under the logs folder as mentioned by you.
    C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9EPMServer-sysout.log (if compact deployment)
    C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\services\HyS9Planning.log (if not compact)
    Nothing has been captured in
    C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EPMServer0\logs
    But i see that the Dimensions 'Employee' and 'Job' have been added in the Dimension list, which should have been added once the workforce is initialized.
    Regards,
    Raj

  • Error while validating Business Rule (Error Cause: nativeGetNewTLA Rule)

    Hi, I am receiving an error while validating business rules
    An error occurred in: Rule:HypLive.Plan1.Product Interest
    A validation error was received from the Planning server 'http://abc:8300/HyperionPlanning/servlet/HspAppManagerServlet?appname=HypLive'.
    'Error:
    Error Cause: nativeGetNewTLA Rule HypLive.Plan1.Product Interest'.

    Are you able to validate the rule in EAS (or Calc Manager)?
    Normally nativeGetNewTLA Rule is followed by out of memory errors like java.lang.OutOfMemoryError,
    Increase the heap size to 1024, re start Planning and try validating it again.
    Cheers..!!

  • Error in Validation Business Rule

    Hello Experts,
    I am trying to perform validation on Intercompany Account Receivable and Account Payable accounts. For the same I added the Validation business rule, but getting an error while trying to save and validate the business rule. The error is:
    Error = "No Data to Validate"
    I have data in these accounts that I am performing validation on. Also, I am able to save and validate the Validation Rules Table.
    Experts, could you please provide suggestions regarding why I am getting this error and how to resolve it.
    Thanks
    Rahul

    Hello,
    is this with the Product Hyperion Financial Management?
    If yes, you might close the issue here and post it in the HFM group.
    Regards,
    Philip Hulsebosch

  • Validation business rule

    Hi,
    I am trying to reconcile account 1 with accounts 2 to 8 with a validation business rule. When I define the rule, I have one line with account 1 and account 2 filled and another 6 lines with only account 2 filled. This creates an error on validating the rule.
    How can I create such a validation rule?
    Thanks,
    Arnold

    Instead of using a validation rule I have set this up as an account transformation rule which works just as well and doesn't generate any errors.

  • SAP BPC 5.1 Validation Tolerance in Validation Business Rules

    I am trying to use the the validation tolerance field in the validation business rules and I make it work
    This is how i understand it:
    For example, I am trying to create a control that check that net assets = equity in the balance sheet with a tolerance of 10.
    I have set up the following validation rule header and detail:
    Header: CTRL1 ;validation operand = ; validation tolerance 10; all other fields are blank
    Details: CTRL1; account1=netassets;flow1=F_CLO;SIign1=1;account2=equity;flow2=F_CLO;sign2=1
    After running the validation package:
    If my netassets-equity=9--> i should see CTRL1=0
    If my netassets-equity=-5--> i should see CTRL1=0
    If my netassets-equity=15--> I should see CTRL1=15
    Is my understanding correct? Has anyone been able to use the validation tolerance?
    Regards
    Lena

    In addition to James comments, I just wanted to add a few additional notes:
    1.  The Demo application that was presented contains the applications that you described in your question.  Historically, the consulting team would either use the ApShell or the demo as the foundation for developing a set of applications for the customer based on the design sessions held with the customer.  BAsed on the customer requirements and design, often we start with ApShell and pull in components from the Demo that would support functionality requirements that may go beyond what Apshell has out of the box.  Many of these components are covered in an Advanced Training for BPC, including the helpful and not so helpful components.
    2.  You can pull many of the Demo dimension files, logic scripts and rules from the Application Server file folders for use in an Application set design.  Unfortunately, BPF's can not be transfered, since they are built in to an application and reside in tables in SQL. In addition, many BPF's need to be defined to meet a customers requirements, file names, location, users, and dimension structure.
    3. Many of the dimensions utilize several supporting properties that may be added via the admin console to any dimension.  The properties are a key ingrediaent to a well running application set, supporting reporting, script logic, and business rules.
    4.  The Performance dashboard is no longer an option that is included out-of -the-box, howvere it is just a shell that was adjustable to the application set designed for the customer.

  • Importing variables from another page in jsp

    Hey.
    I want to make two pages. I want the first page to include the variables from another page or POJO.
    I did this but i cant use the variables in index.jsp without initializing them first. But when I initialize them i get an error when trying to initialize them two times.
    if i use the variable in index without saving i get an error in eclipse.. but it works if i save and deploy.
    Is there any way to make eclipse see that i have imported the variable?
    The pages look something like this:
    index.jsp
    <%@ include file="extra.jsp" %>
    Print the number from the extra page
    <%= number %>extra.jsp
    int number = 32;I plan using this in a much greater system so I would appreciate any help.

    I'm having the same problem.
    Would be nice if somebody could help us.

  • Validation Business Rule Problem

    Hi Community
    I´m working with SAP BPC 7.0 NW SP09 Consolidation, the problem I have is when I execute the validation package, the result of the Validation Rule because the business rule don´t respect the number sign of the value calculated.
    For example I try to confirm this formula ASSETS = LIABILITIES + EQUITY
    ASSETS      AST   1000
    LIABILITIES  LEQ     800
    EQUITY        LEQ     400
    RESULT                  -200
    BUSINESS RULE      200
    I was investigating all the posible combinations of dimensions, and I found it could be possible that this error occurs when (Liabilities + Equity) > Asset.
    Rule                                   
    VAL01     ASSETS=LIABILITIES                         
    Rule Details                                   
    Validation Account     Account 1     Flow 1     Sign 1     Account 2     Flow 2     Sign 2     REMARK
    VAL01     ASSETS     F_CLO     1     LIABILITIES     F_CLO     1     
    ASSETS and LIABILITIES are configures as part of dimlist property, where Liabilities have all the equity accounts too.
    Hope anyone help me with this problem
    Thanks in advance

    Hello Ruben
    If Account: VAL01 is 'AST' account than Validation Business Rule will give 200 as the result.For 'LEQ' result will be -200.
    I think the business rule is working as expected.
    Hope this help.
    Regards
    Venkatesh KPS

  • Error while trying to copy template from another application

    Hi,
    I am getting this error while trying to copy template from another application:
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    This report is located here:
    Home-Application Builder-Application 150-Shared Components-Templates-Replace Templates
    best regards,

    It is usually a permissions issue.. you have read but not write permission. Why it would suddenly change is one of those Apple Mysteries... but it happens.
    Open the directory (folder) where your media files are.. and check the permissions.. see if you can fix them.
    The problem is the folder on the TC might have lost your ownership and you might not be able to change it.. Apple do not provide anyway to regain permissions because you would need low level access to the TC firmware.
    I would just as a matter of course reset the TC to factory and redo its setup.
    Factory reset universal
    Power off the TC.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the TC to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    N.B. None of your files on the hard disk of the TC are deleted.. this simply clears out the router settings of the TC.
    Do the setup via airport utility using different names.. short, no spaces and pure alphanumerics. Make sure passwords are also pure alphanumeric mixed case and numbers.. 8-20 characters is usually plenty.
    Mount the disk in finder and see if you have the same issue.. I am not expecting a change.. but it is worth a try.
    No luck you can copy your files off the TC.. wipe it .. and then copy them back.. no bad thing unless you already have a backup of your files at the moment. In which case you can just wipe the TC and copy the files now.

  • Error while activating DSO after loading from another DSO..Production issue

    Hello Gurus,
    I got an error while activating DSO2 after loading from another DSO1.
    DSO1 load and activation was sucessful but while loading from DSO1 to DSO2 load was fine but got error while activating...
      >Error when assigning SID: Action VAL_SID_CONVERT table ZWEEK_NUM
      >Value u201809u2019 of characteristic ZWEEK_NUM is not a number with 000004 spaces
    this theard was posted after searching for related post in SDN.
    and i tried Function Module RSODS_CHECK_RSODSACTUPDTYPE but it is not available .. but I used this in BW 3.10u2026..
    is their any similar Function Module in BI 7.0 please advice.
    We are using SAP NetWeaver BI 7.0
    Release- 700    Service level- 017
    Thanks in advance
    Sandy

    sloved the issue......
    it was due to wrong data for the related field...
    it  must be "0009 "
    Thanks for ur support. closing the ticket
    Regards
    Sandy

  • Validation business rule on a cumulative basis with periodic data storage

    Hi BPC Experts,
    Is it possible to set up a validation business rule on a cumulative basis when we have periodic data storage type?
    Appreciate your assistance with this.
    Thanks.
    Mila

    Hi Mila
    Please could you tell me how you solved the issue?
    We have it the other way round, a YTD storage, but would like to validate accounts on a periodic basis.
    Thanks for sharing your findings.
    Melanie

  • Bex exit Variable from another one.

    Hi Expert,
    Do you Know how to define a value for a variable from another that is navigable in the bex query. In other words, when i change a value during the OLAP navigation in the query, another variable must change on the basis of the first one. The first variable isn't a "variable selected from user" on the start of the query but is a "mandatory" with a default value. When the default is changed on the OLAP,  another variable must change.
    How can I do?
    Thanks.

    OK. I see - just to be sure: You dont want to call the variable screen, when making the change, right? That is how I understand it, if I am wrong, you can use an exit variable for ZC_FASCIA and fill it depending on what was set in 0calmonth variable.
    So, assuming you dont want to call the variable screen, have you tried setting the dependent variable to changeable during query navigation? I dont think it works, but anyway, try it out...
    One way of "solving" your requirement of "set value for Y when X is changed by user" could be to use a compounded characteristic where you compound ZC_FASCIA with 0calmonth. I think you should be able to compound ZC_FASCIA = 1 with 0calmonth = <blank>...
    Next, create a variable for this new char. Using a default should be possible and it would have to be changeable during query navigation and let users change the default month without calling the variable screen.
    I dont know if this works/helps...
    Regards
    Jacob
    P.S: Your requirement only seems to come from the "need" to have 0calmonth = #. If you did not need the #, you would always have 2 for ZC_FISCIA... so I was wondering why you need the blank month? Something with an annual value stored in # month??
    Edited by: Jacob Jansen on Jan 29, 2010 9:38 PM

  • Validation Business rules..

    Hi all,
              Does the validation business rules work on parent/ calculated members of other dimension other than the account and the account flow..
    im using the accounts
    SOURCE..
    ACCOUNT              ACCOUNTFLOW      OTHERDIM1
    SR10313000     F_CLO                        NONE1
    DESTINATION
    ACCOUNT              ACCOUNTFLOW      OTHERDIM1
    SA10411200     F102                           PARENT
    SA10411200     F103                           PARENT
    which   PARENT has a CHILD1 AND CHILD2 children.....
    Thanks..

    Hi,
    I don't think business rules work on parent or calculated members( though I haven't tried it), as business rules are developed using SQL stored procedures, which use the data in relational data base( fact tables), not the analysis server and fact table only has values of base members..
    if any one has tried this scenario, may be they could share more knowledge.
    Kranthi

  • Syncing ipod already containing files from another library:

    If I were to get a used ipod already containing music and videos, then went to sync the same ipod with files from MY iTunes library, how could I do this without erasing the files already on the ipod (I've seen before in this situation, iTunes gives a message that this ipod contains files from another library, they will be erased, etc. etc.)? Is there some way to first "sync" from the ipod over to iTunes?
    Thanks!!

    No, there is not a simple way to do that. You could get a music retrieving program, but that would probably cost money. Any category you select to sync with your library (music, video, games, etc), it will erase everything. (I went through it twice.) It's a different story if your iPod is formatted with a different OS, like Mac to Windows and vice versa. You would have to erase and reformat everything on that iPod.
    Example: my sister got a new used iPod once, and we chose to sync music, pictures, and video, but keep the games already on there since we had not bought any.
    Hope this helps!

Maybe you are looking for

  • Cannot open Pages Document

    I cannot open an Pages document that a friend created on his Mac.  Somehow it got corrupted.  He made the document from a template I made for him.  I called Applecare and they couldn't help me.  We were able to open any other Pages documents I tried

  • How to handle xml CDATA string element when OSB calling a webservice

    Hi Right, I'm new to OSB so bear with me. The following is a response from am operation in a webservice. As you can see there is a CDATA string in "<m:return>" element. I want to transform the CDATA string to XML. I have searched the forum and found

  • Stripping variables for carriage returns

    Hi all, would appreciate any thoughts on this problem...... Using the Show Me ODBC piece as a guide, I've successfully imported a table from an access database. The table comprises three fields [ID], [Question], [Response] which are stored as a varia

  • AIA PIP - Synchronize Contacts in Siebel to MDM

    Hello, We have a AIA customer PIP installed to integrate contacts data in Siebel and MDM (UCM). There is no customization and we are trying to test as is. The search for a contact in Siebel using the Match process seems to be working fine. After this

  • Block level backup engine Samsung SSD 840 EVO partition labeled "data"

    Replaced the hard drive in my Dell 1545 laptop with a Samsung SSD 840 EVO. Everything beautiful. Am running Windows 8.1 - again everything beautiful. Thought I would run "System Image Backup" (off the File History page). failed - Microsoft error code