Error on selecting member in calculation manager

I get the error when I want to select a member in a formula in Calculation Manager.

What is the error that you could see?
Regards,
Cnee

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

  • Can't assign a string value to a member of type TEXT in Calculation Manager

    I can assign a string value to that member of type TEXT using a run-time prompt of type StringToNumber.
    Example: "My Text Member" = {string_rtp};
    However, I need to accompllish the same function without using a run-time prompts.
    I have a planning application and I know that text along with all other non-numeric
    values are stored on the relational side in the planning application schema.
    It seems reasonable to assume that if this can can accomplish
    with a run-time prompt that I could do also do it without a run-time prompt.
    What appears to be lacking is a function like:
    "My Text Member" = @StringToNumber(<String Literal>);
    Clearly, this is already being done "under the covers" for run-time prompts. If
    would appear to be a minor enhancement to expose such a function to developers.
    NOTE: I suppose you would also need to add new syntax/function to identify a string
    literal from say a member name. I'm wondering if this is the more difficult challenge
    from a product perspective????

    When executing a Calculation Manager rule in Planning, the run-time prompt (RTP) is populated by looking up the outline information present in the relational Planning application database. If the RTP is of type TEXT, the strings displayed in the member select are from the from the relational Planning application database too. Subsequently when executing the Rule, the RTP's value is in fact the record ID (a number) which is then saved into the appropriate intersection in Essbase.
    You need to bear in mind, the Rule is executed in Essbase. If Essbase needs to "write" a text, it would then need to connect to the Planning relational database to create a new record. The newly created record ID then needs to be feed back to Essbase, in order to store it in the appropriate intersection.
    What you are suggesting, comes with a big overhead causing Essbase and the rule to slow. Thus, the disadvantages outweighs the advantages.

  • Calculation manager - error when importing .csc script

    Hi everybody,
    I am using EPM 11.2.1 with an Oracle 11.2.0.2 repository.
    I am new to Calculation Manager in Planning and I have an issue again.
    Using Essbase's admin console I created a script:
    SET UPDATECALC OFF;
    SET AGGMISSG ON;;
    FIX ("FY11", "Current", "Version_I")
    FIX(@DESCENDANTS ("ACC_Property, Plan & Equipment Net",0), @DESCENDANTS ("ACC_Intangible Assets Net",0), @DESCENDANTS ("ACC_Investments",0), @DESCENDANTS ("CapexNature",0), @DESCENDANTS ("Entity",0), @DESCENDANTS ("Period",0))
    "MS_Inv_Dep"=@PRIOR ("MS_Inv_Dep",1) + "MS_Inv_Val"->@CURRMBR ("Period")->@CURRMBR ("Entity") * "MS_Inv_%Dep"->"BegBalance"->@CURRMBR ("Entity")/12;
    ENDFIX
    CALC DIM ("Account","Period", "Measure");
    CALC DIM ("CapexNature","Entity");
    ENDFIX
    I wish to import the .csc in calculation manager but I receive the error (translated from Italian):
    Error during script analysis. Verify the script at row 1 column 7 to row 1 column 12
    I can't figure out what it is wrong. Is there a log somewhere with more details?
    any help will be very appreciate as I am stuck on this too.
    thank you all
    daniela

    Hi John,
    Thanks for the reply (by the way, I appreciate a lot the work you're doing on your ODI blog).
    No, I imported it (File->Import)
    I have a few calc scripts and in order to make transition to Calc Manager faster I thought of importing them.
    Regarding your suggestion to copy and paste it, I tried it and it works.
    I saw Calc Manager generates the script in a 'strange' syntax (because I used the aggregation template). For a simple aggregation the code it generates is like this:
    %Template(name:="Aggregation",application:="",plantype:="",dtps:=("Restriction":=(),"DF1":=[[Period]],"DF2":=[[Account]],"SF1":=[[Entity]],"SF2":=[[CapexNature]],"SF3":=[[]],"DP1":=[[]],"LevelDP1":=[[Descendants]],"DP2":=[[]],"LevelDP2":=[[Descendants]],"SP1":=[[]],"LevelSP1":=[[Descendants]],"SP2":=[[]],"LevelSP2":=[[Descendants]],"SP3":=[[]],"LevelSP3":=[[Descendants]],"UPTOLOCAL":=[[Use default]],"AGGMISSG":=[[Yes]],"FRMLBOTTOMUP":=[[Use default]],"CALCCACHE":=[[Not specified]],"Debug":=[[Debug wizard OFF]]))
    (I have inquired about thin in an earlier post)
    I can add my own code (calc manager creates a /*STARTCOMPONENT:SCRIPT*/ /*ENDCOMPONENT*/area).
    Regarding the code generated for templates, can this code be updated? How do I change in the above generated code the CALC DIM into AGG?
    thank you again
    daniela

  • Unable to use runtime prompts in calculation manager

    Hi All,
    I am unable to use runtime prompts in calculation manager (11.1.2.0).
    In Variable Designer I have selected global and created a Replacement variable with name "Entity" and selected Type as "Member" and Default Value as "Entity" from dimension list, checked the check box "rtp".
    In FIX (i.e., Member Range) I’m selecting this variable for Entity dimension, and validating this rule without any errors. And during deployment it is not prompting for Entity and directly a message appears that deployment was successful.
    My requirement is i should select a Entity member during runtime. Please help me out.
    Thanks.

    Are you accessing workspace url remotely on client machine?
    Can you try accessing the url on the server and check whether you can see the app in the Calc manager?
    Thanks
    Madhavi

  • Error - Update Product Data in Solution Manager

    Hello,
    We are currently downloading the Enhancement Package 4 in SOLMAN via Maintenance Optimizer, however, after choosing the Technical Usages in step 2.1, it shows an error in step 2.2 (Select OS/DB Dependent Files):
    Error : Update Product Data in Solution Manager
    Has anyone encountered the same problem? Would it be fine to continue on the next step after selecting the files which you need for your operating system-database combination.
    Any information is highly appreciated. Thank you.

    Hi Jaypee,
    Check guide How-To Install EHP4- A practical guide. Solution of this problem is documented there. you can download it from http://service.sap.com/erp-ehp
    Extract from this guide for this problem:
    Make sure that you update the product data in SAP Solution Manager. This is described in SAP Note 1277035 which is referenced from the collective SAP Note 1122966. If you do not update the product data, you might get an error message after the stack calculation. The message text explains the problem in more detail.
    Thanks
    Sunny

  • Error in RFC SM_DM1CLNT800_BACK to Solution Manager System Message no. STMWFLOW025

    Hi,
    I am facing an issue in our Test landscape. One of our team member uninstalled solman system which was connected to all other system. CHarms was partly configured in it, so other technical team used to reach to solman for creating TR# and also release the TR from Solman. Now that the system was removed abruptly we are facing this issue and I have checked few things as below:
    1) Checked for domain link entries in STMS and TP profile file, could not find anything. Nor there is any option to delete domain link as there is for create
    2) Checked the RFC its was working as new Solman with the same host name and other details has been brought back with out any settings yet in it.
    3) I deleted the RFC SM_DM1CLNT800_BACK in the managed system and had a backup copy created before deleting it. But still get the error "Error in RFC SM_DM1CLNT800_BACK to Solution Manager System" in more help I see this Message no. STMWFLOW025
    4) Message no. STMWFLOW025 - It gives me an indication that this is something to do with the domain link and the Workflow of the TMS.
    5) Checked BCOS_CUST table and it has an entry for this RFC. - Should I be removing this entry and will this resolve the issue?
    I need help in resolving this issue and also if one of you could share a blog for the proper configuration removal process of a managed system from Charms and ITSM I think it would be very helpful. I could only find process and step towards configuration and not how to unconfigure the system.
    Thanks in advance
    Ashish

    Hi
    The issue is now resolved, this is how I did it.
    1) Removed entries from BCOS_CUST from client 000 for OSS_MSG which was pointing to the RFC name
    Then got another error:
    No RFC connection to the central lock information management system.
    The project lock functionality is active in the local system, but there is no RFC connection to the Solution Manager system.
    2a) Ran the report in SA38 TMW_CONTROL_PROJECT_LOCK with selection for Deactivate the "project lock functionality".
    2) Filled the "Deactivate Project Lock" field with "X" then clicked EXECUTE.
    Problem got Solved.
    Thanks
    Ashish

  • User Variable not recognized  in Calculation Manager in V11.1.2

    I am using user variables in a script using a calculation manager in V11.1.2
    When I am using the user variable within a Fix statement I don't have any problems but when I am using it out of the Fix statement it does not work. I have already added the variables in the variable manager
    The error I am getting is the member is not recognized (user variable). I am having problem with only one of the many variables.
    Any suggestions on why I am getting this issue.
    Thanks in Advance.

    Thanks for your input, I have assigned the default values but it still did not work. Then I restarted all the services and it is working fine.

  • Error when selecting a user

    Hi everyone:
    We have implemented SAP NetWeaver 7.0, and we defined "ABAP System" as Data Source.
    We've come across a strange error while selecting some particular users (clicking on user) in Netweaver under User Management -> Identity Management > Selecting a User (clicking on user)
    "java.lang.NoSuchMethodError: com.sap.tc.webdynpro.services.sal.url.api.WDURLGenerator.isSecureURL(Ljava/lang/String;)Z"
    So far, this error has happened only when selecting a user that has the E-Mail field defined in the ABAP side. If we delete the E-Mail address from de ABAP account and then select the user in the Java Identity Management, the error disappears and the user account is perfectly shown.
    Any suggestions guys??
    Regards,
    Pablo Vaquero

    Hi Ravi,
    Thank for your reply.
    That indeed is the issue!... Since we have defined "ABAP System" as the Data Source, the E-Mail field can only be mantained on the ABAP side. But, as I've said on my previous post, when we fill this field in the ABAP side for any particular user and then want to see this change in user details on the UME side, when clicking on that particular user we get the error mentioned above.
    Regards,
    Pablo

  • Error while adding member to the dag in exchange 2013 sp1

    I have Windows Server 2012 Std Edition with Exchange 2013 SP1 and get the following error while adding member to the dag either i do it using EAC or the powershell
    Senior Technical Consultant, MDS Computers

    When running set-databaseavailabilitygroup Exchange-dag without parameters, it crashes again:
    [PS] C:\Windows\system32>Set-DatabaseAvailabilityGroup exchange-dag
    WARNING: An unexpected error has occurred and a Watson dump is being generated: Some or all identity references could not be translated. Some or all identity references could not be translated.
        + CategoryInfo          : NotSpecified: (:) [Set-DatabaseAvailabilityGroup], IdentityNotMappedException
        + FullyQualifiedErrorId : System.Security.Principal.IdentityNotMappedException,Microsoft.Exchange.Management.Syste
       mConfigurationTasks.SetDatabaseAvailabilityGroup
        + PSComputerName        : <server>
    Also, this is logged in the eventlog:
    Watson report about to be sent for process id: 7424, with parameters: E12, c-RTL-AMD64, 15.00.0847.032, w3wp#MSExchangePowerShellAppPool, M.Exchange.Management, M.E.M.C.FileShareWitness.Create, S.S.Principal.IdentityNotMappedException, 3e5c, 15.00.0847.031.
    ErrorReportingEnabled: True 
    Definitely looks like a problem creating the filewitness share.
    Frank.

  • Error while invoking member: ManagedInit1 - Login failed for user 'SRCAdmin

    I am trying to setup a Test Server for BOP 11.60 with MS SQL 2000 in MS Windows Server 2003. After installation, I copied user directory and database from live system to the new Test server. After installed the application andI updated Configuration Manager but when I run Planning Application Services, I have the following message:
    System.Exception: Error while invoking member: ManagedInit1 - Login failed for user 'SRCAdmin'. ---> System.Runtime.InteropServices.COMException (0x80131904): Login failed for user 'SRCAdmin'.
       --- End of inner exception stack trace ---
       at SRC.Core.Common.LateBoundHelper.InvokeMethodDirect(String methodName, BindingFlags flags, Object[] args)
       at SRC.Core.Common.LateBoundHelper.InvokeMethod(String methodName, Object[] args)
       at SRC.Core.Host.HostProcess.StartUp()
    I can use SRCAdmin user login to SQL Database without any problem but use Adminbop to start the Planning Application Services, I had this message.
    Does anyone know what is the problem?
    Regards,
    Irene

    Please, review your FBA configuration https://sharepoint2013fba.codeplex.com/

  • Error "Material not subject to inventory management in Plant " on the STO

    I want to create a Stock tansport order ( plant to plant transfer) with  stock & non-stock item and non stock item is giving an error  "Material not subject to inventory management in Plant".  Please tell me how to clear this error.   Plant / SLOC view is already maintained and no qty/value update selected on the material type because of non stock item.   Please tell me how to overcome this error on the STO

    Hello,
    As you said you want to move nonstock item through STO.
    It seems that in your case say for example your plant 1000 has material ABC which is maintained as stock item.
    Now you have another plant 2000, whaich has same material ABC which is maintained as non-stock item (generally used in third party sales or cross docking).
    If your material ABC is nonstock in plant 2000 where no stocks are mainatined,  then how can you move the stock to plant 1000 where it is stock item.
    Could you please confirmthat can you see the stock in MMBE for plant where that material is maintained as non stock item.
    If so, then  you have chnage the plant specific material status for that plant from non stock item to stock item.
    This is maintained in material master in purchasing view.
    The other way out is you have to third party sales with ship to party as the plant where that item is maintained as stock item.
    In this case flow is
    Sales order>>Purchase requistion>>Purchase order>>(Vendor supplies material directly to customer (which is you plant where that item is stock item))
    Br,
    Tushar
    Instead you can acheive

  • Error with CTC users at Solution Manager 7.1

    Error during Inital Setup at Solution Manager 7.1
    hello SAP Experts,
    I have an error during the Initial setup Solution manager 7.1 SPS3.
    I get it at SAP Solution Manager Configuration: System Preparation step 6.1 'Select SLD'.
    I filled host, port and password, status of SLD server is green, then I clicked button 'Configure SLD Data Supplier...' I have get new window, to fill in passwords and options.
    [SLD users|http://pokazywarka.pl/63hxan/] [SM2CTC & CTC2SM users|http://pokazywarka.pl/mcpakj/] (I logged into the system as a user SOLMAN_ADMIN, SLDDSUSER and SLDAPIUSER).
    After I click button 'next' an error occurred:
    Error: Execution of Function AGS_SISE_SET_CTC_STATUS ends with an error (message ID: 341, message number: No RFC authorization for function module AGS_SISE_SET_CTC_STATUS.:RFC_NO_AUTHORITY, message text: ).
    I have performed tx.Solman_setup as SOLMAN_ADMIN user.
    All steps before the an error are finished sucessfully.
    I  looking for information at Google and SAP notes but can not find anything.
    Please send any advices,
    Best regards
    SAPFan

    Hello,
    Please check my last reply to this very same issue in message:
    RFC No Authority error
    Best regards,
    Guilherme

  • How to redeploy Calculation Manager Web Application Server

    Hi All,
    I am installing a patch(13925741) for Calculation Manager, i stuck at the following point:
    6. Perform the standard Calculation Manager Web application server deployment task using Hyperion Enterprise Performance Management System Configurator (EPM System Configurator). See the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions.
    I don't know how to redeploy Calculation Manager Web Application Server, plz help me in deploying this.
    The readme for the patch can be found at:
    https://updates.oracle.com/Orion/Services/download?type=readme&aru=15356919#_Toc330987031

    909062 wrote:
    Hi All,
    I am installing a patch(13925741) for Calculation Manager, i stuck at the following point:
    6. Perform the standard Calculation Manager Web application server deployment task using Hyperion Enterprise Performance Management System Configurator (EPM System Configurator). See the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions.
    I don't know how to redeploy Calculation Manager Web Application Server, plz help me in deploying this.
    The readme for the patch can be found at:
    https://updates.oracle.com/Orion/Services/download?type=readme&aru=15356919#_Toc330987031
    Hi,
    Did you actually try to look at the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions as suggested ?
    To redeploy a component, run the configurator that can be found in the start menu under Foundation Services. Then select "modify an existing instance". Then for Calculation manager, check the box "Deploy to application server".
    Thanks,
    JM

  • Business rules in calculation manager

    Hi experts,
    I'm currently working with Hyperion Fusion Edition 11.1.1.2.
    In calculationmanager I created 10 business rules for an application.
    I then deleted all of them in one step (marked all then right click "delete").
    The intenet explorer browser freezed showing "DELETE".
    I then closed the browser and logged back in, imported the new 10 business rules to the application and deployed them.
    It is very wierd that I still have the old 10 business rules which I deleted plus the 10 new business rules.
    The old business rules are not to be found either in system-,deployment-, or list-view.
    Is there workaround to delete the 10 old business rules which I cannot see in calculation manager and still exist in planning?
    Many thanks
    Ed

    There are 2 ways to deploy rules to planning from calc manager.
    Option 1. When you select a bunch of rules and deploy, the old ones are not deleted from planning.
    Option 2. Go to the deployment view, select the rules you want to deploy. Go back to the system view and do a deploy at the application node.
    When you deploy at the application level, planning will erase all the existing ones and replaces it with the new ones.
    -SM

Maybe you are looking for