"Circular reference"  dont work in Numbers????

I am an OLD Excel-user:) My big spreadsheets worked VERY-good there; even those which are full of "circulare references" it could handle.
And now I have changed to Numbers and have transferred my spreadsheet from Excel to Numbers.
The simple spreadsheets works very fine in Numbers too.
But not my big spreadsheets with those "circulare references" - I get a LOTS of error-messages there.
- I used nearly all my holiday in trying to handle those "circulare references":::::::::: sooooo I am hoping that someone kind/CLEVER person inhere might be able to help me - to tell me how to handle it....:)
TX a lot.....

Hello
It's not a bug, it's a choice.
The engineers choose to treat a circular ref as an error.
I know that some others made an other choice but I am unable to tell which is right.
On the forum, we are not Apple employees but users trying to help other users. So I doubt that some one may help you here.
Just a track, maybe you may use the ISERR() function to intercept the oddity but you will not be able to change the standard behaviour: a cell is not allowed to use it's contents in calculations.
The best thing to do is:
*Go to "Provide Numbers Feedback" in the "Numbers" menu*, describe what you wish.
Then, cross your fingers, and wait for iWork'09
Yvan KOENIG (from FRANCE mercredi 2 janvier 2008 15:52:49)

Similar Messages

  • Phantom circular reference errors in spreadsheet

    I'm getting phantom circular reference errors in one of my Appleworks spreadsheets.
    I'm trying to compute the average of several sets of pairs of numbers, I have max of three pairs per line, and I'm using COUNT to determine how many pairs are present. I'm getting "can't resolve circular reference" errors occasionally when I fill down and add data for a new line, even though there aren't any circular references.
    Columns
    A= date, B=average X, C=averageY, D=number of pairs for this line
    E F = first pair, G H = second pair, I J = third pair.
    The second and third pair don't occur every day.
    These are the formulas I'm using,
    B average_X =(E_line# + G_line# + Iline#)/Dline#
    C average_Y =(F_line# + H_line# + Jline#)/Dline#
    D numPairs =COUNT(Eline#...Jline#)/2
    I add a new line each day.
    Its worked just fine until I went over 100 lines and now I occasionally get "can't resolve circular reference" erros, and the calculation cells, but there AREN'T any circular references.
    Anyone have any idea whats going on?

    I'm using AW 6.2.7 I'm on OS X 10.3.9
    I tried it with removing the AVERAGE and COUNT functions and it still happens.
    Seems like its somehow related to any references to columns J and K, even if there's no data in those cells, and no references to other cells.
    Its related to the COUNT function.
    If I drop off the last two columns it all seems to work ok.
    =(F153+H153)/(E153/2)
    where E153 is =COUNT(F153..I153)
    But if I try to use the last pair (columns J and K) it gets errors
    =(F153H153I153)/(E153/2)
    where E153 is =COUNT(F153..K153)
    DOES the COUNT function have a limitation to how many cells it can reference?
    It seems like for some reason the J column is corrupted. sometimes if there is any number in colum J it gets "circular reference error" EVEN though there is NO circulare reference only a number.
    BUT when I delete the number from Column J the error goes away.

  • Why can't I clear a spreadsheet cell marked as having a circular reference?

    I have a spreadsheet cell, FH67, with the formula " =30*FG67/sum(FG38..FG670) " that is marked as a circular reference. All cells referred to are either numbers or are the formula " = FD40*FE40 ". This should not be a circular reference! This same formula occurs in about every 5th column without any circular reference being noted.
    The real problem is that I cannot alter that cell in any way without the rotating round ball appearing and then nothing can be done until I force quit AppleWorks.
    I assume that something has corrupted the cell. How can I correct the problem?
    iBook   Mac OS X (10.3.9)  
    iBook   Mac OS X (10.3.9)  

    Welcome to Apple Discussions
    It looks like a circular reference to me. The cell FG67 to be divided is also in the sum (FG38 through FG670). But I'll let you sort that out.
    I don't get the spinning beach ball/lollipop when I accidentally create a circular reference, so I doubt that's the cause. The usual cause of that is a full Recent Items folder. Of course, any time you force quit AppleWorks, some corruption of the preferences is likely. First I suggest you check the Recent Items & then delete the AppleWorks preferences before trying that spreadsheet again.
    Some user tips for more information on Recent Items & AppleWorks preferences:
    AppleWorks slow? Spinning ball appears?
    Recent items not visible/updated
    AppleWorks has stopped working correctly

  • How to check circular reference in data of millions of rows

    Hi all,
    I am new as an oracle developer.
    I have a table(say table1) of hierarchical data with columns child_id and parent_id. The table has around 0.5 million records. There are around 0.2 million root level records are present.
    I need to update some (the number variies on different conditions, might differ from 50K to 0.4 million) of the parent_ids from other table only if that do not cause any circular reference in data of table1.
    I am using Oracle9i.
    The approach I have tried is:
    I copied all data from table1 to a work table table3. Update the parent_id on columns that matches the condition and updated a column source_table to table2.
    I copied all the child_id from table2 that are to be updated into another table table4 and built tree for each of those childs. If it builds the tree successfully updated a column is_circular in the table3 to 0 and then deleted the child_id from table4.
    This whole process needs to run recursively until no tree is built successfully in an iteration.
    But this process is running slow and at the rate it is executing it would run for days for the 0.3 million records.
    Please suggest a better way to do this.
    The code I am using is :
    INSERT /*+ append parallel (target,5) */
    INTO table3 target
    select /*+ parallel (src,5) */
    child_id, parent_id, 'table1' source_table,null
    from table1 src;
    INSERT INTO table4
    select distinct child_id, parent_id
    from table2
    where status_cd is null;
    commit;
    Update dtable3 a
    set (parent_id,source_table) = (select parent_id,'table2' source_table
    from table4 b
    where b.child_id = a.child_id);
    WHILE v_loop_limit<>v_new_count
    LOOP
    select count(1)
    into v_loop_limit
         from table4;
    -+-----------------------------------------------------------
    --| You need to actually traverse the tree in order to
    --| detect circular dependencies.
    +-----------------------------------------------------------           
    For i in 1 .. v_new_count
    BEGIN
    select child_id
    into v_child_id from(
    select child_id, row_number() over (order by child_id) pri from table4)
    where pri = i;
    SELECT COUNT (*) cnt
    INTO v_cnt
    FROM table3 dl
    START WITH dl.child_id = v_child_id
    CONNECT BY PRIOR dl.child_id = dl.parent_id ;
    UPDATE table3SET is_circular = '0'
    where child_id= v_child_id
    and source_table = 'table2';
    delete from table3
    where child_id = v_child_id;
    select count(1)
    into v_new_count
         from table4;
    COMMIT;
    EXCEPTION WHEN e_infinite_loop
    THEN dbms_output.put_line ('Loop detected!'||v_child_id);
    WHEN OTHERS THEN
         dbms_output.put_line ('Other Exceptions!');
    END;
    END LOOP;
    END LOOP;
    Thanks & Regards,
    Ruchira

    Hello,
    First off, if you're so new to a technology why do you brush off the first thing an experienced, recognized "guru" tells you? Take out that WHEN OTHERS ! It is a bug in your code, period.
    Secondly, here is some code to try. Notice that the result depends on what order you do the updates, that's why I run the same code twice but in ASCENDING or DESCENDING order. You can get a circular reference from a PAIR of updates, and whichever comes second is the "bad" one.drop table tab1;
    create table TAB1(PARENT_ID number, CHILD_ID number);
    create index I1 on TAB1(CHILD_ID);
    create index I2 on TAB1(PARENT_ID);
    drop table tab2;
    create table TAB2(PARENT_NEW number, CHILD_ID number);
    insert into TAB1 values (1,2);
    insert into TAB1 values (1,3);
    insert into tab1 values (2,4);
    insert into TAB1 values (3,5);
    commit;
    insert into TAB2 values(4,3);
    insert into TAB2 values(3,2);
    commit;
    begin
    for REC in (select * from TAB2 order by child_id ASC) LOOP
      merge into TAB1 O
      using (select rec.child_id child_id, rec.parent_new parent_new from dual) n
      on (O.CHILD_ID = N.CHILD_ID)
      when matched then update set PARENT_ID = PARENT_NEW
      where (select COUNT(*) from TAB1
        where PARENT_ID = n.CHILD_ID
        start with CHILD_ID = n.PARENT_NEW
        connect by CHILD_ID = prior PARENT_ID
        and prior PARENT_ID <> n.CHILD_ID) = 0;
    end LOOP;
    end;
    select distinct * from TAB1
    connect by PARENT_ID = prior CHILD_ID
    order by 1, 2;
    rollback;
    begin
    for REC in (select * from TAB2 order by child_id DESC) LOOP
      merge into TAB1 O
      using (select rec.child_id child_id, rec.parent_new parent_new from dual) n
      on (O.CHILD_ID = N.CHILD_ID)
      when matched then update set PARENT_ID = PARENT_NEW
      where (select COUNT(*) from TAB1
        where PARENT_ID = n.CHILD_ID
        start with CHILD_ID = n.PARENT_NEW
        connect by CHILD_ID = prior PARENT_ID
        and prior PARENT_ID <> n.CHILD_ID) = 0;
    end LOOP;
    end;
    select distinct * from TAB1
    connect by PARENT_ID = prior CHILD_ID
    order by 1, 2;One last thing, be sure and have indexes on child_id and parent_id in your main table!

  • Circular reference detected while serializing

    I have been trying hard to get this resolved this, but haven't reached to any conclusion.
    Here is my situation.
    I have two entities called Parent and Child, where parent has a refernce to many child and child has one parent so inturn there is OneToMany(Bidirectional) relationship between them. When i expose this as a webservice I get the following exception :
    <faultstring>Internal Server Error (circular reference detected while serializing: com.thoughtclicks.Parent)</faultstring>
    This error occurs incase i expose the service as Document/Literal, incase i expose this service as RPC Encoded then this exception doesn�t occurs and everything is fine, but Axis2 doesn;t support client generation for RPC/Encoded so again a problem.
    Also, I have already tried putting @XMLTransient annotation on getChild() of the Parent class, but it doesn�t help and i continue getting the same error.
    Let me know if there is a work around for this solution.
    Any pointers are highly appreciated.
    Thanks,
    Rahul

    Hello,
    You might want to post this in the JDev/ADF forum, as it is not related to TopLink/JPA. The error seems to indicate that you are getting the problem because it is finding Location has a reference to an association that has a reference back to the same location, causing a problem when creating the copies for serialization. I am not familar with this problem, but there is likely a way to mark one of these references as transient to the serialization process so that it is no longer a loop - yet can still be used in your object model and in JPA. Something like @XmlTransient for JAXB.
    Best Regards,
    Chris

  • Circular reference on VPD

    Hi All,
    I have implemented a VPD and added policies to Table_A and Table_B.
    The policy function of Table_A returns a predicate like this: EXISTS (SELECT 1 FROM TABLE_B WHERE TABLE_B.COLUMN_1 = TABLE_A.COLUMN_1)
    And the policy function of Table_B returns a predicate like this: EXISTS (SELECT 1 FROM USER_POSSIBLE_VALUES WHERE USER_POSSIBLE_VALUES.USER = sys_context('ctxA','user') AND USER_POSSIBLE_VALUES.CD_VALUE = TABLE_B.CD_VALUE)
    So, when I make a query on Table_A, its policy activates Table_B policy and it filters the result.
    And when I make a query on Table_B, its own policy filters the result.
    The problem is that I had to change the predicate of table_B policy and put a reference to table_A in it, and now I have a problem of circular reference.
    I need this reference to table_A in Table_B policy. Is there a way to prevent Table_A policy from being activated when Table_A is used inside Table_B policy?
    I dont want to drop the policy, I just want to bypass Table_A policy when used in Table_B policy.
    I'm using Oracle 9i.
    Thank you!

    We ran into the same issues. Basically you need to design policies that depend only on columns in the table the policy is written against, on contexts, and/or on global variables (package spec variables) or you can run into the issue where the filter condition depends on a table with a policy that is already in the chain of table policies involved in the query when you use queries on other tables in the policy. Unless the target table of the policy is pretty much not involved in joins to any of the tables you are restricting via policies.
    We managed to replace a detail table with a view that did the filtering of the detail rows based on the join condition to the header which was filtered by a polciy. That is, if you eliminate the header rows via a policy and then join to the detail you have probably already filted the detail rows since detail rows will not be returned to header rows that have already been filtered out of the query.
    HTH -- Mark D Powell --

  • Circular reference during serialization error

    I am getting the following error when invoking an operation on my web service that returns a 'Make' object:
    ERROR OWS-04046 circular reference detected while serializing: com.edmunds.vehicle.definition.Make circular reference detected while serializing: com.edmunds.vehicle.definition.Make
    I am running oc4j-101310.
    I can successfully call a 'createMake' operation as it returns 'void' so i know the WS is deployed correctly. The only values I am using to create the make are "Make.name" & "Manufacturer.name" so there isn't much to it. I know there are object graphs with 'models' and a parent reference to 'Manufacturer so I don't know if this has anything to do with it.
    One weird thing is that this worked the first time i deployed it but then started breaking on subsequent re-deployments (maybe I'm smoking crack)...
    Any help is appreciated!!
    Make object:
    public class Make implements Serializable {
    private Long id;
    private Set models;
    private String name;
    private Manufacturer manufacturer;
    public Set getModels() {
    return models;
    public void setModels(Set models) {
    this.models = models;
    public void setName(String name) {
    this.name = name;
    public String getName() {
    return name;
    public void setManufacturer(Manufacturer manufacturer) {
    this.manufacturer = manufacturer;
    public Manufacturer getManufacturer() {
    return manufacturer;
    public void setId(Long id) {
    this.id = id;
    public Long getId() {
    return id;
    Here is the SOAP request:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.matchbox.edmunds.com/">
    <soapenv:Header/>
    <soapenv:Body>
    <ws:findMakeElement>
    <ws:Long_1>22</ws:Long_1>
    </ws:findMakeElement>
    </soapenv:Body>
    </soapenv:Envelope>
    Here is the SOAP response:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns0="http://ws.matchbox.edmunds.com/" xmlns:ns1="http://definition.vehicle.edmunds.com/" xmlns:ns2="http://www.oracle.com/webservices/internal/literal" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <env:Body>
    <env:Fault>
    <faultcode>env:Server</faultcode>
    <faultstring>Internal Server Error (circular reference detected while serializing: com.edmunds.vehicle.definition.Make)</faultstring>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    Here is my WSDL:
    <?xml version="1.0" encoding="UTF-8" ?>
    <definitions
    name="VehicleService"
    targetNamespace="http://ws.matchbox.edmunds.com/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://ws.matchbox.edmunds.com/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:tns0="http://definition.vehicle.edmunds.com/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns1="http://www.oracle.com/webservices/internal/literal"
    >
    <types>
    <schema elementFormDefault="qualified" targetNamespace="http://definition.vehicle.edmunds.com/"
    xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://www.oracle.com/webservices/internal/literal"
    xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://definition.vehicle.edmunds.com/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <import namespace="http://ws.matchbox.edmunds.com/"/>
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <complexType name="Make">
    <sequence>
    <element name="manufacturer" nillable="true" type="tns:Manufacturer"/>
    <element name="models" nillable="true" type="ns1:set"/>
    <element name="name" nillable="true" type="string"/>
    <element name="id" nillable="true" type="long"/>
    </sequence>
    </complexType>
    <complexType name="Manufacturer">
    <sequence>
    <element name="makes" nillable="true" type="ns1:set"/>
    <element name="name" nillable="true" type="string"/>
    <element name="id" nillable="true" type="long"/>
    </sequence>
    </complexType>
    </schema>
    <schema elementFormDefault="qualified" targetNamespace="http://www.oracle.com/webservices/internal/literal"
    xmlns="http://www.w3.org/2001/XMLSchema" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:tns="http://www.oracle.com/webservices/internal/literal" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <import namespace="http://ws.matchbox.edmunds.com/"/>
    <import namespace="http://definition.vehicle.edmunds.com/"/>
    <complexType name="set">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element maxOccurs="unbounded" minOccurs="0" name="item" type="anyType"/>
    </sequence>
    </complexType>
    </schema>
    <schema elementFormDefault="qualified" targetNamespace="http://ws.matchbox.edmunds.com/"
    xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://definition.vehicle.edmunds.com/"
    xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://ws.matchbox.edmunds.com/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <import namespace="http://www.oracle.com/webservices/internal/literal"/>
    <import namespace="http://definition.vehicle.edmunds.com/"/>
    <element name="createMakeElement">
    <complexType>
    <sequence>
    <element name="String_1" nillable="true" type="string"/>
    <element name="String_2" nillable="true" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="createMakeResponseElement">
    <complexType>
    <sequence/>
    </complexType>
    </element>
    <element name="findMakeElement">
    <complexType>
    <sequence>
    <element name="Long_1" nillable="true" type="long"/>
    </sequence>
    </complexType>
    </element>
    <element name="findMakeResponseElement">
    <complexType>
    <sequence>
    <element name="result" nillable="true" type="ns1:Make"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <message name="RemoteTestVehicleServiceWS_createMake">
    <part name="parameters" element="tns:createMakeElement"/>
    </message>
    <message name="RemoteTestVehicleServiceWS_createMakeResponse">
    <part name="parameters" element="tns:createMakeResponseElement"/>
    </message>
    <message name="RemoteTestVehicleServiceWS_findMake">
    <part name="parameters" element="tns:findMakeElement"/>
    </message>
    <message name="RemoteTestVehicleServiceWS_findMakeResponse">
    <part name="parameters" element="tns:findMakeResponseElement"/>
    </message>
    <portType name="RemoteTestVehicleServiceWS">
    <operation name="createMake">
    <input message="tns:RemoteTestVehicleServiceWS_createMake"/>
    <output message="tns:RemoteTestVehicleServiceWS_createMakeResponse"/>
    </operation>
    <operation name="findMake">
    <input message="tns:RemoteTestVehicleServiceWS_findMake"/>
    <output message="tns:RemoteTestVehicleServiceWS_findMakeResponse"/>
    </operation>
    </portType>
    <binding name="HttpSoap11Binding" type="tns:RemoteTestVehicleServiceWS">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="createMake">
    <soap:operation soapAction="http://ws.matchbox.edmunds.com//createMake"/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    <operation name="findMake">
    <soap:operation soapAction="http://ws.matchbox.edmunds.com//findMake"/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="VehicleService">
    <port name="HttpSoap11" binding="tns:HttpSoap11Binding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
    </port>
    </service>
    </definitions>

    Graph and Circular dependencies cannot be model with document-literal message format with POJO development style. You will need to invent your own model to break the cycle and uses a mechanism similar to href, as with RPC-encoded message format.
    All the best,
    -Eric

  • Arrow keys dont work on flash games

    Hi, anyone had this problem? The arrow keys dont work when I
    play flash games. Have downloaded latest version of flash (multiple
    times) and still the same problem. I load up a flash game, then can
    only use the mouse to play. Arrow keys just dont respond when used.
    Arrow keys work fine on other programs, just flash is a
    problem
    Really hope someone has had this before and knows what to do.
    Thanks for any replies.

    I had the same problem and was looking around on the net for
    help. I found a post that said to try using the numbered keypad
    instead, as in 8 is up, 2 is down, 4 is left and 6 is right. It
    worked for me so hopefully this will help you as well. :)

  • Recovery CDS dont work on new HDD

    i bought a new hard drive because my original from my laptop went to shits.
    the new hdd is in the laptop and i inserted the recovery cd from hp (they are original) and it says
    "windows loading files" and then i get an error  that says
    "The instruction at 0x77a124a9 referenced memory at 0x00000000"
    and it restarts and im back to square one.  Does my HDD need to be OEM in order for the recovery cds to work ? or am i missing a step that im not doing properly.
    Laptop info
    Product : Pavilion dv5
    S/N: {Private Information Removed}
    P/N KQ574AV
    Model # dv5t-1000
    also the main reason i want to reinstall windows vista as how it originally came with was because i cant get my webcam to work. after a clean install of win7 ultimate, i cant seem to find a driver from the hp web site that actually works right. I go under device manager and i cant even see where the webcam driver should be at. i  want to get the webcam driver to work with the OS i have installed on it right now, which is Win7 Ultimate 32-bit.  i tried to install cyberlink webcam and hp mediasmart webcam and both dont work for nothing.

    Hello,
    I'm not sure which HDD you used, but I suspect that may be the issue.  If you look at your Maintenance and Service Guide, it lists compatible part numbers and descriptions for your notebook.  The HDD section is on page 55.
    You can order these parts from HP Partsurfer
    Please let me know if this helps.
    Good luck!
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Some Object dont work after restoring it from the filesystem

    Hi !
    I have a JFrame and in this I have a JPanel.
    In the JPanel I have a JTabbedPane.
    If I store the JTabbedPane to the filesystem using ObjectOutputStream and than restore it by using the ObjectInputStream some JTextFields in the JTabbedPane dont work correct. The most Objects work okay.
    Do I have some problems with the pointer or is the reference lost ? I have 40 Objects and 2 or 3 are frozen after loading the JTabbedPane. Hmm...
    Some lines of the code:
    <code>
    // WRITE OBJECT
    if (e.getSource() == jMenuPosSpeichern)
    { try
    { ObjectOutputStream stream = new ObjectOutputStream(new FileOutputStream("c:\\test.dat"));
    stream.writeObject(jTabbedPane);
    stream.flush();
    stream.close();
    catch (IOException e9) {e9.printStackTrace();}
    // READ OBJECT
    if (e.getSource() == jMenuPosOeffnen)
    { try
    { ObjectInputStream stream = new ObjectInputStream(new FileInputStream("c:\\test.dat"));
    contentPane.remove(jTabbedPane);
    contentPane.repaint();
    jTabbedPane=(JTabbedPane)stream.readObject();
    stream.close();
    contentPane.add(jTabbedPane);
    catch (Exception e8) {e8.printStackTrace();}
    </code>

    No they are not different.
    On the first register of the JTabbedPane I have 2 JTextFields an one JComboBox. The first JTextField is frozen. After trying sometimes the second field is frozen.
    Is my way to store an object the correct way or is there a better way available ?
    The relevant fields have this line in the source.
    (code)
    ....class...
    JTextField name = new JTextField(30);
    ....constructor....
    jTabbedPane.addTab("register1",reg1);
    reg1.add(name);
    name.setBounds(170,100,200,20);
    (/code)
    All my fields I add to a Tab of a JTabbedPane and all the Field have setBounds. No difference to the other objects.
    Thx Wolfgang

  • Automate excel circular references - script logic - BPC

    Hi,
    I need to automate in BPC the calculation of financial debt that contains excel circular references, so you have to enable the calculation Automatic iterations properly to work.
    I would like to automate the process through a script logic.
    I appreciate any help or suggestions.
    Regards,
    Fernando Chávez.

    Dear Fernando Chávez,
    I just want to give you simple suggestions because I don't know your case exactly. The script logic is similiar with SQL script. You could put your logic script in default.lgf or make new file .lgf through BPC Administration Console. If you put it in default.lgf, the SAP BPC will execute it when user sent values through BPC Excel.  You also could run the script logic through Data Manager Packages, its runs depend on user execution.
    If we are talking about circular and complex formulas in Ms.Excel, I suggest you put your calculation in another worksheet and send values through BPC Excel. Before you define a script logic, the number one is you should to consider performance because its really critical.
    Kind Regards,
    Wandi Sutandi

  • Find and remove circular references.

    The reason I want to find these is that I want to minimise full GCs.
    Incremental GCs can remove object with no references, but objects with circular references require a full GC which comes at a high cost for the project I am working on and to be avoided if possible.
    So is there is a tool to help find these (so they can be broken on resources disposal or refactored out)
    It should be possible to write such a tool with refection, but I was wondering if there was one already. (google didn't help much)

    http://www.amazon.com/Garbage-Collection-Algorithms-Automatic-Management/dp/0471941484/ref=sr_1_2?ie=UTF8&s=books&qid=1223338239&sr=1-2

  • Iphone dont work

    my iphone dont work what to do ?
    i bought my iphone 5s before 8 months.
    i went to idigital store that said me i havent 1 warrenty there .
    they said me to go orange commpany in israel and they say that my iphone
    wont prepare there
    i dont know what to do
    i had all my money in this iphone and i need it immedditly.
    i need your helpful how i cheak my iphone and prepare it /
    thanks you

    snans wrote:
    my iphone dont work what to do ? - what doesn't work - maybe add some details
    i bought my iphone 5s before 8 months. - where did you buy this phone
    i went to idigital store that said me i havent 1 warrenty there . not international warranty only in the country the phone was purchased.
    they said me to go orange commpany in israel and they say that my iphone
    wont prepare there
    i dont know what to do
    i had all my money in this iphone and i need it immedditly.
    i need your helpful how i cheak my iphone and prepare it /
    thanks you

  • Speakers dont work

    My speakers dont work , headphone jacks do

    Try reset SMC
    see
    http://support.apple.com/kb/ht3964
    and Pram
    http://support.apple.com/kb/ht1379

  • Facetime dont work

    my facetime dont work whith lion

    Hello, friends.
    In order to run FaceTime on Lion, solving the server registration issue, you must create a new password key in Keychain, with the following parameters:
    Name: com.apple.facetime: registrationV1
    Account: registrationV1
    Where: com.apple.facetime
    Then, restart your Mac.
    Best regards!

Maybe you are looking for

  • I'm trying to connect my 23" Cinema display to my iMac, need help with connector cable.

    I'm trying to connect my 23" Cinema Display monitor to my iMac. The adaptor cable I ordered came with a female, I need a male adaptor. Any ideas where I might find one? I purchased the BlueRigger Mini Displayport Male to DVI Female Adapter Cable.

  • Trouble connecting to external USB hard disk through PC

    I've had AirPort Extreme 802.11n for a few months which I use to connect to a printer and to share a USB hard disk between my eMac and my thinkpad. For a while everything was working beautifully. The disk showed up on my eMac desktop and in my Window

  • Editing photos?

    i recently bought a new macbook c2d and i have what i think to be a simple question although i cant figure it out for the life of me. how do u edit photos? i used iphoto but cant figure out how to add text and such to photos. surely this is an option

  • Opatch Failed (Oracle Database Lite 10g 10.3.0.3)

    Hi all, I am Using Oracle Database 10g R2 10.2.0.4.0 and Oracle Database Lite 10g R3 10.3.0.3 On windows 2003 Server SP2 32 Bit. While Applying OPatch in my Lite database i got this error message and the Opatch Code is p12677282_103030_Generic Please

  • Can I make iPhoto metadata keywords viewable for my PC friends?

    When I export JPEGs from iPhoto 7 and burn them to a CD, they keep all the keywords I have assigned to them as long as I read the CD on a Mac, but if I give the CD to someone using a PC, all the keywords are gone. I've read somewhere that Apple doesn