Renaming Nodes

I am importing data from one xml file into another. When I import the second XML file, I need to change the node name.
My second xml is like :
<TempPerson>Robert</TempPerson>
My first XML is like:
<Person1>Jim</Person1>
<Person2>Tom</Person2>
when I import using the suggestion above, I need to change the node name to next valid name.
so my final xml file should be like :
<Person1>Jim</Person1>
<Person2>Tom</Person2>
<Person3>Robert</Person3> // Importer from second xml file
Is there a way to change the node names at runtime.
Thanx in advance

Well I am running JDK 1.3.
I just tried to illustrate the nature of problem in the example. Actually I have a complicated data structure. But answer to my example will solve my actual problem too.
Thanx

Similar Messages

  • Rename node tree name

    HI All
    I am working with alv tree (CL_GUI_ALV_TREE)and i want to rename a node name (via ON_NODE_CONTEXT_MENU_SELECT i provide  the option to rename node)
    in the tree and i found the method set_name but i dont have there
    a place when can i put the key of node
    there is diffrent way to update the node tree name  ?
    fior instance change node name from node_x to node_y  on the node view , i have node_x key
    Best regards
    Alex
    Edited by: Alex Dean on Sep 6, 2010 9:56 PM

    Hello,
    Please check this code.
       DATA: k_node_layout TYPE lvc_s_lacn.
       CONSTANTS: c_checked VALUE 'X'.
       FIELD-SYMBOLS: <leaves>  TYPE table,
                      <leaf>    TYPE ANY.
    Set the icon based on the parameter.
       k_node_layout-u_n_image  = c_checked.
       k_node_layout-u_exp_imag = c_checked.
    Set the icon value based on the parameter.
       k_node_layout-n_image   = new_icon.
       k_node_layout-exp_image = new_icon.
    Build the dynamic values for table and line.
       ASSIGN leaves->* TO <leaves>.
       CREATE DATA leaf LIKE LINE OF <leaves>.
       ASSIGN leaf->* TO <leaf>.
    Get the associated line item for the selected node.
       tree->get_outtab_line( EXPORTING  i_node_key     = node_key
                              IMPORTING  e_outtab_line  = <leaf>
                              EXCEPTIONS node_not_found = 1
                                         OTHERS         = 2 ).
    Update the icon of the node.
       tree->change_node( EXPORTING  i_node_key     = node_key
                                     i_outtab_line  = <leaf>
                                     is_node_layout = k_node_layout
                          EXCEPTIONS node_not_found = 1
                                     OTHERS         = 2 ).
    Thanks.
    Ramya.

  • How to rename node in JTree?(URGENT)

    Hi,all:
    I am facing a renaming problem in JTree. After I rename, the node still remain the old name, Could anybody tell me why and how to solve it?
    The piece of code is as follow:
    JTextField textField = new JTextField();
    newDndTree.setCellEditor(new MyCellEditor(newDndTree,textField));
    newDndTree.setEditable(true);
    class MyCellEditor extends DefaultCellEditor {
    private JTree tree;
    public MyCellEditor(JTree tree, JTextField text) {
    super(text);
    this.tree = tree;
    public boolean isCellEditable(EventObject e) {
    boolean rv = false; // return value
    if(e instanceof MouseEvent) {
    MouseEvent me = (MouseEvent)e;
    if(me.getClickCount() == 3) {
    TreePath path =
    tree.getPathForLocation(me.getX(), me.getY());     
    if(path.getPathCount() == 1) // root node
    return false;
    DefaultMutableTreeNode node =
    (DefaultMutableTreeNode) path.getLastPathComponent();
    Object hitObject=path.getLastPathComponent();
    if(hitObject instanceof TreeNode)
    return (((TreeNode)hitObject).isLeaf());
    return (false);

    Hi,all:
    My problem is it doesn't rename the node, the node remain the old name.
    My piece of code as follow:
    //Set Cell Editor
    newDndTree.setCellEditor(new MyCellEditor());
    //inner class MyCellEditor
    class MyCellEditor extends DefaultCellEditor {   
    public MyCellEditor() {     
    super(new JTextField());
    public boolean isCellEditable(EventObject e) {     
    if(e instanceof MouseEvent) {     
    MouseEvent me = (MouseEvent)e;     
    if(me.getClickCount() == 3) {      
    JTree tree = (JTree)me.getSource();     
    TreePath path = tree.getPathForLocation(me.getX(), me.getY());     
    if(path.getPathCount() == 1) {        
    //System.out.println("Root");     
    return false; // root node     
    DefaultMutableTreeNode node =     
    (DefaultMutableTreeNode) path.getLastPathComponent();     
    Object hitObject=path.getLastPathComponent();     
    if(hitObject instanceof TreeNode) {        
    TreeNode t = (TreeNode)hitObject;     
    boolean b = t.isLeaf();     
    if (b) {          
    //System.out.println("Leaf");     
    return (((TreeNode)hitObject).isLeaf());     
    //else System.out.println("Not Leaf");     
    // System.out.println("Exit");
    return false;
    }

  • Preferences API: renaming node

    How can I rename a node?
    If this function is not available, I will have to copy the all hierarchy recursively to the new node and then remove the old one. It's more difficult and dirty.

    im now learning the preferences api,but i find
    nothing about this topic in java tutorial,n doc is
    also lack of infomation,anyone know more about this
    api?,n where can i find more detial with this?http://www.google.com/search?q=java+preferences

  • Error InvalidNameException: Rename node in LDAP

    import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.directory.*;
    import javax.naming.ldap.*;
    * Insert the type's description here.
    * Creation date: (3/2/2001 9:28:09 AM)
    public class test1 {
    public static String
    INITCTX="com.sun.jndi.ldap.LdapCtxFactory";
    public static String MY_HOST="ldap://aks:389/";
    public static String MGR_DN="cn=orcladmin";
    public static String MGR_PW="welcome";
    public static void main(String[] args) {
    try
    Hashtable env = new Hashtable();
    Control[] ctrl = new Control[3];
    env.put(Context.INITIAL_CONTEXT_FACTORY,INITCTX);
    env.put(Context.PROVIDER_URL, MY_HOST);
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL,MGR_DN);
    env.put(Context.SECURITY_CREDENTIALS,MGR_PW);
    DirContext ctx = new InitialLdapContext(env, null);
    ctx.rename("cn=sa1,ou=GPM,o=GPF","cn=sa4,ou=GPM,o=GPF");
    ctx.close();
    catch(NamingException e) {
         System.out.println(e.getRemainingName());
    e.printStackTrace();
    System.exit(1);
    catch (Exception e) {
         e.printStackTrace();
         System.exit(1);
    throws an error:
    cn=sa1,ou=GPM,o=GPF
    javax.naming.InvalidNameException: cn=sa1,ou=GPM,o=GPF: [LDAP: error code 34 - E
    rror in DN Normalization.]; remaining name 'cn=sa1,ou=GPM,o=GPF'
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2593)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2411)
    at com.sun.jndi.ldap.LdapCtx.c_rename(LdapCtx.java:584)
    at com.sun.jndi.toolkit.ctx.ComponentContext.p_rename(ComponentContext.j
    ava:692)
    at com.sun.jndi.toolkit.ctx.PartialCompositeContext.rename(PartialCompos
    iteContext.java:248)
    at com.sun.jndi.toolkit.ctx.PartialCompositeContext.rename(PartialCompos
    iteContext.java:239)
    at javax.naming.InitialContext.rename(InitialContext.java:382)
    at test1.main(test1.java:41)
    I have proper data in LDAP which is "Oracle Internet Directory". Rename works properly if i use command line tool provided by Oracle. So this is not a problem with data.
    Please help me.
    Thanks,
    Naveen

    Seems that you might have wrong default naming context.
    try something like:
    public static String
    MY_HOST="ldap://aks:389/dc=what,dc=ever,dc=com
    Kullervo

  • Rename node in process chain

    In the process chain in left side screen I need to change Node name descript. "Not Assigned" to "New Name". Please advice how to do that ?.
    Thanks
    Liza

    Hello,
    In the RSPC Screen Choose your PC -> Choose the Node icon (Tree sort of icon) -> In the pop-window choose the node if exits or in the bottom of the screen you will find new icon. Create and assing your process chain.
    After assigning , refresh or just use /nRSPC to refresh and you can see your PC in the new node you have selected.
    Thanks
    Chandran

  • Xml in JTree: how to not collpase JTree node, when renaming XML Node.

    Hi.
    I'm writing some kind of XML editor. I want to view my XML document in JTree and make user able to edit contents of XML. I made my own TreeModel for JTree, which straight accesses XML DOM, produced by Xerces. Using DOM Events, I made good-looking JTree updates without collapsing JTree on inserting or removing XML nodes.
    But there is a problem. I need to produce to user some method of renaming nodes. As I know, there is no way to rename node in w3c DOM. So I create new one with new name and copy all children and attributes to it. But in this way I got a new object of XML Node instead of renamed one. And I need to initiate rebuilding (treeStructureChanged event) of JTree structure. Renamed node collapses. If I use treeNodesChanged event (no rebuilding, just changes string view of JTree node), then when I try to operate with renamed node again, exception will be throwed.
    Is there some way to rename nodes in my program without collpasing JTree?
    I'am new to Java. Maybe there is a method in Xerces DOM implementation to rename nodes without recreating?
    Thanks in advance.

    I assume that "rename" means to change the element name? Anyway your question seems to be "When I add a node to a JTree, how do I make sure it is expanded?" This is completely concerned with Swing, so it might have been better to post it in the Swing forum, but if it were me I would do this:
    1. Copy the XML document into a JTree.
    2. Allow the user to edit the document. Don't attempt to keep an XML document or DOM synchronized with the contents of the JTree.
    3. On request of the user, copy the JTree back to a new XML document.
    This way you can "rename" things to the user's heart's content without having the problem you described.

  • Icon CHANGE in Node Renaming  for JTree

    HI all ,
    In JTree, V can rename a DefaultMutableTreeNode , by pressing F2 or triple click .
    By using the DefaultTreeCellRenderer ,
    I applied icons also by -- tree.setCellRenderer(myCellRenderer);
    But at the time of renaming , or when v press F2 ,
    the icon is changed to default settings ( leafIcon / openIcon / closedIcon ).
    How can I apply other Icons to nodes at the time of node renaming ?
    Please help ..
    Thanks

    MyTreeCellRenderer treeCellRenderer = new MyTreeCellRenderer();
    DefaultTreeCellEditor treeCellEditor = new MyTreeCellEditor(tree, treeCellRenderer);;
    MyTreeCellEditorListener cellEditorListener = new MyTreeCellEditorListener();
    treeModel = new DefaultTreeModel (rootNode);
    tree = new JTree(treeModel);
    treeCellEditor.addCellEditorListener(cellEditorListener);
    tree.setCellEditor(treeCellEditor);
    tree.setCellRenderer(treeCellRenderer);
    I am renaming the leaf nodes and MyTreeCellRenderer class override the method
    public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus)
    and set a different icon to the leaf nodes.
    And when i am renaming a leaf node , the default ( leafIcon ) icon will come only to the renaming node at the time of renaming . When i hit the enter key . the default leafIcon will disappear and my customised icon will come .........
    My question is that at the time of renaming ........ How v can getback the customised icon ?
    thanks

  • Change Node name dyanamic like as Windows Add "New Folder"

    Hi Friends
    I m new in swing. I want ur help.
    I want to rename node of JTree like windows.
    means when I click on right button of mouse, one pop-up is displayed for
    "Add Node".
    but when it is added that time we can change it name like Windows. It will select whole "Add Node" text.
    I hope u can understand my prob.
    Awaiting 4 ur prompt reply.

    There's a demo for doing this on this site. Check oout "Tree Tutorial" or something like that

  • JTree adding nodes

    Hello all,
    I have two questions concerning Trees,
    1. I have created the Tree by the JTree(Vector) method, initially the vector does have some elements but i have to add some more later, so when my vector gets updated how can I add the same element to the tree in the form of a node?
    2. The Tree being created like this, has automatically generated names for the nodes (i guess it shows the memory address) but i want to change the name of all of my nodes, what is the method for renaming nodes?

    There are two pieces of Trees that you have not yet found. The first is the TreeModel, which is accessible through myTree.getModel(). You can use this model to create the data structure; the JTree object is simply a view of that model.
    The second piece is the TreeCellRenderer, accessible through myTree.getCellRenderer(). This renderer is used to draw the nodes of the tree and, by default, one is used that renders the Strings returned by the toString() method of the objects in the model. To display different strings, you can either (1) replace the renderer or (2) override the toString() method on the objects in your model. The first is recommended if the strings vary radically from the desired result of toString() or if toString() is being used for something else; the second is recommended for simplistic models or for situations in which the display properly reflects the nature of the object.
    Replacing the renderer also allows you to use any JComponent for rendering you wish. This can give you the ability to present gradient backgrouns, dynamically loaded icons, etc.
    Many objects in Swing use this format in which there are three portions of an object: the view (which is the standard object, like an instance of JTree, JList, or JTable), the model (which contains the actual data structure), and the renderer (which acts like a rubber stamp to draw the objects without causing more than one object to be instantiated to render thousand-element lists).

  • How do I rename model parts on the Model Tree?

    I am trying to rename model parts on the model tree. I thought I had done this successfully within 3D reviewer but I can't seem to transfer the renamed parts I changed within 3D reviewer back to the main PDF file tree. Any help please?
    Thanks in advance for any tips.
    Lee

    One more way to rename nodes is via JavaScript.
    The following piece of code picks nodes with numerical suffix
    and cuts that suffix to hide it from end user.
    var nodes=scene.nodes;
    var count=nodes.count;
    var index=new Array();
    for(i=0; i < count; i++) {
      var mesh=nodes.getByIndex(i);
      var name=mesh.name;
      end=name.lastIndexOf(".")-1;
      if(end > 0) {
        if(name.substr(end,1) == "\001") {
          start=name.lastIndexOf("-")+1;
          n=end-start;
          if(n > 0) {
            index[name.substr(start,n)]=i;
            mesh.name=name.substr(0,start-1);
    You may use getByName instead of getByIndex and
    use 2 lists, of old and new names.

  • Error during Database instance installation of NW04s Portal installation

    Hello All,
         This is our system environment:
       Portal - NW04s SR1 (SCS instance on one host) -- finished successfully
       Database - MS SQL Server 2005 on a separate host
    We are doing a domain installation. The database was installed successfully, but when trying to install the database instance during the NW04s installation, I am getting the following errors:
    <b>ERROR      2007-01-03 11:30:10 [syxxsyshlp.cpp:78]
               syslib::printOSError(const iastring &, int, DWORD, const iastring &, CMessage::eLogMessage) FSL-00001  System call failed. Error 5 (Access is denied.
    ) in execution of system call 'CopyFile' with parameter (
    DCASAPHR05\sapmnt\EPD\SYS\profile\DEFAULT.PFL,
    DCASAPHR05\sapmnt\EPD\SYS\profile\DEFAULT.1.PFL, FALSE), line (478) in file (synxcfile.cpp).
    ERROR      2007-01-03 11:30:10 [syxxcnode.cpp:402]
               CSyNodeImpl::move(const CSyPath &
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.1.PFL, ISyNode::CopyMoveMode_t 0x3) FSL-02039  Unable to move or rename node
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.PFL with type file/directory to
    DCASAPHR05/sapmnt/EPD/SYS/profile/DEFAULT.1.PFL: Overlapped I/O operation is in progress.
    ERROR      2007-01-03 11:30:10
               CJSlibModule::writeError_impl() MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR      2007-01-03 11:30:10 [iaxxgenimp.cpp:736]
               showDialog() FCO-00011  The step createDefaultProfile with step key |NW_Java_DB|ind|ind|ind|ind|0|0|NW_System|ind|ind|ind|ind|6|0|createDefaultProfile was executed with status ERROR .</b>
    Could anybody please help me through this process?
    Thanks much in advance,
    Sunitha

    Hi,
    I would try adding epdadm and SAPServiceEPD accounts to Administrators group and give Administrators full access to sapmnt shared area. Also double check SAP_EPD_GlobalAdmin domain admin authority and SAP_LocalAdmin and SAP_EPD_LocalAdmin accounts.
    Open
    DCASAPHR05\sapmnt\EPD\SYS\profile folder using explorer and created file and see if there is any authorzation issues with domail\sapinst account.
    good luck
    Kondala Rao

  • ECC 6.0 Installation error at ABAP Import Stage-- Phase 15 of 24

    Dear all
    I am trying to Install ECC 6.0 for our R&D Server and i have 240 GB HDD and 4 GB RAM. I have only one drive (C:\) and i know its a bad practice to install ECC on one drive but i have to do it. I cannot format it either.
    The INstallation started and during ABAP Import stage ( it has 9 failed jobs), the installation gets stuck for almost 2 days. I try to install again but i get an error message which says:
    Unable to start a service execution.
    Please check the following information for the possibble reason and inform the installation development : showing dlg diProductChoice <dialog sid="diProductChoice"> <title>Welcome to SAP Installation Master</title>
    <dialog/> Login in progress Connection request to guiengine backend by host 173.1.53.174 Protocol version is 3.1
    Send connect information client logged on Waiting for an answer from GUI CDialogHandler: ACTION_NEXT requested <dialog sid="diProductChoice"> <dialog/> Creating file C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\x.
    Removing file C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\x. showing dlg diRestartOrCancel <dialog sid="diRestartOrCancel"> Dialog does not contain standard input handler, so the backend is not able to generate a log entry <dialog/>
    Waiting for an answer from GUI current working directory is C:\Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS Creating file C:\Program Files\sapinst_instdir\x. Removing file C:\Program Files\sapinst_instdir\x.
    Running with toplevel file C:\Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/toplevel.xml Syslib info about system call. OS message 32 (The process cannot access the file because it is being used by another process. ) after execution of system call 'rename' with parameter (C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.log, C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.1.log), line (377) in file (syxxcnode.cpp).
    Copying file C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.log to C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.1.log Copied file 'C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.log' to 'C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.1.log'. Account ERP6/Administrator has ADS path 'WinNT://ERP6/Administrator' Administrator has SID S-1-5-21-1984538376-659086811-895846994-500 existence check for user Administrator returned true. inserted account (Administrator, S-1-5-21-1984538376-659086811-895846994-500, USER) into the accountcache.
    Security descriptor of C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.1.log set to O:BAG:S-1-5-21-1984538376-659086811-895846994-513D:AI(A;ID;0x1200a9;;;BU)(A;ID;0x1301bf;;;PU)(A;ID;FA;;;BA)(A;ID;FA;;;SY)(A;ID;0x1301bf;;;S-1-5-13) + PROTECTED_DACL_SECURITY_INFORMATION
    Removing file C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\sapinst_dev.log. Syslib info about system call. OS message 32 (The process cannot access the file because it is being used by another process. ) after execution of system call 'DeleteFile' with parameter (C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\sapinst_dev.log), line (202) in file (synxcfile.cpp).
    Moving file C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\sapinst_dev.log to: C:\sap28.tmp. System call failed. Error 32 (The process cannot access the file because it is being used by another process. ) in execution of system call 'MoveFileEx' with parameter (C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\sapinst_dev.log, C:\sap28.tmp, MOVEFILE_WRITE_THROUGH), line (223) in file (synxcfile.cpp).
    Unable to delete node C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.log with type file: The process cannot access the file because it is being used by another process.
    Removing file C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\sapinst_dev.1.log. Unable to move or rename node C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.log with type file/directory to C:/Program Files/sapinst_instdir/ERP/SYSTEM/MSS/CENTRAL/AS/sapinst_dev.1.log: The system cannot find the file specified. The execution will be terminated now.
    can anyone please help? Thanks

    Hello
    I just checked SAPSSEXC.LOG file and this message was displayed
    IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (RFF) ERROR: invalid checksum in data file "C:\SAP Dumps\51033500_1\EXP1\DATA\SAPSSEXC.001"
                 current table was "DYNPSOURCE"
    (DB) INFO: ENHCOMPCHILDCOMP created
    (DB) INFO: ENHCOMPCHILDCOMP~0 created
    (IMP) INFO: import of ENHCOMPCHILDCOMP completed (16 rows) #20100318142338
    I downloaded the files from Service Market Place. Does it mean that my files are corrput?

  • How to Create a Dynamic Tree?

    Hi All.,
    Warm Greetings..!
    I am new to java. I want to create a DYNAMIC TREE to add , delete and rename nodes in it. I need to display Icon for parent nodes.
    Ex: Root Node containts Group and User. I need to display an Icon for node Group and User. and I need to add child nodes to these parent nodes. And also I want to add a new Parent node with Icon.
    Hope any body will help me. Please give some example codes.
    Thanks :)
    -s_p_s

    Class DefaultMutableTreeNode

  • New SAP NW AS ABAP 7.01 SP03 Unicode with standard sapinst installer (beta)

    Hello community,
    a new SAP NW AS ABAP 7.01 SP03 version with the Standard SAPINST installer (note: the "trial version" is beta!) and optimzed single user memory consumption (~2GB pagefile) is available for testing purposes.
    NOTE: The installation step "LOAD DATABASE" may take up to 8h depending on your harddisk (1h on a fast disk). Next release will install faster.
    Recommended: Use Download Manager
    Please report problems here.
    Best Regards, Oliver

    I have installed the Microsoft loopback adaptor, and I still got asked for a DNS entry.  However I've unchecked it and continued...
    After now several attempts at installing and uninstalling and trying again, I got this on the last attempt - this was after starting a new installation and choosing the 'copy to a new folder' option rather than continuing with the former installation...  (It said 'Please inform the installation development' at the end)
    Caught a known exception during service selection. Errortext: ESAPinstException: error text undefined  Message stack: Opened sylib701_1.dll exe dir is C:/Users/James/AppData/Local/Temp/sapinst_exe.1420.1236786919 MessageLib initialized successfully. Opened C:/Users/James/AppData/Local/Temp/sapinst_exe.1420.1236786919/iaguieng701_1.dll receiving and sending on port 21200 Environment variable SAPINST_JRE_HOME set to value 'C:/Users/James/AppData/Local/Temp/sapinst_exe.1420.1236786919/jre'. exe dir is C:/Users/James/AppData/Local/Temp/sapinst_exe.1420.1236786919 Creating file C:\Program Files\sapinst_instdir\x. Removing file C:\Program Files\sapinst_instdir\x. Opened C:/Users/James/AppData/Local/Temp/sapinst_exe.1420.1236786919/iakdblib701_1.dll  This is SAPinst, version 701_1, make variant 701_REL, build 1015514 compiled on Oct 3 2008, 03:27:10  showing dlg diProductChoice <dialog sid="diProductChoice"> <title>Welcome to SAP Installation Master</title> <dialog/> Login in progress Connection request to guiengine backend by host 10.10.0.10 Protocol version is 3.1 Send connect information client logged on Waiting for an answer from GUI CDialogHandler: ACTION_NEXT requested <dialog sid="diProductChoice"> <dialog/> Creating file C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\x. Removing file C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\x. showing dlg diRestartOrCancel <dialog sid="diRestartOrCancel"> Dialog does not contain standard input handler, so the backend is not able to generate a log entry <dialog/> Waiting for an answer from GUI Creating directory C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\log_11_Mar_2009_16_56_41. Syslib info about system call. OS message 32 (The process cannot access the file because it is being used by another process. ) after execution of system call 'rename' with parameter (C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/dev_sapinst, C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/log_11_Mar_2009_16_56_41/dev_sapinst), line (377) in file (syxxcnode.cpp). Copying file C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/dev_sapinst to C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/log_11_Mar_2009_16_56_41/dev_sapinst Copied file 'C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/dev_sapinst' to 'C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/log_11_Mar_2009_16_56_41/dev_sapinst'. Account James-PC/James has ADS path 'WinNT://James-PC/James' James has SID S-1-5-21-3327962229-488744679-1681228067-1000 existence check for user James returned true. inserted account (James, S-1-5-21-3327962229-488744679-1681228067-1000, USER) into the accountcache. Security descriptor of C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/log_11_Mar_2009_16_56_41/dev_sapinst set to O:BAG:S-1-5-21-3327962229-488744679-1681228067-513D:AI(A;ID;FA;;;S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464)(A;ID;FA;;;SY)(A;ID;FA;;;BA)(A;ID;0x1200a9;;;BU)(A;ID;FA;;;S-1-5-21-3327962229-488744679-1681228067-1006) + PROTECTED_DACL_SECURITY_INFORMATION Removing file C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\dev_sapinst. Syslib info about system call. OS message 32 (The process cannot access the file because it is being used by another process. ) after execution of system call 'DeleteFile' with parameter (C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\dev_sapinst), line (202) in file (synxcfile.cpp). Moving file C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\dev_sapinst to: C:\sap540A.tmp. System call failed. Error 32 (The process cannot access the file because it is being used by another process. ) in execution of system call 'MoveFileEx' with parameter (C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\dev_sapinst, C:\sap540A.tmp, MOVEFILE_WRITE_THROUGH), line (223) in file (synxcfile.cpp). Unable to delete node C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/dev_sapinst with type file: The process cannot access the file because it is being used by another process. Removing file C:\Program Files\sapinst_instdir\NW701\AS-ABAP\ADA\CENTRAL\log_11_Mar_2009_16_56_41\dev_sapinst. Unable to move or rename node C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/dev_sapinst with type file/directory to C:/Program Files/sapinst_instdir/NW701/AS-ABAP/ADA/CENTRAL/log_11_Mar_2009_16_56_41/dev_sapinst: The system cannot find the file specified.  Please inform the installation development, execution will be terminated now.

Maybe you are looking for