Error building formula

I am trying to build formulas involving cells in another table on the same sheet. I click on the cell I want to reference, and sometimes it works, sometimes it doesn't.
When it works, the cell I click becomes coloured, and the formula includes a reference in the form "Table Name :: cell column&row". However, other times, it doesn't work, and I get a reference to some random cell in the table where the formula is, and that cell changes colour. It seems to depend on the cell being referenced. I even tried referencing a cell that worked, and then editing the reference itself to point to the cell I really wanted - it reverted to a reference to the wrong cell.
It seems that the cells that I am having trouble referencing are ones I recently added to the table, by inserting rows, since it was last saved (when everything worked).
Any ideas?
Message was edited by: Brian Gibb
Message was edited by: Brian Gibb
Message was edited by: Brian Gibb

I have figured out what caused this problem, and how to work around it. Based on what I found, I would say that this is a bug in Numbers - the program doesn't work the way it should.
It turns out that the cells I was referring to (in a table of input value) had as their rightmost header column a small integer (they were box numbers on tax information slips). The formulas that referred to them set up references to, for example, "2007 22" meaning the value in box 22 in year 2007 in the input values table. When later I edited the formula, rather than interpreting it as a reference to the row identified as 22 in the other table, it changed the reference to row 22 in the current table.
I got around it by changing the layout of my input values table so the box number was no longer the rightmost header column (rather the description text is). Now the references read, for example, "2007 Income tax deducted", and the confusion goes away.

Similar Messages

  • Error building the formula

    Hello,
    I need to figure out an error in building the below formula on my BSO cube outline (Essbase server V 9.3.1) (My local EAS version 11.1.2.2)
    Dimesion - TimeSpan
    Members -
    PER (no formula)
    YTD (no formula)
    MTD (Formula - given below)
    @CALCMODE (BLOCK);@CALCMODE (BOTTOMUP);
    IF (
         @ISMBR (@IDESCENDANTS ("ADB_Acc_NSign")) OR
         @ISMBR ("DayCount_YTD") OR
         @ISUDA ("Account", Acct_Gr_Cde_2) OR
         @ISUDA ("Account", Acct_Gr_Cde_4)
         AND NOT ( @ISMBR (@MATCH ("AccountingDate", "????-01*")) )
    IF (@CURLEV ("AccountingDate") == 0)
    IF( @TODATE("mm-dd-yyyy",@NAME(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR("AccountingDate")),5,10),@CONCATENATE("-",@SUBSTRING(@NAME(@CURRMBR("AccountingDate")),0,4))  ) )  ) >  @TODATE("mm-dd-yyyy",@SUBSTRING("09-01-2011",0,10))   )
    *"YTD" - @prior(@ANCEST("AccountingDate",-1,"YTD"),1,@levmbrs("AccountingDate",1));*
    ENDIF     
    IF (           @ISMBR (
              @MATCH ("AccountingDate", "????-01-31") ,           @MATCH ("AccountingDate", "????-03-31") ,
              @MATCH ("AccountingDate", "????-05-31") ,           @MATCH ("AccountingDate", "????-07-31") ,
              @MATCH ("AccountingDate", "????-08-31") ,           @MATCH ("AccountingDate", "????-10-31") ,
              @MATCH ("AccountingDate", "????-12-31") ,           @MATCH ("AccountingDate", "????-04-30") ,
              @MATCH ("AccountingDate", "????-06-30") ,           @MATCH ("AccountingDate", "????-09-30") ,
              @MATCH ("AccountingDate", "????-11-30") ,           @MATCH ("AccountingDate", "2007-02-28") ,
              @MATCH ("AccountingDate", "2008-02-29") ,          @MATCH ("AccountingDate", "2009-02-28") ,
              @MATCH ("AccountingDate", "2010-02-28") ,          @MATCH ("AccountingDate", "2011-02-28") ,
              @MATCH ("AccountingDate", "2012-02-29") ,          @MATCH ("AccountingDate", "2013-02-28")      )
              "YTD" - @prior(@ANCEST("AccountingDate",-1,"YTD"),1,@levmbrs("AccountingDate",1));
    ENDIF
    ELSE
         "YTD" ;
    ENDIF
    Error:
    [Wed Sep 12 11:16:52 2012]xxxx/Error(1200335)
    Error optimizing formula for [MTD] (line 1): invalid argument in function [@_TODATE]
    [Wed Sep 12 11:16:52 2012]xxxx/Error(1200002)
    Compilation failed
    [Wed Sep 12 11:16:52 2012]xxxx/Warning(1012121)
    Error encountered when loading member [MTD]'s calc string [@CALCMODE(BLOCK);@CALCMODE(BOTTOMUP); IF ( (@ISMBR(@IDESCENDANTS("ADB_Acc_NSign")) OR @ISMBR("DayCount_YTD"
    ) OR @ISUDA("Account", Acct_Gr_Cde_2) OR @ISUDA("Account", Acct_Gr_Cde_4) ) AND NOT (@ISMBR(@MATCH("AccountingDate", "????-01*")) ) ) IF (@CURLEV...], ignored
    When I write this formula directly in the outline, it gets verified and data retrieval is also correct (as expected). I am not able to understand why this formula is not getting built in the outline via mxl.
    The formula is seen in the outline after the build with commens as /* !!ERROR: FORMULA NOT LOADED!! */
    I have cheked that the file containing the formula contains \" for each member name (e.g. AccountingDate) and that each of the members referred in this formula from this/other dimension is present in the outline.
    *Sample Accounting Date level 0 member = 2012-01-01*
    *File:*
    "TimeSpan","MTD","","X","","","","","","","","","@CALCMODE(BLOCK);@CALCMODE(BOTTOMUP); IF ( (@ISMBR(@IDESCENDANTS(\"ADB_Acc_NSign\")) OR @ISMBR(\"DayCount_YTD\") OR @ISUDA(\"Account\", Acct_Gr_Cde_2) OR @ISUDA(\"Account\", Acct_Gr_Cde_4) ) AND NOT (@ISMBR(@MATCH(\"AccountingDate\", \"????-01*\")) ) ) IF (@CURLEV(\"AccountingDate\") == 0) IF(@TODATE(\"mm-dd-yyyy\",@name(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),5,10), @CONCATENATE(\"-\",@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,4)) ) ) ) > @TODATE(\"mm-dd-yyyy\",@SUBSTRING(\"2011-09-01\",0,10)) ) \"YTD\" - @prior(@ANCEST(\"AccountingDate\",-1,\"YTD\"),1,@levmbrs(\"AccountingDate\",1)); ENDIF IF (@ISMBR(@MATCH (\"AccountingDate\", \"????-01-31\") , @MATCH(\"AccountingDate\", \"????-03-31\") , @MATCH(\"AccountingDate\", \"????-05-31\") , @MATCH(\"AccountingDate\", \"????-07-31\"), @MATCH(\"AccountingDate\", \"????-08-31\") , @MATCH(\"AccountingDate\", \"????-10-31\") , @MATCH(\"AccountingDate\", \"????-12-31\") , @MATCH(\"AccountingDate\", \"????-04-30\") , @MATCH(\"AccountingDate\", \"????-06-30\") , @MATCH(\"AccountingDate\", \"????-09-30\") , @MATCH(\"AccountingDate\", \"????-11-30\") , @MATCH(\"AccountingDate\", \"2007-02-28\") , @MATCH(\"AccountingDate\", \"2008-02-29\") , @MATCH(\"AccountingDate\", \"2009-02-28\") , @MATCH(\"AccountingDate\", \"2010-02-28\") , @MATCH(\"AccountingDate\", \"2011-02-28\") ,@MATCH(\"AccountingDate\", \"2012-02-29\") , @MATCH(\"AccountingDate\", \"2013-02-28\") ) ) \"YTD\" - @prior(@ANCEST(\"AccountingDate\",-1,\"YTD\"),1,@levmbrs(\"AccountingDate\",1)); ENDIF ELSE \"YTD\" ; ENDIF"
    Please help.
    Edited by: VinS on Sep 12, 2012 10:52 AM

    Hello Cameron,
    I do not have any calc script associated with this BSO cube (I have a source ASO cube that supplies the data values to my BSO cube via transparent partiion.) My heart weeps to continue to use this formula, however, it's a working application and at this point in time, due to various project constaints, it's not possible to rewrite any pieces (If I could, I would change the design to go for an all out ASO to ASO design, but that's a separate discussion.)
    The original formula Before I made any changes:
    "@CALCMODE (BLOCK);@CALCMODE (BOTTOMUP);IF (( @ISMBR (@IDESCENDANTS (\"ADB_Acc_NSign\")) OR @ISMBR (\"DayCount_YTD\") OR @ISUDA (\"Account\", Acct_Gr_Cde_2) OR @ISUDA (\"Account\", Acct_Gr_Cde_4) ) AND NOT (@ISMBR (@MATCH (\"AccountingDate\", \"????-01*\"))) ) IF (@CURLEV (\"AccountingDate\") == 0) \"YTD\" - @prior(@ANCEST(\"AccountingDate\",-1,\"YTD\"),1,@levmbrs(\"AccountingDate\",1)); ELSE IF (@CURLEV (\"AccountingDate\") == 1) \"YTD\" - @prior(\"YTD\"->@CURRMBR(\"AccountingDate\"),1,@levmbrs(\"AccountingDate\",1)); ELSE IF ( @ISMBR (@MATCH (@CURRMBR(\"AccountingDate\"),\"????-Q1\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"02\")); ELSE IF ( @ISMBR (@MATCH (@CURRMBR(\"AccountingDate\"),\"????-Q2\"),@MATCH (@CURRMBR(\"AccountingDate\"),\"????-H1\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"05\")) ; ELSE IF ( @ISMBR (@MATCH (@CURRMBR(\"AccountingDate\"),\"????-Q3\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"08\")); ELSE \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"11\")); ENDIF ENDIF ENDIF ENDIF ENDIF ELSE \"YTD\" ;ENDIF"
    This formula gets built correctly in the outline through existing build process
    The new formula After I made my changes:
    "@CALCMODE(BLOCK);@CALCMODE(BOTTOMUP); IF ( (@ISMBR(@IDESCENDANTS(\"ADB_Acc_NSign\")) OR @ISMBR(\"DayCount_YTD\") OR @ISUDA(\"Account\", Acct_Gr_Cde_2) OR @ISUDA(\"Account\", Acct_Gr_Cde_4) ) AND NOT (@ISMBR(@MATCH(\"AccountingDate\", \"????-01*\")) ) ) IF (@CURLEV(\"AccountingDate\") == 0) IF(@TODATE(\"mm-dd-yyyy\",@name(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),5,10), @CONCATENATE(\"-\",@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,4)) ) ) ) > @TODATE(\"mm-dd-yyyy\",@SUBSTRING(\"2011-09-01\",0,10)) ) \"YTD\" - @prior(@ANCEST(\"AccountingDate\",-1,\"YTD\"),1,@levmbrs(\"AccountingDate\",1)); ENDIF IF (@ISMBR(@MATCH (\"AccountingDate\", \"????-01-31\") , @MATCH(\"AccountingDate\", \"????-03-31\") , @MATCH(\"AccountingDate\", \"????-05-31\") , @MATCH(\"AccountingDate\", \"????-07-31\"), @MATCH(\"AccountingDate\", \"????-08-31\") , @MATCH(\"AccountingDate\", \"????-10-31\") , @MATCH(\"AccountingDate\", \"????-12-31\") , @MATCH(\"AccountingDate\", \"????-04-30\") , @MATCH(\"AccountingDate\", \"????-06-30\") , @MATCH(\"AccountingDate\", \"????-09-30\") , @MATCH(\"AccountingDate\", \"????-11-30\") , @MATCH(\"AccountingDate\", \"2007-02-28\") , @MATCH(\"AccountingDate\", \"2008-02-29\") , @MATCH(\"AccountingDate\", \"2009-02-28\") , @MATCH(\"AccountingDate\", \"2010-02-28\") , @MATCH(\"AccountingDate\", \"2011-02-28\") ,@MATCH(\"AccountingDate\", \"2012-02-29\") , @MATCH(\"AccountingDate\", \"2013-02-28\") ) ) \"YTD\" - @prior(@ANCEST(\"AccountingDate\",-1,\"YTD\"),1,@levmbrs(\"AccountingDate\",1)); ENDIF ELSE IF (@CURLEV (\"AccountingDate\") == 1) \"YTD\" - @prior(\"YTD\"->@CURRMBR(\"AccountingDate\"),1,@levmbrs(\"AccountingDate\",1)); ELSE IF (@ISMBR(@MATCH(@CURRMBR(\"AccountingDate\"),\"????-Q1\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"02\")); ELSE IF (@ISMBR(@MATCH(@CURRMBR(\"AccountingDate\"),\"????-Q2\"),@MATCH(@CURRMBR(\"AccountingDate\"),\"????-H1\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"05\")) ; ELSE IF (@ISMBR(@MATCH(@CURRMBR(\"AccountingDate\"),\"????-Q3\"))) \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"08\")); ELSE \"YTD\" - \"YTD\"->@MEMBER(@CONCATENATE(@SUBSTRING(@NAME(@CURRMBR(\"AccountingDate\")),0,5), \"11\")); ENDIF ENDIF ENDIF ENDIF ENDIF ELSE \"YTD\" ; ENDIF"
    This formula does not get built correctly in the outline through existing build process and errors out as shown in original post
    When I copy and paste this new formula directly in the outline and restructure the outline, it verifies and saves the outline correctly and also gives correct data results. It's the build failure that I am unable to fathom out root cause for.
    My build process involves following simple MaxL commands:
    spool on to ./myapp.log;
    login user pwd on localhost;
    alter database xxxx.yyyy reset data; /* (this is not needed as the target bso does not store any data) */
    alter system unload application xxxx;
    alter system load application xxxx;
    import database xxxx.yyyy dimensions from local text data_file "'TimeSpan.txt'" using local rules_file "'myrule.rul'" suppress verification on error append to "'./build_myapp.err'";
    spool off;
    logout;
    Can you please look at the new formula and suggest any changes?
    Thank you so much in advance.
    P.S. : (Tim Faitsch had an opportunity to work on this formula before he left for better stuff to do !!)

  • Formula Variables for Report Painter- Syntac error in formula, Please Help!

    Dear Experts,
    I'm creating the report where I need to calculate annualized P&L. The formula is as follows : (P&L account/Period(variable ))12*
    I need to capture the From_period, which is entered by the user on the selection screen when running the report and use it as a variable in the formula above. Example: If User insert From Period 3, then the formula should be *P&L accoun / 3 * 12*
    I have tried so many different way but nothing seems to work. one of the ways i tried was:
    In the general selection Im using set variable 6P-S-PERIOVB.CCSS for period which consists of variable V_PERIO and B_PERIO.
    So Im trying to create a folowing formula:
    IF 1 >= u2018PER_FRu2019 AND 1 <= u2018PER_TOu2019 THEN 1 ELSE 16
    IF 2 >= u2018PER_FRu2019 AND 2 <= u2018PER_TOu2019 THEN 1 ELSE 16
    Unfortunately I keep getting Syntac error in formula. Please help me I'm really desperate to solve this issue after 5 days of unlucky research.
    Thank you in advance
    Regards
    Ernesta

    Thank you all for your help. The issue was that the variable was assigned to the different table as the library. After I changed it, it worked fine.
    Regards
    Ernesta

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

  • Formula Variables in Report Painter- Syntac error in formula

    Dear Experts,
    I'm creating the report where I need to calculate annualized P&L. The formula is as follows : (P&L account/Period(variable ))*12
    I need to capture the From_period, which is entered by the user on the selection screen when running the report and use it as a variable in the formula above. Example: If User insert From Period 3, then the formula should be *P&L accoun / 3 * 12*
    I have tried so many different way but nothing seems to work. one of the ways i tried was:
    In the general selection Im using set variable 6P-S-PERIOVB.CCSS for period which consists of variable V_PERIO and B_PERIO.
    So Im trying to create a folowing formula:
    IF 1 >= u2018PER_FRu2019 AND 1 <= u2018PER_TOu2019 THEN 1 ELSE 16
    IF 2 >= u2018PER_FRu2019 AND 2 <= u2018PER_TOu2019 THEN 1 ELSE 16
    Unfortunately I keep getting Syntac error in formula. Please help me I'm really desperate to solve this issue after 5 days of unlucky research.
    Thank you in advance
    Regards
    Ernesta

    so, I would use parameters.....
    P_fr_MO(2) TYPE N DEFAULT '01',
    p_fr_yr(4) type n default '2011'.
    Then, to set my range, i would do something like....
    data: lv_to_mon(2) type n,
             lv_to_yr(4) type n.
    if p_fr_mo eq '01'.
      lv_to_yr = p_fr_yr.  "12th month, same year...
    else.
    lv_to_yr = p_fr_yr + 1.  "any other month puts us into next year.
    endif.
    case p_fr_mo.
      when '01'.
       lv_to_mon = 12.  "always for 12 month period...
    when others.
       lv_to_mon = p_fo_no - 1.  '''example 10/2010 to 09/2011.
    endcase.
    then concatenate the from and to variables into what format is needed to read the data...
    on the other hand, if the user gives us from and to, we have a different problem....one then has to calculate what part of a year they have and create a factor for multiplying any data values....
    for instance if user says Jan (01) to (03) March, then I know that to month - from month + 1 is the number of months I have....
    then 12 / that number is the factor to multiply the results by....
    example...
    data : factor(5) type p decimals 2
              months(3) type n.
    if p_to < p_from.  "adjust if I cross a year boundary....Oct to Jan becomes 13 - 10 + 1 or 4 months.
    p_to = p_to + 12.
    endif.
    months = p_to - p_from + 1.
    factor  = 12 / months.  " factor   12 /4 months = 3 times the values obtained  = 1 year.
    something like this....hope this is helpful to you.
    Edited by: DaveL on Oct 18, 2011 6:24 PM

  • Error building gnomad2, missing libraries?

    Hello!
    Im trying to build the new version of gnomad2, which is a GTK based app for interacting with the Creative zen jukebox I have. I have been using version 2.6.3 for a while, and today they released a new version, 2.7.0. I have build the previous versions of gnomad2 without problems, but when I try to build the 2.7.0, make fails:
    gnomad2.c: In function `scan_jukebox':
    gnomad2.c:264: error: `GNOME_STOCK_BUTTON_CANCEL' undeclared (first use in this function)
    gnomad2.c:264: error: (Each undeclared identifier is reported only once
    gnomad2.c:264: error: for each function it appears in.)
    gnomad2.c:265: warning: assignment makes pointer from integer without a cast
    gnomad2.c:270: error: invalid type argument of `->'
    gnomad2.c:274: error: invalid type argument of `->'
    gnomad2.c: In function `set_jukeboxowner_dialog':
    gnomad2.c:311: error: `GNOME_STOCK_BUTTON_OK' undeclared (first use in this function)
    gnomad2.c:312: error: `GNOME_STOCK_BUTTON_CANCEL' undeclared (first use in this function)
    gnomad2.c:313: warning: assignment makes pointer from integer without a cast
    gnomad2.c:324: error: invalid type argument of `->'
    gnomad2.c:330: error: invalid type argument of `->'
    gnomad2.c: In function `main':
    gnomad2.c:360: error: `GnomeProgram' undeclared (first use in this function)
    gnomad2.c:360: error: `gnomad' undeclared (first use in this function)
    gnomad2.c:389: error: `LIBGNOMEUI_MODULE' undeclared (first use in this function)
    gnomad2.c:390: error: `GNOME_PARAM_POPT_TABLE' undeclared (first use in this function)
    gnomad2.c:391: error: `GNOME_PROGRAM_STANDARD_PROPERTIES' undeclared (first use in this function)
    gnomad2.c:413: warning: assignment makes pointer from integer without a cast
    make[1]: *** [gnomad2.o] Error 1
    make[1]: Leaving directory `/home/krigun/downloads/gnomad2/src/gnomad2-2.7.0/src'
    make: *** [all-recursive] Error 1
    ==> ERROR: Build Failed. Aborting...
    I have checked, I have all the dependecies listed below, but I do not have Gnome installed, I only use KDE.
    Gnomad dependencies:
    Gnomad +
    |
    +- GTK+-2.0 (incl GDK, GLIB)
    |
    +- libgnomeui
    |
    +- libnjb +
    | |
    | +- libusb (optional on *BSD)
    |
    +- libid3tag
    |
    +- GNOME 2.0
    and the PKGBUILD:
    pkgname=gnomad2
    pkgver=2.7.0
    pkgrel=1
    pkgdesc="gnomad2"
    license="GPL"
    depends=('libnjb')
    source=($pkgname-$pkgver.tar.gz)
    #md5sums=('84d738840d7bc56a468f53444a0ec206')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr/bin
    make || return 1
    make DESTDIR=$startdir/pkg install
    Does anybody know what these errors are about? Im not too familiar with the Gnome libraries.. Do I have to install Gnome to be able to make the package?

    you want add this into pacmans path
    Server = ftp://ftp.archlinux.org/tur/hapy
    then
    pacman -S gnomad2
    its so much easier
    but if your current like if you ran pacman -Suy after oct 1 i belive
    then it probably wont work
    mine did till the new upgrades
    ive not been able to build it from source like your doing ive tried many times
    i read some where in the read me files bout jsut adding  modprobe njbfs then mount it like
    a mass storage device im gonna try looking into that today
    i also posted ? to the forum on this

  • Error building schema

    Hi Gurus,
    I am trying to create a simple synchronous BPEL process from which I am invoking a external webservice deployed on a local oc4j container in my laptop.My external webservice operation takes a complex type as input and returns a complex type as output.I have created a partner link for my external webservice and an invoke activity for the calling the partner link.
    When I try to expand the Input/Output variables created for the invoke activity,I get the following error
    Error building schema
    Exception: Connection timed out: connect
    I have the correct proxy settings in my JDeveloper and I am able to access my webservice port from my browser.Please let me know where I am going wrong.
    Thanks In Advance,
    Prasanna

    Hi, just a try:
    "In obsetenv.bat you can specify the proxy to be used for outbound soap/http.
    Make sure it is set if there is a proxy between the bpel server and the webservice you are trying to call."
    In case it works: Thanks to Mark :-)
    Regards,
    Hansi

  • Error building stand alone applicatio​n, with LV.7.01

    Hi to all....
    I always get this pop up error (see picture attached) when trying to build a Stand alone application. I got the full version of Labview 7.01 and the Application builder also. the runtime engine is also 7.01.
    Regards
    HFZ.
    HFZ
    Solved!
    Go to Solution.
    Attachments:
    Error Building App.JPG ‏51 KB

    Hi GardW
    All comm. problem are handeled.
    The problem was based on the destinations for the .VI's.
    Labview 7.1 isn't so got to manage these. It's something the user got to be carefully about.
    Allmost solved. But now can't get the default 'labview Icon' to my finnished Application.  You know... when you make a stand alone application..
    then somewhere under the building process... you can choose if you want your own Icon added as the application starter icon! If you don't  choose any.. Labview makes the Labview Icon as your application starter Icon.
    And that is my problem now. Any ideas???
    Thanks for trying to help , i appriceate it !!
    Regards HFZ
    HFZ

  • Error building executable

    Bonjour à tous,
    Lorsque  je terminais ma semaine hier, j'ai voulu réaliser un dernier test sur un Touch Panel, mais lorsque j'ai voulu construire l'executable sous Labview 2009, celui ci m'a affiché cette erreur :
    Error building executable. Unable to create file
    Quelqu'un saurait d'où vient cette erreur et comment la corriger? Elle est apparue comme ça sans réels changements du code, ce qui d'autant plus étrange!!
    Merci pour vos réponses!

    J'ai ce type d'erreur de temps en temps, pour moi dans 50% des cas, il suffit de quitter LabVIEW, de ré-ouvrir le projet, relancer le build et ça marche.
    Sinon il faut que tu donnes plus de détails...
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Error building content paths on Primaries - java error

    I am on v10.3.3 (Sles Primes) and I am receiving this error in servers-meesages.log:
    [DEBUG] [12/19/11 2:40:46 PM] [] [Content Web Service] [] [getContentInfoEx: Error building content paths for ca4dde135b3d0c4d699a2722d0d49d6
    [DEBUG] [12/19/11 2:40:46 PM] [] [Content Web Service] [] [java.lang.ArrayIndexOutOfBoundsException
    [DEBUG] [12/19/11 2:40:47 PM] [] [Content Web Service] [] [getContentInfoEx: Error building content paths for 56d095d31efaad80f26e51cc02f9294
    [DEBUG] [12/19/11 2:40:47 PM] [] [Content Web Service] [] [java.lang.ArrayIndexOutOfBoundsException
    [DEBUG] [12/19/11 2:40:47 PM] [] [Content Web Service] [] [getContentInfoEx: Error building content paths for 7549fb68f8256e3ffdd1380c5b4ebc6
    [DEBUG] [12/19/11 2:40:47 PM] [] [Content Web Service] [] [java.lang.ArrayIndexOutOfBoundsException
    This is causing the workstations to hang upon registering. Once they reboot and receive their Closest Server rules the situation improves (still slow).
    [DEBUG] [12/19/2011 13:36:45.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [FindNextContent: Sleeping 3000 ms] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [FindFirstContent()] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [ ] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [ ] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [ Found host lx147.company.net status: Busy] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [ Skipping IP address 10.74.5.147, status Busy] [] []
    [DEBUG] [12/19/2011 13:36:48.843] [1788] [ZenworksWindowsService] [41] [] [ConnectMan] [] [ Found host 10.74.5.147 status: Busy] [] []
    Has anyone seen this? Please help.

    pcwoodring,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Error building xombrero 1.6.3-1

    Hi,
    I'm trying to build xombrero 1.6.3.-1 from AUR:
    https://aur.archlinux.org/packages/xombrero/
    I'm getting the following error building the package:
    $ makepkg -s
    ==> Making package: xombrero 1.6.3-1 (Fri Oct 11 09:51:42 CEST 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Found xombrero-1.6.3.tgz
    -> Found LICENSE
    ==> Validating source files with md5sums...
    xombrero-1.6.3.tgz ... Passed
    LICENSE ... Passed
    ==> Extracting sources...
    -> Extracting xombrero-1.6.3.tgz with bsdtar
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ~/builds/xombrero/src/build-gtk2/xombrero-1.6.3 ~/builds/xombrero/src
    make: Entering directory `/home/rodrigo/builds/xombrero/src/build-gtk2/xombrero-1.6.3/linux'
    perl ../js-merge-helper.pl ../hinting.js ../input-focus.js \
    ../autoscroll.js > javascript.h
    nroff -c -Tascii -mandoc ../xombrero.1 | \
    perl ../ascii2txt.pl | \
    perl ../txt2tooltip.pl > tooltip.h
    Generating ../about.o.depend
    In file included from ../about.c:23:0:
    ../xombrero.h:296:25: error: missing binary operator before token "("
    #if WEBKIT_CHECK_VERSION(1, 5, 0)
    ^
    ../about.c:1983:23: error: missing binary operator before token "("
    #if GLIB_CHECK_VERSION(2, 32, 0)
    ^
    cc -D_FORTIFY_SOURCE=2 -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -I/usr/include/gtk-2.0 -O2 -Wall -ggdb3 -D_GNU_SOURCE -I. -I.. -o ../about.o -c ../about.c
    In file included from /usr/include/gtk-2.0/gdk/gdk.h:32:0,
    from /usr/include/gtk-2.0/gtk/gtk.h:32,
    from ../xombrero.h:94,
    from ../about.c:23:
    /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30:21: fatal error: gio/gio.h: No such file or directory
    #include <gio/gio.h>
    ^
    compilation terminated.
    make: *** [../about.o] Error 1
    make: Leaving directory `/home/rodrigo/builds/xombrero/src/build-gtk2/xombrero-1.6.3/linux'
    ==> ERROR: A failure occurred in build().
    Aborting...
    I don't know what I'm missing. I was able to build xombrero last week in another PC with arch. My current system is upgraded:
    Linux 3.11.4-1-ARCH #1 SMP PREEMPT Sat Oct 5 21:40:32 CEST 2013 i686 GNU/Linux
    I though that installing thg gnutls library would solve the problem, but unfortunately the error persists after gnutls installation
    $ pacman -Ss gnutls
    extra/gnutls 3.2.4-1 [Installiert]
    A library which provides a secure layer over a reliable transport layer
    extra/libtasn1 3.3-1 [Installiert]
    The ASN.1 library used in GNUTLS
    community/python2-gnutls 1.2.4-2
    Python wrapper for the GNUTLS library
    Thanks in advance
    Last edited by cortezthekiller (2013-10-11 08:35:05)

    I've edit the former post to write the error messages in English.
    Yes, glib2 is installed, as well as the dependencies mentioned in the aur:
        desktop-file-utils
        libbsd
        webkitgtk3
    It seems that the updated PKGBUILD in the comments is just aimed to create two sepparate packages for xombrero & xombrero3. I'll try it, but I don't think this will fix my problem. As a said, I was able to build xombrero in another Pc a few days ago.

  • "error building executble. unable to create file."

    Hello!
    When I try to run or Build an Pocket PC application i get thes message: "error building executble. unable to create file."
    I have installed:
    LAbview 8
    Microsoft embedded visual c++ 4.0
    Microsoft Pocket PC SDK
    PDA Module 8
    Does anyone have a clue wats wrong?

    The builder is missing the C compiler and the linker from Microsoft for the emulator target.
    On my system they are located in C:\Program Files\Microsoft eMbedded C++ 4.0\EVC\wce420\bin. Check on your computer.
    I couldn't find a place where to set this path (remember: I have 7.1, 8.0 may support this settings, although it's not likely).
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011

  • Error building PKG grub-reiser4

    helo,
       I have this error building makepkg in grub-reiser4 aur package
    makepkg
    ./PKGBUILD: line 12: syntax error near unexpected token `)'
    ./PKGBUILD: line 12: `           '4876f193005df5fca8ca9647729d1e23')'
    ==> Making package: grub 0.97-2 (Sun Dec 10 08:48:50 CET 2006)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    ==>     Using local copy of grub-0.97-reiser4-20050808.tar.gz
    ==>     Found menu.lst in build dir
    ==>     Found install-grub in build dir
    ==> WARNING: MD5sums are missing or incomplete.  Cannot verify source integrity.
    ==> Extracting Sources...
    ==>     tar --use-compress-program=gzip -xf grub-0.97-reiser4-20050808.tar.gz
    ==> Starting build()...
    /usr/bin/makepkg: line 637: build: command not found
    ==> ERROR: Build Failed.  Aborting...
    what is ?
    thankyou

    thankyou and sorry for my error
    but when installed I run:
    grub-install /dev/hda
        GNU GRUB  version 0.97  (640K lower / 3072K upper memory)
    [ Minimal BASH-like line editing is supported.  For the first word, TAB
       lists possible command completions.  Anywhere else TAB lists the possible
       completions of a device/filename. ]
    grub> root (hd1,4)
    Filesystem type is reiserfs, partition type 0x83
    grub> setup  --stage2=/boot/grub/stage2 --prefix=/boot/grub (hd0)
    Checking if "/boot/grub/stage1" exists... yes
    Checking if "/boot/grub/stage2" exists... yes
    Checking if "/boot/grub/reiserfs_stage1_5" exists... yes
    Running "embed /boot/grub/reiserfs_stage1_5 (hd0)"...  18 sectors are embedded.
    succeeded
    Running "install --stage2=/boot/grub/stage2 /boot/grub/stage1 d (hd0) (hd0)1+18 p (hd1,4)/boot/grub/stage /boot/grub/menu.lst"... failed
    Error 15: File not found
    grub> quit
    this I view in my /boot/grub
    default        iso9660_stage1_5  minix_stage1_5     stage2_eltorito
    device.map     jfs_stage1_5      reiser4_stage1_5   ufs2_stage1_5
    e2fs_stage1_5  menu.lst          reiserfs_stage1_5  vstafs_stage1_5
    fat_stage1_5   menu.lst.old      stage1             xfs_stage1_5
    ffs_stage1_5   menu.lst.pacnew   stage2

  • Error building DC - Updated

    Error building a DC.
    I have a DC named "ext_xl" which is of type "External Library".
    I copied 3 Jar files:- Jexcel-install.jar, Jexcel.jar, jxl.jar into the library folder of this DC. Further I created two Public parts one for API and the other for SDA named:
    1. XL_API_PP
    2. XL_SDA_PP
    I built this DC "ext_xl".
    I have a report DC (cdts_ab) and a selection screen DC (sel_ab). The selection component in the Selectionscreen DC is used in the report DC via Used DC.
    When I add the above mentioned PP "XL_API_PP" to the Used DC part of "cdts_ab" and try to buid it, it gives me following error log:
    26-Aug-2006 10:37:46 /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: cdts_ab: Build failed for com.rel/cdts_ab(MyComponents) in variant "default": [Error]   Generation failed!
    Build log -
    Development Component Build (2006-08-26 10:37:39)
      Component name: cdts_ab
      Component vendor: com.rel
      SC compartment: MyComponents
      Configuration: LocalDevelopment
      Location: local
      Source code location: Administrator@infpw01589
      DC root folder: C:\Documents and Settings\Administrator\.dtc\LocalDevelopment\DCs\com.rel\cdts_ab\_comp\
      DC type: Web Dynpro
      Host: infpw01589
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/webDynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/cmi"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/ddicruntime"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wd/webdynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/logging"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wdp/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.proxy.framework"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.util.misc"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.mw.jco"
              [dcmake] validating dependency to  public part "SelectOptionComp_PP" of DC "com.rel/sel_ab"
              [dcmake] validating dependency to  public part "SelectOptionTypes_PP" of DC "com.rel/sel_ab"
              [dcmake] validating dependency to  public part "XL_API_PP" of DC "com.ash/ext_xl"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/webDynpro
              [dcmake] starting build plugin from : C:\Program Files\SAP\JDT\eclipse\plugins\com.sap.tc.ap\comp\SAP_BUILDT\DCs\sap.com\tc\bi\bp\webDynpro\_comp\gen\default\public\webDynpro\
    [wdgen] [Info]    Generating configuration/Components/com.rel.cmet.components.contdailytscomp.ContDailyReptComp/ContDailyReptComp.xml
    [System.err] [Invoked from  com.sap.ide.generationfwk.task.GenerationTaskJavaMethod.executePersistent(GenerationTaskJavaMethod.java:153)]
    [System.err] com.sap.tc.webdynpro.repository.RepositoryRuntimeException: Failed to parse XML document containing MRO=com.rel.cmet.components.seloptcomp.SelectOptionsComp.
    [System.err]      at com.sap.tc.webdynpro.repository.xml.XMLLayerDataParserWriter.startParsing(XMLLayerDataParserWriter.java:190)
    [System.err]      at com.sap.tc.webdynpro.repository.xml.XMLPersistence.readRepositoryObject(XMLPersistence.java:331)
    (ProgmodelRepositoryGenerator.java:297)
         [wdgen] ERROR: Unknown exception during generation null (com.sap.webdynpro.generation.ant.GenerationAntTaskError)
         [wdgen] ERROR: Generation failed due to errors (4 seconds)
    Ant runtime 6.266 seconds
    Ant build finished with ERRORS
    [Error]   Generation failed!
    Error: Build stopped due to an error: [Error]   Generation failed!
    Build plugin finished at 2006-08-26 10:37:46 GMT
    Total build plugin runtime: 6.781 seconds
    Build finished with ERROR
    Message was edited by: Ashwin Bhat

    Could not find a solution. Built new dc.

  • Essbase Error(1200329): Error compiling formula for [Asset Description] (li

    Hi,
    I am having some problem in debugging one error
    Detail:Cannot calculate. Essbase Error(1200329): Error compiling formula for [Asset Description] (line 37): invalid assignment
    I am just creating a Add asset script as my client does not have license to CapEx module.
    Script Below- please let me know what can be an issue
    VAR numAsset = [NumAsset];
    VAR usFulLife=[UsefulLife];
    FIX(@CHILDREN("Total New"), [Scenario], [Version], [Entity], [Department], [AssetClass],[Year],"BegBalance","Local", "HSP_InputValue")
    "Asset Description" (
    IF (numAsset > 0 AND @MAXS(SKIPMISSING, @CHILDREN("Asset Properties")) == #MISSING )
    numAsset = numAsset - 1;
              "Asset Status" = 0; /* flag to know this is a new asset*/
              "Asset ID" = [AssetID];
    "Asset Description" = [AssetDesc];
              "CAR No." = [AssetCAR];
              "Purchase Units" = [AssetUnits];
              "Purchase Amount(per unit)" = [AssetRate];
              "In Service Date" = [InserviceDate];
         /*     "Total Cost" = "Purchase Units" *"Purchase Amount(per unit)";*/
    IF(usFulLife > 0)
              "Useful Life (in Years)" = usFulLife;
    ELSE
                   "Useful Life (in Years)" = "No Scenario"->"No Version"->"No Entity"->"No Department"->"No LineItem"->"Useful Life (in Years)";
    ENDIF
    ENDIF
    ENDFIX
    FIX([Scenario], [Version], [Entity], [Department], "Local", "HSP_InputValue")
    CALC DIM ("TimePeriod");
    @IANCESTORS("Line Item 1");
    @ANCESTORS([AssetClass]);
    ENDFIX
    Note- "Asset Description" is a member of Text type and in this script [AssetDesc] is a global variable of StringAsNumber
    Regards,
    -KP

    Thanks for responding but my issue resolved, it was a Space in the member name.
    -KP

Maybe you are looking for