Problem with Object removal...

Greetings,
In a game I'm working on, I have two levels so far. Level0 is the menu, Level1 is the first game level. I wrote a custom class that calls lots of other custom classes to manage all the MovieClips (and their children, and operate on global variables) on Level 1:
var level1:Level1 = new Level1(player,bkg1,wayback1,waywayback1,player.frontLeg,player.backLeg,player.barrel);
Getting into Level1 works fine and with a SHIFT-M you can remove all the Level1 MovieClips from the display list and get back to the menu.
The problem is that when I go back to Level1 from the menu after having been on Level1 once already, it is clear from the way the MovieClips are behaving that they are now being acted on by a second 'level1' object. If I go back a third time, the MovieClips are acted on by a third 'level1' object, etc.
I've been reading threads, and then seem to be saying that I need to remove all references to this object and then it will be garbage collected.  I'm removing all the MovieClips the 'Level1' class operates on, what else do I need to do to get rid of it?
Thanks,
Jeremy

HI,
i've set up a mail domain "domain.com.pl" and then
using delgated admin web acces i've removed that
domain. The problem is that i'm not able to recreate
it back. I still have got the message: "Entry or
value already exists"
Any clue?
delegated admin just marks the domain as deleted
you need to run the imadmin domain purge command to
actually delete the domain info from the directory
for more, see:
http://docs.sun.com/source/816-6020-10/da_cmds.htm#14694
Peter
Ps: situation is the same when you delete a user, imadmin user purge should be run to actually remove the user from the directory

Similar Messages

  • Problem with object view with primary-key based object identifier

    Hello!
    I met such problem.
    t1 is persinstent-capable class:
    class t1 : public PObject { .... };
    T1OV is object view, based on object table T1OT
    I1 is primary key of the table T1OT.
    Next code:
    t1* t = new (conn, "T1OV") t1(...);
    conn->commit();
    try
    t->markDelete();
    conn->commit(); // exception throws here
    Works fine if T1OV defined as:
    create view t1ov of t1 with object identifier default
    as select * from t1ot;
    And throws an exception
    "ORA-22883: object deletion failed"
    if:
    create view t1ov of t1 with object identifier (I1)
    as select * from t1ot;
    Such problem also occurs when object view is based on relational table/view (OID is primary-key based).
    Also it occurs when
    t->markModified() used insted of t->markDelete()
    I am using Oracle 9i second release for windows and
    MS VC++
    Thank You

    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_85a.htm#2065512
    You can specify constraints on views and object views. You define the constraint at the view level using the out_of_line_constraint clause. You define the constraint as part of column or attribute specification using the inline_constraint clause after the appropriate alias.
    Oracle does not enforce view constraints. However, operations on views are subject to the integrity constraints defined on the underlying base tables. This means that you can enforce constraints on views through constraints on base tables.
    Restrictions on View Constraints
    View constraints are a subset of table constraints and are subject to the following restrictions:
    You can specify only unique, primary key, and foreign key constraints on views. However, you can define the view using the WITH CHECK OPTION clause, which is equivalent to specifying a check constraint for the view.
    Because view constraints are not enforced directly, you cannot specify INITIALLY DEFERRED or DEFERRABLE.
    View constraints are supported only in DISABLE NOVALIDATE mode. You must specify the keywords DISABLE NOVALIDATE when you declare the view constraint, and you cannot specify any other mode.
    You cannot specify the using_index_clause, the exceptions_clause clause, or the ON DELETE clause of the references_clause.
    You cannot define view constraints on attributes of an object column.
    Rgds.

  • Serious problem with PriorityQueue: remove unexpected elment in the queue

    I write a PriorityQueue with my own comparator. The queue is order on BDVertex.distance. When I try to remove an element in the queue, an unexpected is removed.
    public class BDVertex
    public String getLabel()
    return vertexLabel;
    public int getDistance()
    return distance;
    public class MyComparator implements Comparator
    public MyComparator()
    public int compare(Object a, Object b)
    if(a == null || b == null)
    throw new IllegalArgumentException("Null Argument");
    try
    BDVertex v1 = ((BDVertex) a) ;
    BDVertex v2 = ((BDVertex) b) ;
    return Integer.valueOf(v1.getDistance()).compareTo(Integer.valueOf(v2.getDistance()));
    catch(ClassCastException e)
    throw new IllegalArgumentException("Argument not an BDVertex");
    public class DijkstraShortestPath
    Q = new PriorityQueue<BDVertex>(10, new MyComparator());
    System.out.println("Q1: " +Q);
    System.out.println("t's label aaaa: "+t.getLabel());
    for(BDVertex a : Q)
    if(a.getLabel().equals(t.getLabel()))
    boolean ttt;
    ttt=Q.remove(a); // **********problem is here
    System.out.println("a's label " a.getLabel()"::"+ttt);
    System.out.println("Q2: " +Q);
    Q.add(t);
    System.out.println("Q3: " +Q);
    output is:
    Q1: [Vertex: e, Vertex: h, Vertex: i, Vertex: z]
    t's label aaaa: h
    a's label h::true
    Q2: [Vertex: h, Vertex: z, Vertex: i]
    Q3: [Vertex: h, Vertex: h, Vertex: i, Vertex: z]
    I want to remove vertex h, but it is still in the priorityqueue, and vertex e is remove unexpectedly.
    Can anyone tell me why?? tell me if you need more details. many many thanks

    Thank you for your reply.
    The method you mentioned is a part of a class that is going to implement the Dijkstra shortest path algorithm. A vertex represents a node in a graph. And the PriorityQueue is ordered by BDVertex.distance that is the distance to origin.
    I am not going to remove the first element in the priorityqueue. Because I use BDVertex.distance to order the PriorityQueue, the order of every element will not be changed when I update their distance. To get the priorityqueue re-ordered again, I have to remove the element that is to be updated and add it to the prioirtyqueue again. So I have to use PriorityQueue.remove(). In JDK1.5, the description of this method is Removes a single instance of the specified element from this queue, if it is present.
    Or any other methods to keep the priorityqueue ordered based on my case.
    Thanks a lot.
    Frank

  • Problem with inserting/removing integer in a specified index

    I have an IntList that I am adding methods to and an IntListTest driver that allows me to add those options to test. I am having difficulty adding the two methods:
    public void removeAt() - removes the value at a specified location at given index with consideration of the size of the list when user enters a valid position
    public void insertAt(int index, int newValue) - inserts integer and puts it in the specified index of list however...i also have to take into consideration the size of the list as the user enters a valid position
    I started on the insertAt(int index, int newValue) method:
    // **Inserts an element to the list at a specified position
    public void insertAt(int index, int newValue)
    IntNode newnode = new IntNode(newValue, null);
    for (int index =0; index < count; index++)
    if(list[index] == newValue) //error occurs, brackets pertain to arrays, correct?
    //if list is empty, this will be the only node in it
    if (list == null)
    list = newnode;
    else
    //temp point directed to the last thing on list, but want to be
    //able to insert any where, specified location
    IntNode temp = list;
    while (temp.next != null)
    temp = temp.next;
    //link new node into list and insert
    temp.next = newnode;
    count++;
    }First off, how do I write the method so that the user specifies a value at a given index and is located...From what I understand, this portion of the insertAt method is stating that the temp point will go directly to the last index:
    //temp point directed to the last thing on list, but want to be
    //able to insert any where, specified location
    IntNode temp = list;
    while (temp.next != null)
    temp = temp.next;Here's where I am having complications, because I don't know where to go from here. I want the method to be able to insert at any specified index rather than just the last...I will use the insertAt method as an example for my removeAt method, so hopefully I can get input from anyone willing to help...Thanks - using textpad editor with java 1.5 compiler
    Onip28

    This problem/question pertains to making the necessary adjustments with the "next" values in the associated nodes. I replied to your other posting, and once again, thank for your reply and help. However, the code posted for today is not the changed and saved code as expected, but the changed have been noted and changed. Thanks again...
    Onip28

  • Problem with object state...

    Hi guys
    So I have this grid with 25 pictures.
    And I would like to use each of these pictures as a button. This button will trigger a frame with text in the center of the grid, like so :
    The X close the text frame and the user go back to the grid.
    But, I have 2 problems. I can mak a object state of the text frame and the button triggers one state (open/close for exemple) and it work. But if I click on the second square without closing the first text frame, the text frame linked to the first square is still there, underneath...
    Is there a way to 1 : a click triggers the texte square link to it AND close all the other
    Or is there an easier way to do it without object state?
    Thanks

    You have the grid of pics as your background. Then buld a state for each photo/description.
    If you have have 16 pictures  you'd build 16 different states for them. Combine them all into one MSO.
    You'll need to put the buttons into each state to make it work and you'll need one state with only the buttons with no fill or stroke over the background grid.
    You'll need to experiment to decide if you want the buttons to be live for all of the images in each state. It's lots of buttons and there's no automated way to do it, but it works well and avoids the problem that you're having now.
    Bob

  • Problem with Object returning previously set values, not current vlaues

    Please help if you can. I can send the full code directly to people if they wish.
    My problem is I enter title details for a book via an AWT GUI. When the user clicks the OK button it should display a new screen with the values just entered by the user. I added debug lines and found that the newInstance method has the values I set and the setObject created an object that was not null.
    However the first time you submit the details when it tries to get the object to display them back to the user it is null. However when you try and enter the details for a second time it will display the details entered on your first entry. Likewise if you went to enter a third title and put blank details in it would display the second set of details back to the user when they click OK.
    I'm very confused as to how it when I fetch an object I've just set it is out of step and points to previous values or null when used for the first time.
    Right onto the code.
    ----Shop.class - contains
    public static Object
    getObject()
    if ( save_ == null)
    System.out.println("Return save_ but it is null");
    return save_;
    public static void
    setObject( Object save )
    save_ = save;
    if ( save == null)
    System.out.println("Just taken save but it is null");
    if ( save_ == null)
    System.out.println("Just set save_ but it is null");
    ----AddTitlePanel.class contains
    private void okButtonActionPerformed(ActionEvent evt)
    ConfirmAddTitlePanel confirmAddTitlePanel =
    new ConfirmAddTitlePanel();
    // Gets the textField values here
    model.Title mss = model.Title.newInstance( fullISBN,
    ISBN,
    title,
    author,
    copiesInStock,
    price );
    model.Shop.setObject( mss );
    // Fetch reference to Graphical so buttons can use it to
    // display panels
    graph = model.Shop.getGraphical();
    graph.display( confirmAddTitlePanel );
    This creates a newInstance of Title and creates a copy using setObject when the user clicks on "OK" button. It also calls the ConfirmAddTitlePanel.class to display the details back to the user.
    ----ConfirmAddTitlePanel.class contains:
    private void
    setValues() throws NullPointerException
    model.Title mss = (model.Title) model.Shop.getObject();
    if ( mss != null )
    model.Field[] titleDetails = mss.getFullDetails();
    //model.Field[] titleDetails = model.Title.getFullDetails();
    fullISBNTextField.setText( titleDetails[0].asString() );
    //ISBNTextField.setText( titleDetails[1].asString() );
    titleTextField.setText( titleDetails[2].asString() );
    authorTextField.setText( titleDetails[3].asString() );
    copiesInStockTextField.setText( titleDetails[4].asString() );
    priceTextField.setText( titleDetails[5].asString() );
    else
    System.out.println( "\nMSS = null" );
    This is getting the Object back that we just set and fetching its details to display to the user by populating the TextFields.
    As I say first time you enter the details and click OK it displays the above panel and outputs "MSS = null" and cannot populate the fields. When you enter the next set of title details and click "OK" getObject is no longer setting mss to null but the values fetched to set the TextFields is the data entered for the first title and not the details just entered.
    ----Title.class contains:
    public static Title
    newInstance( String fullISBN,
    String ISBN,
    String title,
    String author,
    int copiesInStock,
    int price )
    Title atitle = new Title( fullISBN,
    ISBN,
    title,
    author,
    copiesInStock,
    price );
    System.out.println("Created new object instance Title\n");
    System.out.println( "FullISBN = " + getFullISBN() );
    System.out.println( "ISBN = " + getISBN() );
    System.out.println( "Title = " + getTitle() );
    System.out.println( "Author = " + getAuthor() );
    System.out.println( "Copies = " + getCopiesInStock() );
    System.out.println( "Price = " + getPrice() );
    return atitle;
    I'm really stuck and if I solve this I should hopefully be able to make progress again. I've spent a day and a half on it and I really need some help. Thanks in advance.
    Mark.

    Hi Mark:
    Have a look of the method okButtonActionPerformed:
            private void okButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okButtonActionPerformed
             // if you create the confirmAddTitlePanel here, the value of
             // Shop.save_ is null at this moment (first time), becaouse you
             // call the methode setValues() in the constructor, bevore you've
             // called the method Shop.setObject(..), which has to initialize
             // the variable Shop.save_!!!
             // I think, you have to create confirmAddTitlePanel after call of
             // method Shop.setObject(...)!
             // ConfirmAddTitlePanel confirmAddTitlePanel = new ConfirmAddTitlePanel();
            ConfirmAddTitlePanel confirmAddTitlePanel = null;
            String fullISBN            = fullISBNTextField.getText();
            String ISBN                = "Test String";
            String title               = titleTextField.getText();
            String author              = authorTextField.getText();
            String copiesInStockString = copiesInStockTextField.getText();
            String priceString         = priceTextField.getText();
            int copiesInStock          = 0;
            int price                  = 0;
            try
                copiesInStock = Integer.parseInt( copiesInStockString );
            catch ( NumberFormatException e )
                // replace with error output, place in status bar or pop-up dialog
                // move focus to copies field
            try
               price = Integer.parseInt( priceString );
            catch ( NumberFormatException e )
                // replace with error output, place in status bar or pop-up dialog
                // move focus to price field
            model.Title mss = model.Title.newInstance( fullISBN,
                                     ISBN,
                                     title,
                                     author,
                                     copiesInStock,
                                     price );
            model.Shop.setObject( mss );
            // ---------- now, the Shop.save_ has the value != null ----------        
            confirmAddTitlePanel = new ConfirmAddTitlePanel();     
            // Fetch reference to Graphical so buttons can use it to
            // display panels
            graph = model.Shop.getGraphical();
            graph.display( confirmAddTitlePanel );
        }//GEN-LAST:event_okButtonActionPerformedI hope, I have understund your program-logic corectly and it will help you.
    Best Regards.

  • Problem with objective-c troubleShooting

    Hi there,
    i'm all new to mac & iOS developement and am getting startet by working throught what appeared to be a great book "Einstieg in Objective-C 2.0 and Cocoa inkl iPhone programming".
    what im doing right now is creating an Weblog App for the iPhone by following stepBy step coding and interface instructions by this book.
    problem: everything seems to work just fine, i can compile and everything. but one funktion does not work which is creating a new article.
    the errorcode looks like that:
    +2011-01-25 14:59:28.775 WeblogClientTouch[12682:207] Fehler beim Anlegen eines neuen Artikels+
    and is produced by an NSLog:
    if (![managedObjectContext save:&error]) {
    NSLog(@"Fehler beim Anlegen eines neuen Artikels");
    so apparently the saving of a new entity 'article' does not work. here some code snippets that might help, first the function that creates a new article in which the error occurs:
    - (IBAction)neuerArtikel
    //erzeuge artikel
    NSEntityDescription *artikelDescription = [[fetchedResultsController fetchRequest]entity];
    NSManagedObject *newArtikel = [NSEntityDescription insertNewObjectForEntityForName:[artikelDescription name]
    inManagedObjectContext:managedObjectContext];
    //befülle artikel mit standardwerten
    [newArtikel setValue:NSLocalizedString(@"Neuer Artikel", nil)
    forKey:@"titel"];
    [newArtikel setValue:[NSDate date] forKey:@"datum"];
    [newArtikel setValue:@"Markus" forKey:@"autor"];
    //speichere artikel
    NSError *error;
    if (![managedObjectContext save:&error]) {
    NSLog(@"Fehler beim Anlegen eines neuen Artikels");
    //Tableview aktualisieren
    [self.tableView reloadData];
    in my datamodel i have only one entity named "Artikel" with the attributes: autor, titel, datum, inhalt.
    i would be very glad about some tips, because i've been trying to solve the problem for nearly 3 hours now and i dont think it can be that tricky..
    Message was edited by: sfluecki
    Message was edited by: sfluecki

    allRight.
    i got it working so far that there's no more errors.
    --> i can now klick on 'new article' without any errors, but my tableView does not show the new allocated articles
    --> after i restart the app (rebuild, reRun in simulator) the previously added articles are showing in the tableView.
    --> somehow my tableView does just update itself whilst starting the app.
    in the end of the 'addNewArticle' function i have the following:
    [self.tableView reloadData];
    the tableView itself is defined by the following:
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    NSArray *sections = [fetchedResultsController sections];
    NSUInteger count = 0;
    if ([sections count]) {
    id <NSFetchedResultsSectionInfo> sectionInfo = [sections objectAtIndex:section];
    count = [sectionInfo numberOfObjects];
    return count;
    and
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    static NSString *CellIdentifier = @"Cell";
    //Zelle aus dem Cache holen oder erzeugen wenn nicht orhanden
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
    cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle
    reuseIdentifier:CellIdentifier] autorelease];
    NSManagedObject *artikel = [fetchedResultsController objectAtIndexPath:indexPath];
    //Titel als haupttext der zelle
    cell.textLabel.text= [artikel valueForKey:@"titel"];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    //Autor und Name als Detailtext der Zelle
    NSDateFormatter *dateFormatter = [NSDateFormatter new];
    [dateFormatter setDateStyle:NSDateFormatterMediumStyle];
    NSString *dateString = [dateFormatter stringFromDate:[artikel valueForKey:@"datum"]];
    cell.detailTextLabel.text = [NSString stringWithFormat:NSLocalizedString(@"%@ am %@",nil), [artikel valueForKey:@"autor"], dateString];
    [dateFormatter release];
    return cell;
    whilst the function fetchedResultsController looks like this.
    - (NSFetchedResultsController *)fetchedResultsController
    if (fetchedResultsController != nil)
    return fetchedResultsController;
    //FetchRequest initialisieren
    NSFetchRequest *fetchedRequest = [NSFetchRequest new];
    NSEntityDescription *artikelDescription = [NSEntityDescription entityForName:@"Artikel"
    inManagedObjectContext:managedObjectContext];
    [fetchedRequest setEntity:artikelDescription];
    NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc]initWithKey:@"datum" ascending:NO];
    NSArray *sortDescriptors = [[NSArray alloc]initWithObjects:sortDescriptor, nil];
    [fetchedRequest setSortDescriptors:sortDescriptors];
    //FetchedResultsController initialisieren
    fetchedResultsController = [[NSFetchedResultsController alloc]initWithFetchRequest:fetchedRequest
    managedObjectContext:managedObjectContext
    sectionNameKeyPath:nil
    cacheName:@"Overview" ];
    fetchedResultsController.delegate = self;
    //aufräumen
    [fetchedRequest release];
    [sortDescriptor release];
    [sortDescriptors release];
    return fetchedResultsController;
    i'm sorry to bother you with that lot of code.. but i'm stuck here since now 8h,
    and wouldnt probably be any step further without your help in the first place,
    so thanks a lot for the first inputs =)

  • Image scaling problem with object handles

    Hi,
    I am facing scaling problem.I am using custom actionscript component called editImage.EditImage consists imageHolder a flexsprite which holds
    image.Edit Image component is uing object handles to resize the image.I am applying mask to the base image which is loaded into imageholder.
    My requirement is when I scale the editImage only the mask image should be scaled not the base image.To achieve this I am using Invert matix .With this
    the base image is not scaled but it  is zoomed to its original size.But the base image should not zoomed and it should fit to the imageholder size always. When I scale the editImage only the mask image should scale.How to solve this.Please help .
    With thanks,
    Srinivas

    Hi Viki,
    I am scaling the mask image which is attached to imageHolder.When i  scale
    the image both the images are scaled.
    If u have time to find the below link:
    http://fainducomponents.s3.amazonaws.com/EditImageExample03.html
    u work with this component by masking the editImage.If u find any solution
    for scale only mask ,plz share the same.
    thanks,
    Srinivas

  • ExternalInterface.call problem with object-orientation

    Hi
    I am using an swf inside a PDF. In a PDF-context the ExternalInterface-class works much the same as it does within a website. So far calling a function in the document-script works.
    The thing now is, that I really try to use an object-oriented approach as often as I can. In this case I have a function I could call using
    var jsCaller:Object = ExternalInterface.call("myFunction",parameters);
    This works as expected.
    However, I have now made that function a method in an object, so I can access it within JS using dot-notation: myCoolObject.myFunction(); This works as well, so the problem is not the function itself. However, the call
    var jsCaller:Object = ExternalInterface.call("myCoolObject.myFunction",parameters);
    does not work.
    This means there's either something I'm missing, or it's a limitation of ExternalInterface, or it's a limitation of externalInterface in a pdf-context.
    Anyone to enlighten me?

    If EI calls eval it should be able to resolve the object-path. However, this doesn't seem to be the case. Also note that my parameter is an array, so this probably wouldn't work, even if the syntax did.
    Anyway, I tested your syntax in my PDF, and it showed the same behaviour as before (i.e. the function in which the EI-call was placed could not be executed, and acrobat claimed there was no such function). It didn't work with my normal function, and not even with a simple console.println-statement that way. So in PDFs it definitely doesn't work like that.
    But thanks for the suggestion!

  • Oracle 9i with Forms6i (having problems with objects)

    I am using Oracle 9i server and dev 6i (forms6i).
    i have a form based on Object tables (including REF's items). when i try to insert update, delete the reocrd in the form, it gives error.
    Insert/Update/Delete failed because of OCI_22132: hexadecimal string does not corresopond to a valid REF.
    when i remove REFs items from form (not from database) then it does all functions (insert,update,delete,query).
    Actually i haved used this form with Oracle 8i and it did all functions(insert,update,delete,query). i am using the same tables and types definations in Oracle 9i but it is not working.
    Note: Insert, Update, Delete, or Query is not being done through forms when using REFs items. Others tools like sql*plus are performing the same actions very well.
    Please help.
    I will be thankful to you.
    M. Faisal.

    Not laughing here. This is a long shot, and I have almost no experience with database links, but could you maybe keep an 8.1.7 server running for the Forms 3 forms, and create database links and synonyms on the 8.1.7 server linking to the data on the 9.2 server?

  • Repair Problem with Excel Removing All But First External SQL Query Tables

    We have an Excel 2007 XLSX workbook that we created for doing some business analysis from the SQL database that contains data from our MRP system. It started as a single sheet with one data connection running a SQL query. The data comes into
    the spreadsheet as a table and there are some basic row and column sums being done.
    After getting the first version up and running without problems, we decided to add some additional sheets to the same workbook. Since each of these additional sheets had only slight variations to the SQL query and the formatting was all to be the same, we
    simply copied the first sheet and modified the data connection for each successive sheet (each copy automatically created a copy of the data connection as well). Everything seemed to be up and running properly, so we saved and closed the workbook.
    A little bit later, the same workbook was re-opened and Excel reported that "Excel found unreadable content in '<file name>'. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes." If Yes
    is clicked, then Excel indicates the repairs that were made. Only one was made for each sheet beyond the first and that was "Removed Part: /xl/queryTables/queryTable2.xml part. (External data range)". The result was that the data connection
    was deleted from every sheet other than the first and only static data left in place.
    We thought it might have actual been some corruption, so we deleted the static sheets and recreated them the same way. After saving and closing, re-opening the file resulted in the same problem. It seems that Excel is somehow saving data that it can't read
    when it opens. I would think it could be something in the SQL query, but all sheets have essentially the same SQL query, so I'm not sure why the first sheet survives. As a result, I think it must be something that it does in copying the sheet and the corresponding
    data connections, but I'm not sure.
    I think this might be some kind of bug, but would like to know if anyone else has encountered a similar problem and found a solution. A few internet searches didn't give me much to check out.
    Thanks in advance,
    indyvql

    KR,
    Thanks for your response. I don't think it applies in this case since the file was created brand new in Excel 2007 and used in the same. There was no 3rd-party program involved. I'm also not migrating from 2003 to 2010 as the stellarinfo.com article
    suggests. Some of the other suggestions there also don't make any difference as all the data links are lost on opening the worksheet, so copying and pasting doesn't do any good.
    I tried to create a simple example by creating a new workbook with a sheet with a very simple SQL query ("select * from X where a > b"), but in that example it worked fine. I'm guessing there is something key about the much more complex SQL query
    in my original file with the problem, but I'm not sure why it would only affect copies of the data connection and not the original data connection itself.
    Thanks,
    indyvql

  • Problem with object Library

    Hi
    I created object library containing some Objects and property classes.While implementation of the objects(using smart class) and property class (using property palette) to canvas or LOV,some properties not appeared to be inherited after applying smart class or property class.
    These are specially BG color and FG color.But it is working fine with some object and not working with some others.
    Can any body help me in figure out the problem.
    I am using Form builder 10g.
    Thanks in advance
    Mandeep

    i did not mean the ruler and the grid.
    There is a "forms property" called Coordinate System.
    You find it under the physical node in the property palette of your form module.
    What is the Coordinate System and important, what is the Real unit?

  • Problems with objects

    Hi all,
    I am working with JAVA, My questuin is that : Let us say A and B are two classes and
    in class A i created object for class B with new operator, and we have another class called C in this class i created object for class A, after implementation of my business logic in class C, i put class A object to NULL, so here we are removing reference to calss A object, now here does the GC cleans up the memory space of both class A and B or only class A. Cn any one clear my doubt please.

    If B and C are only referred to by A, then both will be eligible for garbage collection when A is no longer reachable.
    %

  • Easy DMS  - problem with  object linking (unicode client)

    Hi Gurus,
    I have a problem concerning linking a materialmaster to a DIR in a uniciode environment. I tested following scenarios:
    1) Easy DMS 6.00 SP10 non unicode  +  non unicode Backend  -->  no problem
    2) Easy DMS 6.00 SP10 non unicode  +  unicode Backend        -->  no problem
    3) Easy DMS 6.00 SP10 unicode        +  non unicode Backend  -->  no problem
    4) Easy DMS 6.00 SP10 unicode        +  unicode Backend         --> problem
    Following Problem appears in scenario 4:
    Our Material Number Format is ______-____-___ (6 digits - 4 digits - 3 digits), "Lexicographical" is disabled, "Leading Zeros" is enabled.
    When I type in material number "111111-2222-333" and press "check all objects and read description" Easy DMS reads the description for
    111111-2222-333 but after that easy dms changes 111111-2222-333 to 000001-1111-122 and when I try to save the DIR it tells me that 
    000001-1111-122 is not a valid material master.
    As I mentioned this only appears with the unicode client + unicode backend. Any Ideas?

    Hi David,
    please tell us which version of EasyDMS you use currently. If you do not use EasyDMS 6.00 SP10 I would kindly ask you to see SAP note 1105699 and download this SP from the Service Marketplace.
    Further please check if you have maintained the object link customizing correclty in your backend system. Therefore please see the information in the SDN WIKI area for DMS under https://www.sdn.sap.com/irj/sdn/wiki?path=/display/plm/ca-dms-Object+link
    Best regards,
    Christoph
    P.S.: Please reward points for useful information.

  • Problem with objects

    Hi everyone,
    I am using an Indesign CS5.5 and I'm creating interactive layouts for iPad and what I want to create is the transition fading effect that requires two pictures / objects. When using an iPad, after I tap the 1st picture it will go to the 2nd picture, and when I tap the 2nd picture it will go back to the 1st picture (this two pictures overlap with each other. Can someone help me on how to do this ?
    Thank you.

    You get use a swipe guesture to swap states, but if you must use tap:
    1) Create Multistate Object
    2) 1st state:
         - Picture
         - invisible button jump to 2nd state
    3) 2nd state:
         - Picture
         - invisible button jump to 1st state
    4) set fade timing in overlay creator

Maybe you are looking for

  • Multiple XML documents in one SWF

    Hi, i'm trying to create a mix and match clothing application using flash for a school project but am having trouble with xml documents. Using an online tutorial, i found it was quite easy to load up one xml document, example of code below. I thought

  • A simple Report Server question!!

    Hi there, I have recently installed 9iDS; as to start publishing my reports to the web, none of the following works: http://myhost:port/reports/ http://myhost:port/reports/rwservlet/showenv http://myhost:port/reports/rwservlet/showjobs they all give

  • Bug only in PRD, fine in QAS & DEV

    Mods, Please move this to the right forum if needed. Thanks Hi all, we are stuck here with a difficult issue. In our business, a user creates an Engineering Change Order (ECO) through a ztcode. A workflow is then triggered which takes care of mails t

  • Windows 8 not getting shut down ....

    If the power button is pressed. it will go to the "Shutting Down..." screen... but it is not shut down.  So again press and hold the power button for shut down the system  Kindly help me .....

  • Apple TV Wireless always disconnects

    My apple TV never stays connected. Anyone else having these problems. I am using an airport extreme. I can get it to connect and the next day or so it is always disconnected and I have to reset my appleTV and router in order to get it connected again