Error executing formula :scalar double argument expected in function [@DIV]

Hi,
I'm getting the following error when I try to run this calc. The syntax check says ok, but the calc won't run. I don't understand what the [@DIV] means ... Can someone help? Thanks!
Error executing formula for [Alloc Factor] (line 0): scalar double argument expected in function [@DIV]
sts = 1200400 CalcObject = DBadDebt
Command Failed. Return Status = 1200400
Fix(&Cscenario,@descendants("Currency"))
/*Direct allocation for BNA cost center 10471*/
FIX("Not Applicable Cost Center",CYTDC,"Bosch Power Tools Corded","Bosch Power Tools Cordless","Canada")
     "Alloc Factor"("Bad Debt" =
     "Net_Sales"->Input->&Cscenario /
     ("Net_Sales"->&Cscenario->"Canada"->"Bosch Power Tools"->Input);)
ENDFIX
FIX("Canada","Not Applicable Cost Center",CYTDC, "Bad Debt",@CHILDREN("Bosch Power Tools"))
"Direct Alloc"("Bad Debt"="Alloc Factor"->"Bad Debt"*
("Input"->"Other Operating Income and Deductions"->"10471"->"Not Applicable Brand"->"Not Applicable Region"->"Current YTD");)
ENDFIX
/*Direct allocation for ACN cost center 10472*/
FIX("Not Applicable Cost Center",CYTDC,"Bosch Accessories","Skil Accessories","VA Accessories","Canada")
     "Alloc Factor"("Bad Debt" =
     "Net_Sales"->Input->&Cscenario /
     ("Net_Sales"->&Cscenario->"Canada"->"Accessories"->Input);)
ENDFIX
FIX("Canada","Not Applicable Cost Center",CYTDC, "Bad Debt",@CHILDREN("Accessories"))
"Direct Alloc"("Bad Debt"="Alloc Factor"->"Bad Debt"*
("Input"->"Other Operating Income and Deductions"->"10472"->"Not Applicable Brand"->"Not Applicable Region"->"Current YTD");)
ENDFIX
/*Direct allocation for SNA cost center 10470*/
FIX("Not Applicable Cost Center",CYTDC,"Skil Power Tools Corded","Skil Power Tools Cordless","Canada")
     "Alloc Factor"("Bad Debt" =
     "Net_Sales"->Input->&Cscenario /
     ("Net_Sales"->&Cscenario->"Canada"->"Skil Power Tools"->Input);)
ENDFIX
FIX("Canada","Not Applicable Cost Center",CYTDC, "Bad Debt",@CHILDREN("Skil Power Tools"))
"Direct Alloc"("Bad Debt"="Alloc Factor"->"Bad Debt"*
("Input"->"Other Operating Income and Deductions"->"10470"->"Not Applicable Brand"->"Not Applicable Region"->"Current YTD");)
ENDFIX
/*Direct allocation for MT cost center 10473*/
FIX("Not Applicable Cost Center",CYTDC,"Measuring Tools","Canada")
     "Alloc Factor"("Bad Debt" =
     "Net_Sales"->Input->&Cscenario /
     ("Net_Sales"->&Cscenario->"Canada"->"Measuring Tools"->Input);)
ENDFIX
FIX("Canada","Not Applicable Cost Center",CYTDC, "Bad Debt","Measuring Tools")
"Direct Alloc"("Bad Debt"="Alloc Factor"->"Bad Debt"*
("Input"->"Other Operating Income and Deductions"->"10473"->"Not Applicable Brand"->"Not Applicable Region"->"Current YTD");)
ENDFIX
/*Direct allocation for Service cost center 10474*/
FIX("Not Applicable Cost Center",CYTDC,"Measuring Tools","Canada")
     "Alloc Factor"("Bad Debt" =
     "Net_Sales"->Input->&Cscenario /
     ("Net_Sales"->&Cscenario->"Canada"->"Skil Parts Brand","Bosch Parts Brand"->Input);)
ENDFIX
FIX("Canada","Not Applicable Cost Center",CYTDC, "Bad Debt","Skil Parts Brand","Bosch Parts Brand")
"Direct Alloc"("Bad Debt"="Alloc Factor"->"Bad Debt"*
("Input"->"Other Operating Income and Deductions"->"10474"->"Not Applicable Brand"->"Not Applicable Region"->"Current YTD");)
ENDFIX
endfix

Hello Stella Jones,<BR><BR>The error message means:<BR><BR>##1200400 Error %s formula for [%s] (line %s): scalar double argument expected in function [%s]<BR><BR>Is the same post of Jstrater above......<BR><BR>

Similar Messages

  • Essbase Error(1200400): scalar double argument expected in function [@EQ]

    Hi,
    I am trying to launch a business rule that was validated successfully in EAS but when I launched it, it resulted in following error:
    Detail:Cannot calculate. Essbase Error(1200400): Error executing formula for [390202] (line 37): scalar double argument expected in function [@EQ]
    In this rule, I am attempting to obtain YTD Net Income i.e. in March the YTD will be sum of Jan, Feb and Mar; in April, it will be sum of Jan, Feb, Mar and Apr, and so on, and store the value in VAR YTD.
    Please advise.
    The rule is as follows (line 37 refers to the line immediately after ELSEIF(&FcstYear1 == Oct)):
    %_Settings()
    VAR YTD = 0;
    FIX([Scenario], [Version], [Entity])
    "390202"
    IF ((@ISMBR(&CurrentFcst) AND @ISMBR(&FcstYear1) AND @ISMBR(&ForecastYear)) OR (@ISMBR(&CurrentFcst) AND @ISMBR(&FcstYear2) AND @ISMBR(&NextYear)))
    IF (&FcstYear1 == "Jan")
         YTD = "Jan"->"Net Income";
    ELSEIF(&FcstYear1 == "Feb")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income";
    ELSEIF(&FcstYear1 == "Mar")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income";
    ELSEIF(&FcstYear1 == "Apr")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income";
    ELSEIF(&FcstYear1 == "May")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income";
    ELSEIF(&FcstYear1 == "Jun")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income";
    ELSEIF(&FcstYear1 == "Jul")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income";
    ELSEIF(&FcstYear1 == "Aug")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income" + "Aug"->"Net Income";
    ELSEIF(&FcstYear1 == "Sep")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income" + "Aug"->"Net Income" + "Sep"->"Net Income";
    ELSEIF(&FcstYear1 == "Oct")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income" + "Aug"->"Net Income" + "Sep"->"Net Income" + "Oct"->"Net Income";
    ELSEIF(&FcstYear1 == "Nov")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income" + "Aug"->"Net Income" + "Sep"->"Net Income" + "Oct"->"Net Income" + "Nov"->"Net Income";
    ELSEIF(&FcstYear1 == "Dec")
         YTD = "Jan"->"Net Income" + "Feb"->"Net Income" + "Mar"->"Net Income" + "Apr"->"Net Income" + "May"->"Net Income" + "Jun"->"Net Income" + "Jul"->"Net Income" + "Aug"->"Net Income" + "Sep"->"Net Income" + "Oct"->"Net Income" + "Nov"->"Net Income" + "Dec"->"Net Income";
    ENDIF
    "10001"->"390202" = "Assets" + "Current Liabilities" + "390201" + "Other Debt" + "390101" + "Other Liabilities" - YTD;
    ENDIF
    ENDFIX
    Thanks,
    Abhi

    Are you actually trying to compare strings using == ? if yes then i m afraid it not possible in that way.
    Give a try to this:
    Please help on scalar double argument expected in function error
    Cheers...!!!

  • Essbase Error: Error executing formula

    Problem Description: When running query in BI Answer, error message is shown as the following:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. Essbase Error: Error executing formula for [MIX %]: status code [1130203] in function [@_VAL] (HY000)
    How can I fix it??

    Hi,
    It seems this problem is related to Data Cache And Data cache file settings, Had you tried with increasing it.
    Thanks
    Focusthread Hyperion Trainer
    [http://focusthread.com/training]

  • OBIEE - ESSBASE   ERROR - 1200467 - Error executing formula for [MDX query]

    I have an issue on essbase with a query with 50 member filters.
    The environment is OBIEE 11g over ESSBASE 11.1.2 with an ASO cube.
    The user for essbase are with database access filters.
    I have the following issue, OBIEE returns a query that filter 30 members and the query runs ok, but the same query with a 50 member filter returns the following error when i execute it on MAXL :
    MAXL Error
    ERROR - 1200467 - Error executing formula for [MDX query]: status code [1130203] in function [].
    ERROR - 1241101 - Unexpected Essbase error 1200467.
    i paste an example of the query that returns OBIEE
    With
    set [_Account2] as '{Distinct({[Account].[Allocated FTE - Budget]})}'
    set [_Employee0] as '[Employee].members'
    set [_Fund4] as 'Generate([Fund].Generations(2).members, Descendants([Fund].currentmember, [Fund].Generations(4), leaves))'
    set [_Position4] as '{Distinct({[Position].[POS111165], [Position].[POS111166], [Position].[POS111167], [Position].[POS111540], [Position].[POS112331], [Position].[POS113201], [Position].[POS113247], [Position].[POS113248], [Position].[POS113540], [Position].[POS113618], [Position].[POS113954], [Position].[POS114109], [Position].[POS114194], [Position].[POS115224], [Position].[POS115912], [Position].[POS115913], [Position].[POS116727], [Position].[POS117229], [Position].[POS117491], [Position].[POS117587], [Position].[POS117610], [Position].[POS117979], [Position].[POS119456], [Position].[POS121262], [Position].[POS121458], [Position].[POS121698], [Position].[POS123368], [Position].[POS124027], [Position].[POS124028], [Position].[POS124110], [Position].[POS124396], [Position].[POS125623], [Position].[POS125624], [Position].[POS126476], [Position].[POS127960], [Position].[POS129352], [Position].[POS129468], [Position].[POS129494], [Position].[POS129535], [Position].[POS129608], [Position].[POS129679], [Position].[POS129730], [Position].[POS129905], [Position].[POS130010], [Position].[POS130144], [Position].[POS133456], [Position].[POS134943], [Position].[POS135231], [Position].[POS135404], [Position].[POS135734]})}'
    set [_Program3] as 'Generate([Program].Generations(2).members, Descendants([Program].currentmember, [Program].Generations(3), leaves))'
    select
    { [Budget Item]
    } on columns,
    NON EMPTY {crossjoin({[_Account2]},crossjoin({[_Employee0]},crossjoin({[_Fund4]},crossjoin({[_Position4]},{[_Program3]}))))} properties GEN_NUMBER, [Account].[MEMBER_UNIQUE_NAME], [Account].[Memnor], [Program].[MEMBER_UNIQUE_NAME], [Program].[Memnor], [Employee].[MEMBER_UNIQUE_NAME], [Employee].[Memnor], [Fund].[MEMBER_UNIQUE_NAME], [Fund].[Memnor], [Position].[MEMBER_UNIQUE_NAME], [Position].[Memnor] on rows
    from [BCPSASO2.BCPS_ASO]
    any suggestions ?
    Thanks
    Niko
    Edited by: user8367101 on Mar 1, 2011 10:31 AM

    Here it is:
    It is a Windows Server 2003 R2
    Processor 8393 SE
    31.9 GB of RAM
    32-Bit
    How does "memscaling" works?
    I also think that are high but it is the way it was configured before I managed the application. For my DB
    Index Cache setting: 205800
    Index cache current value: 205800
    Data file cache setting: 33768
    Data file cache current: 0
    Data Cache setting: 877273
    Cata cache current: 71540
    Block Size: 65408

  • Error: 1200370 Error executing formula

    Hi,
    I am running a calc script, which is verified successfully but is getting failed with following error:
    Error: 1200370 Error executing formula for [EffectedDistrict] (line 138): attempt to cross a null member in function
    Code at line 138 is:
    Normal= @SUMRANGE(normal, @RELATIVE(@CURRMBR("districts"),0));
    where 'normal' and 'districts' are the members in my outline and districts is having lot many districts as children.
    Please help me in resolving this
    Thanks,
    Ashish

    In 11 there is a set command SEt EMPTYMEMBERSETS On;^^^SET EMPTYMEMBERSETS is also available in System 9: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/calc/set_emptymembersets.htm
    For once I get to correct you Glenn, no matter how small or trivial the correction may be. My ego requires me to count my successes -- I think the above is number four for me versus eleventy billion for you. :)
    Regards,
    Cameron Lackpour

  • Error Executing Formula

    I am getting the following error while trying to copy data from Workforce Planning database to Expense Planning database:
    Error executing formula for [Other FTE - SG&A]: status code [1013009] in function [@_XREF]
    The member that "Other FTE - SG&A" is trying to XREF is a stored member so I wouldn't think that it woul max out the memory reading the other member.
    The XREF formula for the member is:
              @xref(_WFCube_,"Emp Other FTE - SGA","JobGrade","Employee_Dimension",@name(@currmbr("Period")),@name(@currmbr(HSP_Rates)),@name(@currmbr("Currency")),@name(@currmbr("Year")),@name(@currmbr("Location")),@name(@currmbr("Version")),@name(@currmbr("Areas")));
    Database Cache settings are:
    Index Cache = 150000
    Data cache = 25000
    Currently running Planning 9.3.1 on 32-bit windows environment.
    Any help will be greatly appreciated.

    Do you really need to use these?
    name(@currmbr("Period")),@name(@currmbr(HSP_Rates)),@name(@currmbr("Currency")),@name(@currmbr("Year")),@name(@currmbr("Location")),@name(@currmbr("Version")),@name(@currmbr("Areas))
    I think you can delete those and try again.
    if the dimension or member names exists in both source and target, xref will be able to recognize both,
    so that you don't really need to define it. Simply define the intersection of the source which is different from the target.

  • Error optimizing formula for [mbrName]: argument [] may not have size [] in function []

    Hi all,
    Please help me
    I wrote the following script:
    182        "Commercial income tax"(
    183             IF ( "Payment of principal - Short-term" <> #MISSING)
    184                   "Commercial income tax" = 1;)
    It throws following error:
              Error:Error optimizing formula for [Commercial income tax] (line 182): argument [2] may not have size [-4] in function [@NE] Rule PandL.
    What the meaning of these word?
    argument [2]
    size [-4]
    Is there another way of accomplishing the above?

    Yeah, Anthony,
    I ve just written Calculation Scripts 6 month ago.
    Your question:  "Commercial income tax" and the "Payment of principal - Short-term" members are Accounts ?
    My Answer: Yes, they are.
    My full IF statement:
    182        "Commercial income tax"(
    183             IF ( "Payment of principal - Short-term" <> #MISSING)
    184                   "Commercial income tax" = 1;
    185             ELSEIF ( "Payment of principal - Short-term" == #MISSING)
    186                   "Commercial income tax" = #MISSING;
    187            ENDIF;)
    Warning Error:
              Error:Error optimizing formula for [Commercial income tax] (line 182): argument [2] may not have size [-4] in function [@NE] Rule PandL
    It is not Error if I write following Script:
    182        "Commercial income tax"(
    183             IF ( "Payment of principal - Short-term" <> 0 or "Payment of principal - Short-term" == 0)
    184                   "Commercial income tax" = 1;
    185             ELSEIF ( "Payment of principal - Short-term" <> 0 and "Payment of principal - Short-term" != 0)
    186                   "Commercial income tax" = #MISSING;
    187            ENDIF;)

  • Error executing formula for [Spread %]: status code [1130203] in funciton [@_VAL]

    <p>anyone ever seen an error message like this?  it occurswhen trying to pull spread % at any level...</p><p> </p><p>restarting the app temporarily fixes it, but it keeps comingback...any thoughts?</p>

    <p>I have seen this error before.    Firstly checkout the suggestions for that error code.</p><p>In my case I checked just about everything, it turned out to bethat the ESSSRV process (for that cube) was using too much memory(about 1.8Gb) which seems to be a magic threshold for AIX. Once I stopped and started the app it started running ok. For this particular cube I was constrained as to the outlineconfiguration, so I could make very few changes (e.g. reducingblock size etc).</p><p>I built a process to shut apps down during the day if noconnects which reduced the number of times this happened from a oneor two times a month to never.</p>

  • Incorrect number of arguments expected 1

    Hi,
    I'm new to this flex. Actually i want to set busycursor in loadValue Function. But i'm getting error as Here i'm getting an error as incorrect number of arguments expected 1.
    the error that i'm getting in 3rd line. and i have not pasted full code here. But i pasted only where i'm getting error when i tried to inser busyCursor.
    So please help me what i hv to change. waiting for your replay.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
              creationComplete="loadValues()" horizontalAlign="center"      --------------->  Here i'm getting an error as incorrect number of arguments expected 1.
              verticalAlign="middle"  color="#080808" borderColor="#FFF8E0" backgroundColor="#FFF8E0"
              xmlns:local="*"
              xmlns:tInput="assets.actionScript.*"
              xmlns:controls="com.iwobanas.controls.*"
              initialize="initTimer()"
              xmlns:dataGridClasses="com.iwobanas.controls.dataGridClasses.*"
              applicationComplete="init(event)" height="100%" width="100%">
    <mx:Style source="defaults.css" />
    <mx:Script>  
              <![CDATA[
                        import assets.actionScript.Trim;
                        import com.scottlogic.charts.DataGridExporter;
                        import mx.controls.ComboBase;
                        import assets.script.pods.view.Data;
                        import org.alivepdf.layout.Unit;
                        import mx.collections.ICollectionView;
                        import assets.actionScript.EscalationDTO;
                        import alarmSlide.TowerSelection;
                        import flash.net.navigateToURL;
                        import mx.binding.utils.BindingUtils;
                        import mx.controls.dataGridClasses.DataGridItemRenderer;
                        import mx.events.ListEvent;
                        import mx.charts.chartClasses.DualStyleObject;
                        import assets.actionScript.TowerInchargeRoleMappingDTO;
                        import flash.utils.clearInterval;
                        import flash.utils.setInterval;
                        import alarmSlide.SendMessageForEscalation;
                        import mx.skins.halo.BusyCursor;
                        import alarmSlide.REForAlarmReport;
                        import mx.managers.ToolTipManager;
                        import mx.controls.ToolTip;
                        import mx.collections.SortField;
                        import mx.collections.Sort;
                        import mx.messaging.messages.RemotingMessage;
                        import mx.events.AdvancedDataGridEvent;
                        import assets.actionScript.TowerStatus; 
                        import mx.rpc.events.FaultEvent;
                        import mx.rpc.events.ResultEvent;
                        import assets.actionScript.ValueObject;
                        import mx.messaging.channels.AMFChannel;
                        import alarmSlide.LEDChar;
                        import mx.utils.URLUtil;
                        import com.adobe.serialization.json.JSON;
                        import com.adobe.serialization.json.JSONDecoder; 
                        import mx.collections.ArrayCollection;
                        import mx.collections.IViewCursor;
                        import mx.collections.IHierarchicalCollectionView;
                        import mx.controls.Alert;
                        import mx.managers.PopUpManager; 
            import flash.net.FileReference;
                   import mx.messaging.messages.IMessage;
                  import mx.messaging.Channel;
                  import mx.messaging.ChannelSet;
                  import mx.messaging.channels.StreamingAMFChannel;
                        import flash.display.StageDisplayState;      
                        import mx.collections.ArrayCollection;
                        import mx.managers.CursorManager;
                        private var sendMessageScreen:SendMessageForEscalation;
                        private var escalationAlarmHistoryPopup:EscalationAlarmHistoryPopup;
                        public var manualOrScheduleTicketing:ManualOrScheduleTicketing;
                        public var editEscalationLevelPopup:EditEscalationLevelPopup;
                        private var escalationLevelPopup:EscalationLevelPopup;
                        private var escalationSiteDetailsPopup:EscalationSiteDetailsPopup;
                        [Bindable] private var towerName:String = "NoData";  
                        [Bindable] private var contactNumber:String = "NoData";
                        // Data Storgae variables
                        [Bindable] private var energyConsumption:ArrayCollection = new ArrayCollection();
                        [Bindable] public var dataColl:ArrayCollection = new ArrayCollection();
                        [Bindable] public var closedTicketArrayColl:ArrayCollection = new ArrayCollection();
                        [Bindable] private var towerDetails:ArrayCollection = new ArrayCollection();
                        [Bindable] private var escalationData:ArrayCollection = new ArrayCollection();
                        [Bindable] public var escalationLevelDetails:ArrayCollection = new ArrayCollection();
                        [Bindable] public var towerEscalationLevelDetails:ArrayCollection = new ArrayCollection();
                        [Bindable] private var escalationMasterList:ArrayCollection = new ArrayCollection();
                        [Bindable] public var alarmDetailsList:ArrayCollection = new ArrayCollection();
                        [Bindable] public var siteInformationList:ArrayCollection;
                        [Bindable] public var communicationInfoList:ArrayCollection;
                        [Bindable] public var operatorDetailsList:ArrayCollection;
                        [Bindable] public var siteLiveDataList:ArrayCollection;
                        [Bindable] public var siteLiveAlarmDetailsList:ArrayCollection;
                        [Bindable] public var ticketEscalationStateList:ArrayCollection = new ArrayCollection();
                        [Bindable]
                        public var siteAndDistrictDisplayName:String="";
                        public var categoriesArrColl:ArrayCollection = null;
                        public var tempArrColl:ArrayCollection = null;
                        public var userID:int = 0;
                        public var customertId:int = 3;
                        private var popupWin:PopupForTicketing;
                        // to store tower configuration
                        public static var data:ArrayCollection = new ArrayCollection();
                        private var intervalUnit:uint;
                        [Bindable]  
                        public var folderList:XMLList;
                        // BlazeDS variables
                 [Bindable] public var channelUrl:String;  
                  [Bindable] public var liveId:int=0;
                           [Bindable]
                           public var emailOrSmsMessageFormat:String = "";
                        [Bindable]
                        private var escalationEditOption:Boolean = false;
                        [Bindable]
                        private var swapCount:int = 0;
    //  ---------------------------- To Control Session ------------------------- //
            public var myTimer:Timer;
                        private function initTimer():void
                                   myTimer = new Timer(1800000);
                             myTimer.addEventListener("timer",logout);
                             this.addEventListener(MouseEvent.MOUSE_MOVE, resetTimer);
                             myTimer.start();
                        private function logout(event:Event):void
                                  this.addEventListener(MouseEvent.CLICK,forward);
                        private function forward(event:Event):void
                                  navigateToURL( new URLRequest("jsp/checkin/index.jsp"),"_self");
                        private function resetTimer(event:Event):void
                                  myTimer.reset();
                            initTimer();
    //  ---------------------------- To Control Session ------------------------- //
                            * This method will be called as soon as SWF loads in the browser , creating a AMF channel which communicates to Java
                            private function loadValues(mouse:MouseEvent):void{   ----------------------------------------------------------------->> When i enter Event to the loadvalues function i'm getting that error
                                            ticketViewStack.selectedChild = liveTicketVBox;
                                      userID = Application.application.parameters.userId;
                                      customertId = Application.application.parameters.customerId;
                                             if("true" == Application.application.parameters.escalationEditOption.toString()){
                                                escalationEditOption = true;
                                            channelUrl = "./messagebroker/amf";
                                             userID = 92;
                                      customertId = 3;
                                               escalationEditOption = true;
                                              channelUrl = "http://172.16.1.144:5009/messagebroker/amf";
                                var cs:ChannelSet = new ChannelSet();
                                            var customChannel:AMFChannel = new AMFChannel("my-amf",channelUrl);
                                            cs.addChannel(customChannel);
                                            remoteObject.channelSet = cs;
                                            remoteObject.getEscalationMaster();
                                            cursorManager.setBusyCursor();
                                            remoteObject.getAllLiveEscalationDetails(userID,customertId,displayTo wer.selectedItem.data,ticketType.selectedItem.data);
                                            cursorManager.removeBusyCursor();
                                            displayTower.selectedIndex = 0;
                                            refereshTime.selectedIndex = 0;

    Hi, Actually i did changes like show below.
    i made creationComplete="loadValues()"
    And i made
    private function loadValues():void
    I want to  set a busy cursor, But its not working.
    Actaully the loadValues() function will load the data when we open that perticular page.but it;ll take some time to load so that i want to put busy cursor. In above Code i used busy cursor but its not working.

  • Error when installing the OID9022 Patchset - test: argument expected

    Hi to everybody.
    Currently, i try to install the OID9022 patchset in infrastructure instance.
    So, i try to run patch.sh
    %./patch.sh
    SHUTDOWN ALL THE OID Processes
    SHUTDOWN THE LISTENER
    *** Important ***
    This patch should be installed on OID 9.0.2.1.0 only
    Do you want to continue (Y/N):y
    Is this a INFRASTRUCTURE Installation? (Y/N):y
    Installation of OID 9.0.2.2.0 PATCH in Progress...
    ./patch.sh: make: not found
    ./patch.sh: make: not found
    ***** Important ******
    Complete the following post-install steps
    Start the Listener
    Switch User (su) to root and execute /data2/oracle/infra/root.sh
    In order to do the schema upgrade, execute:
    oidpatchca.sh -connect <Connect String>
    -systempwd <SYSTEM Password> -odspwd <ODS Password>
    -sudn <Super-User DN> -supwd <Super-User Password>
    -dippwd <Password to register DIP server>
    OiD 9.0.2.2.0 Patch Installed
    The final message is "OiD 9.0.2.2.0 Patch Installed ", so i assume it is ok, so then i tried to run the root.sh as the instruction ask.
    but, when i try to run it, got this error...
    # cd /data2/oracle/infra
    # ./root.sh
    ./root.sh: test: argument expected
    # root.sh
    root.sh: not found
    # pwd
    /data2/oracle/infra
    # ./root.sh
    ./root.sh: test: argument expected
    Can anybody help?...Thanks...it urgent.
    Best Wishes,
    Rushdan Md Saad.

    Hi Rushdan
    I think your assumption about the patch being installed correctly is false. A make error is generally serious as it implies that something has not been recompiled and probably several files have not been copied into the correct locations.
    In my past experience this has been caused by incorrect environment variable settings ie you can't find the make utility or incorrect OS level patches have been applied.
    And my final comment is that this is the Portal Upgrade forum. You are more likely to get a definitive response on OID issues from the OID forum.
    Regards

  • 5200:Error executing query: null

    I am getting the error message 5200:Error executing query: null when trying to run a report that was perfectly fine a week ago. I searched on the internet and running the utility DeletePOV.cmd seems to resolve this issue for a lot of people. My issue is, I'm not sure what I need to modify in this file in order for it to work for me. I have tried just double clicking on this cmd file and nothing happens.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    SETLOCAL
    @ECHO OFF
    TITLE HR Delete User POV Utility
    if "%1" == "" goto Usage
    if "%2" == "" goto Usage
    if "%3" == "" goto Usage
    if "%4" == "" goto Usage
    SET CLASSPATH=F:/Hyperion/HyperionReports/lib;F:/Hyperion/HyperionReports/lib/HAB.jar;F:/Hyperion/HyperionReports/lib/HReports.jar;F:/Hyperion/HyperionReports/lib/HyperionADMWidgets.jar;F:/Hyperion/HyperionReports/lib/activation.jar;F:/Hyperion/HyperionReports/lib/jakarta-regexp-1.2.jar;F:/Hyperion/HyperionReports/lib/mail.jar;F:/Hyperion/HyperionReports/lib/swingall.jar;F:/Hyperion/common/ADM/7.0.1/lib;F:/Hyperion/common/ADM/7.0.1/lib/adm.jar;F:/Hyperion/common/ADM/7.0.1/lib/ap.jar;F:/Hyperion/common/CSS/2.5.3/lib/css-2_5_3.jar;F:/Hyperion/common/loggers/Log4j/1.2.8/lib/log4j-1.2.8.jar;F:/Hyperion/common/XML/JAXP/1.2.2/dom.jar;F:/Hyperion/common/XML/JAXP/1.2.2/jaxp-api.jar;F:/Hyperion/common/XML/JAXP/1.2.2/sax.jar;F:/Hyperion/common/XML/JAXP/1.2.2/xalan.jar;F:/Hyperion/common/XML/JAXP/1.2.2/xercesImpl.jar;F:/Hyperion/common/XML/JAXP/1.2.2/xsltc.jar;F:/Hyperion/HyperionReports/JRE/Sun/1.4.1_03/lib/i18n.jar;F:/Hyperion/HyperionReports/JRE/Sun/1.4.1_03/lib/charsets.jar;F:/Hyperion/common/XML/JDOM/0.8.0/jdom.jar;F:/Hyperion/common/JCE/1.2.2/US_export_policy.jar;F:/Hyperion/common/JCE/1.2.2/jce1_2_2.jar;F:/Hyperion/common/JCE/1.2.2/local_policy.jar;F:/Hyperion/common/JCE/1.2.2/sunjce_provider.jar;F:/Hyperion/HyperionReports/lib/planning/ext/servlet.jar
    "F:\Hyperion\HyperionReports\JRE\Sun\1.4.1_03\bin\java" com.hyperion.reporting.reportstore.DeleteUserPov %1 %2 %3 %4 %5
    goto End
    :Usage
    ECHO Usage: DeleteUserPov <ReportsAdminUserName> <AdminPassword> <ReportServerName> <DataSourceUserName>__<DataSourceServerName>__<AppName>__<DbName>__<DataSourceType> [ShowOnly]
    ECHO The 4th argument can use Regular Expressions. A link which describes in detail what a regular expression is "http://jakarta.apache.org/regexp/apidocs/"
    ECHO We can pass an optional 5th argument ShowOnly at the end to display a list of UserPov's which satisfy the search criterea.
    ECHO
    ECHO An example for Essbase datasource would be DeletePov hyperion reports localhost hyp__localhost__Sample__Basic__Essbase
    ECHO An example for HFM datasource would be DeletePov hyperion reports localhost hyp__localhost__Hfm__Hfm__FinancialManagement
    ECHO An example for Planning datasource would be DeletePov hyperion reports localhost hyp__localhost__Plan1__Plan1__Planning
    :End
    ENDLOCAL

    You will have to run the utility in the command prompt of the server. Within the command prompt, Navigate to the location where the utility is present and run the below command:
    DeleteUserPov <ReportsAdminUserName> <AdminPassword> <ReportServerName> <DataSourceUserName>__<DataSourceServerName>__<AppName>__<DbName>__<DataSourceType>
    An example for Essbase datasource would be DeletePov hyperion reports localhost hyp__localhost__Sample__Basic__Essbase
    An example for HFM datasource would be DeletePov hyperion reports localhost hyp__localhost__Hfm__Hfm__FinancialManagement
    An example for Planning datasource would be DeletePov hyperion reports localhost hyp__localhost__Plan1__Plan1__Planning
    HTH-
    Jasmine.

  • Error executing sequence in Planning

    We are using Hyperion Planning and have been for years, and all of a sudden started having an issue. We did have a database corruption issue last week and had to recreate the databases, but other than that, nothing has changed. Here is what is occurring:
    We use the workforce planning module to handle employee transfers, terminations, new hires, etc. and then those changes are transferred to the Expense database from the Workforce database. I will describe the transfer out, even though the issue is occurring with all:
    The sequence utilizes two Run-time prompts and consists of three different business rules:
    Rule 1 - Transfers employees from the two prompts out to a holding area - works perfect
    Rule 2- Aggregates the combination of the two prompts - works perfect
    Rule 3 - Moves the employee expenses from the Workforce database to the expense database. This is where the problem occurs. When looking in the log, it recognizes the two prompts, but then it gets an error on executing.
    When I go into EAS and validate, the following error occurs: Cannot calculate. Analytic Server Error(1200323): Error parsing formula for [FIX STATEMENT] (line 21): expression expected after [,]
    When I go to the individual rule causing the problem, the following error occurs: Cannot calculate. Analytic Server Error(1012001): Invalid Calc Script syntax [
    DATACOPY "MonthFlag"->"NoDepartment"->"No Business Unit" TO "COR Gross Salaries"->->]
    The area between the ->-> is where the two run time prompts go and it's like it doesn't recognize it.
    Add'tl info: the prompts are hidden because we don't want the user to modify. But even when I unhide them, the same error occurs.
    Sorry this is very long, but I was trying to provide as much information as possible.

    If the rule runs fine with hard-coded values (can you test?) then it points to an issue with the prompts as you suggest - but then they work fine for the first 2 rules.
    Might sound a little simplistic, but can you try creating new variables and replacing the ones currently in the rules with these - I guess this will rule out an issue with a 'corrupt' prompt....
    Wonder if the error indicates that for whatever reason the target for your copy cant find or doesnt recognise the members in your prompts?
    JB

  • ERROR: -1639 INVALID COMMAND LINE ARGUMENT

    Trying to install software for Shuffle that Santa brought and get this error messsage...
    "Error: -1639 invalid command line argument. Consult the windows Installer SDK for detailed command line help."
    Install stops at this point.
    SOMEONE HELP... My kid is chomping at the bit !
    Thanks.

    Ok I'll do some more searching but I found something in the community forums.
    APPSearch can not return this data into a property, so instead, for some unspeakable reason, returns a value of Null, follwed by another Null. This means that the property is created, and populated with two null characters. Bad news if the property also happens to be a PUBLIC property. All public properties are passed as part of the command line sent in a stream to the background installer process by the Execute Action. Since this stream now contains a double null value in a property, the stream is prematurely terminated. This creates an invalid command line, and thus the 1639 error.
    This user solved it by using the MSi Cleanup installer util.
    EDIT: A little more info...
    This problem is almost impossible to detect through the MSI log files since our friends at Microsoft chose to limit the length of any line in the log. It is impossible to get a dump of the full command line that generates this error.
    EDIT2:Note that error 1639 only ocurrs when the install package is run from removable media. When the package is run from local storage, the behavior is far more obtuse. The background install process, failing to receive a complete command line, is forced to run as if there had been no UI session, which in turn causes the APPSearch action to run again as if the install was running in silent mode. This causes re-evaluation of all properties a second time, destroying the feature selections made in the UI session, and also forcing the install to run under user credentials instead of elevated, even though AdminUser, ALLUSERS and Privleged properties are set. This is a very serious error that causes total failure of the installation.

  • Reports 10g: EP-0082: Error executing SCA utility

    Report Builder in Red Hat LINUX
    Report Builder: Release 10.1.2.0.2
    SCENARIO:
    The module CUSRR070.rdf exisits in /home/mydir/
    File Permissions are 777
    During editing I want to back-up CUSRR070.rdf as CUSRR070bak.rdf
    When doing File=>Save As, I get this error
    REP-0082: Error executing SCA utility.
    REP-0110: Unable to open file '/home/mydir/CUSRR070.rdf'.
    scaba 12
    The trouble-shooting guide sez:
    REP-82: Error executing SCA utility
    The possible causes of this error include the following:
    Case 1: Your initialization file is not current.
    Case 2: An abnormal condition.
    I DO NOT UNDERSTAND WHAT I AM TO DO
    What is the name of the file that is not current?
    Any suggestions ?

    Sorry for the slow reply. I've been trying a number of different things to get this to work.
    I reinstalled Developer as suggested but we don't have a patched version so there were no additional patches to apply. I re-ran the installer anyway to see if it would update anything.
    I couldn't find any reference to Developer patches that might fix this issue in metalink.
    I also tried messing with the JVM options to give it more memory etc but that didn't help.
    After using the Designer diagnostics trace I got the arguments it uses to run the same report from the command line.
    This resulted in the same issue. So at least it was consistent from Designer as well as the command line.
    This suggests it is a reports issue rather than Designer.
    Running the reports trace didn't provide any extra information. Found a bug that suggested changing any formula columns to not return NULL.
    Tried updating the report to fix that too but no joy.
    I will post here if I discover the solution.

  • Crystal Report issue : Error in file.. .rpt . Error in formula

    Hi ,
    I recently migrated a report from production to test environemnt and it throws me the following error:
    Error in File C:\DOCUME1\oe_user\LOCALS1\Temp\packing instructions {4058873B-9756-4052-B479-EBD2D0A08E7D}.rpt:Error in formula  <Object_Visibility>. '{Command.EXACT_WEIGHT_FLAG} = "Ne (No)"'
    This field name is not known.
    In production server is installed Oracle 9i database and in test server is installed Oracle 10g
    The report has 1 main report and 2 sub reports.
    1. The same report works fine in production server without any issues.
    2. I had executed the report in Crystal reports 2008 and it runs fine displaying all fields without any issues.
    3. I had also tried taking the query of both subreports and the main report and tried executing it in oracle and it runs fine without any issues.
    However during the runtime in the test server, it throws the following error.
    Can someone help me out with this issue..

    Hi Siva,
    What is the patch level of CR 2008?
    Is it a win or a web app?
    What is the server OS?
    First, try to simply view the report. Let  the report prompt for the database credentials and the parameter values if any.
    See if it reproduces the issue.
    ReportDocument rd = new ReportDocument();
            rd.Load(Server.MapPath("CrystalReport.rpt"));
            CrystalReportViewer1.ReportSource = rd;
    Take a look at the SAP Note :
    [1421867 - Error: This field name is not known|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433323331333833363337%7D.do]
    Hope it helps,
    Thanks,
    Bhushan.

Maybe you are looking for