Copying nodes at runtime

Hi
I'd like to keep a copy of a node at runtime and store it in a table for later overwriting of the current node if required.
Is this possible?
Cheers
Ian

Hi Sravan
Originally I was thinking of taking an actual copy of node as you can in WDJ but after looking at the methods available, I'm not sure this is possible.  I may have to just store the data and then bind it.
Unless I use a combination of both and store the node in my internal table and then extact the data when required to then bind as a table.
Cheers
Ian

Similar Messages

  • Finding a model node in runtime

    Hi, I'm presently migrating a old application to webdynpro.
    In that application, I have a FieldDescriptor, which has the information of which table to search in order to find the info to be displayed.
    Concretely I have:
    A class called BapiInfoField. This class has an attribute which is the name of a table. I need to retrieve the node associated to that table.
    To resolve this, I thought about making a mapping between the old table name and the new one compatible to webdynpro.
    On the other hand, I don't know how to fetch an node at runtime in webdynpro. The only way I do usually, is by using the "wdContect.node*" way. I know how to fetch elements in a node dynamically, but not the node itself.
    I also found a function called "getChildNode(String arg0, int arg1)" in the wdContext class. Unfortunately, the function is undocumented.
    If there's no appropriate getter function in webdynpro for my problem, I'll resolve by making a mapping between the string of the old table name, and a Method Object linked to the proper "node*" method.
    Anyone has any suggestions?
    Thanks in advance,
    Alexis

    Brrr...
    I do not understand your requirements completely, but can provide some hints regarding getting nodes information at runtime.
    First, you are misinformed: getChildNode is documented. First parameter is node name, second is index of parent element of subnode (i.e. index within "this" node).
    Next, there are 2 different situations: you need only meta-information or you need physical data.
    For first case:
      void traverse(final IWDNodeInfo parent)
           for (final Iterator i = parent.iterateChildren(); i.hasNext(); )
                final IWDNodeInfo child = (IWDNodeInfo)i.next();
                traverse( child );
      traverse( wdContext.getNodeInfo() );
    For second case:
      void traverse(final IWDNodeElement parent)
           final IWDNode     nParent   = parent.node();
           final IWDNodeInfo niParent  = nParent.getNodeInfo();
           final int         idxParent = parent.index();
           for (final Iterator i = niParent.iterateChildren(); i.hasNext(); )
                final IWDNodeInfo child = (IWDNodeInfo)i.next();
                traverse( nParent.getChildNode( child.getName(), idxParent ) );
      void traverse(final IWDNode parent)
           for (int i = parent.size() - 1; i>= 0; i--)
                final IWDNodeElement element = parent.getElementAt( i );
                    /* Workaround for singleton nodes */
                    /* parent.setLeadSelection( i ) */
                traverse( element ); 
      traverse( wdContext.currentContextElement() );
    Second case is quite "interesting": first, it will fails for singleton nodes with cardinality 0..n or 1..n (see commented workaround); second, it quite resource-consuming, namely, invokes all supply functions and populating all elements during traverse.
    Hope this will serve you as good starting point
    VS

  • How can I use DOM to copy Nodes between different XML Document ?

    Can I copy one Node or Element from one XML Document to another Document by DOM ?
    Because I use the Xerces , but it is not work if I want to copy Node between different Document, or I am doing something wrong. Anyone can help me , I will deeply appreciated !!

    check out the importNode() method of Document.

  • ARIS - Solman Integration : Occurence copied node issue

    Hi,
    We are using ARIS - Solution Manager 4.0 Synchronization.
    But, we encountered a big problem with synchronization.
    That is as follows.
    For example, there is following process - process step.
                 Process                                           Process Step
        ( Processing Subcontract P/O )         -          ( Create Purchase Order )     
        ( Processing P/O                   )         -          ( Create Purchase Order )
    In this case, we can create as follows:
    < ARIS >
                 Process                                          Process Step                     ARIS GUID
        ( Processing Subcontract P/O )          -        ( Create Purchase Order (A) )    -  ( 8888 )
        ( Processing P/O                   )          -         ( Create Purchase Order (B) )    -  ( 9999 )
    This is the way to create two process step individually by defintion functionality.
    But, it's inconvenient because we must maintain the information of two process steps (A),(B) separately.
    And, In this case, they have separate GUID. (They are different things)
    But, ARIS supports the Occurence copy functionality.
    With this functionality, we can make as follows:
    < ARIS >
             Process                                           Process Step                         ARIS GUID       
        ( Processing Subcontract P/O )     -        ( Create Purchase Order (A) )    -     (  8888 )
        ( Processing P/O                   )     -         ( Create Purchase Order (A) )    -     (  8888 )
    In this case, we can see this process step, "Create Purchase Order", below the two process,both.
    But, That is one node physically, so it has a only one GUID.
    And, we can change the information(T-CODE, Name) in only one side.
    I think this is necessary and right concept.
    But, when this process is synchronized to solman, following problem occurs,.
    < Solution Manager >
                  Process                               Process Step              (ARIS GUID)      SAP ID
        ( Processing Subcontract P/O )   -   (                                         )     -      ( ) - ( )                                      
        ( Processing P/O                   )    -   ( Create Purchase Order (A) )     -     ( 8888 )      -  ( ABCD )
    This is the result synchronized to solution manger.
    That is, because process step(A) is physically one, so it's transfered to solman only once.
    Exactly speaking, that is originally transfered below the process "Processing Subcontract P/O"
    and moved below "Processing P/O" again.
    In conclusion, occurence copied node in ARIS is synchronized to solman only once as I know.
    If this is right, I think it might be a very big problem in ARIS-SOLMAN integration part.
    And, I guess this could be fixed because the Solman function module for ARIS Sync.,
    "Z_SOLAR_NODE_ADD", has the import parameter "I_REF_GUID", and solman support the occurence copy(Reference copy) function.
    My questions are as follows:
    1) Is it right that occurence copied node in ARIS is transferred to solman only once?
    2) Is there anybody who knows the plan of IDE or SAP with this problem?
    Thanks for your help in advance.
    Best regards,
    jihyun cho

    Dear Michael,
    Thank you so much for help!!!
    I created customer message about this issue, either.
    And I got the reply from SAP they sent this message to the development support level which will be handled by IDS Scheer.
    But, I didn't get any message from IDS yet.
    If they would contact me, I will check when new feature will be avaliable. And I will share this plan with everyone.
    And I knew Shortcut function was newly updated with SP15 for the first time thanks to your reply.
    Thanks for your help again.
    Best regards,
    jihyun cho

  • Init context node during runtime

    Hi together,
    i have a question concerning initialization of a context node during runtime.
    I designed my context like
                       Parent
    Child1          Child2         Child3
    The parent node is the only one where the attribute boldInitialization Lead Selectionbold s marked.
    But now, its not possible to bind data to the child nodes, because they not existing during runtime.
    Now my question. Which method is the best to init these child nodes when data are ready for them?
    Regards,
    Anton

    Hi Abhi,
    problem is, that the supply function are executed at the first time the context nodes are used. In my web dynpro application ist that during initializing the view.
    So the supply functions are called at a moment where no data are available for them, because the tree view, to which they are binded, is also loaded at init method.
    So in the supply methods are no data bind to the nodes and the application didn`t create them.
    And when i want to fill data to the nodes they didn`t exist.
    Regards,
    Anton

  • Element addition to context node at runtime.

    Hi all,
    I have a class array object in which all data comes at runtime.
    I created a node in context.
    i have to add the element to node. i ahve used that node as a datasource to table UI.
    EmpWrapper e[] = null;
    e = tmp1.Get(wdContext.currentContextElement().getDIVISION());
    // i am getting all data in e[]
            if (e.length != 0)
            for (int i=0;i<= e.length;i++){
    //how to add the e data to node EMP in context                       

    Hi Shefali,
    Here is the link to create dynamic context nodes and its attributes.
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/b3f6e990-0201-0010-c087-c865f2c738b3
    Regards,
    Abhimanyu L

  • CIN (Code interface node) LabVIEW runtime engine dependency

    Hello:
    Am I correct that the old style CIN (code interface node) is not dependent on what version of LabVIEW runtime engine is being used?
    However if I create a dll  from say LabVIEW 8.2 I must then alway have LabVIEW runtime 8.2 installed on any newer machine with newer version of LabVIEW?
    Thank You!

    GE Osmonics wrote:
    Hello:
    What I have are old CIN (no source) that work in LabVIEW7.1 but will not work in LabVIEW 2010 (link error, object code not loaded). 
    What I thought I could do is generate dll from the vi's that contain the CIN using LabVIEW 7.1 with application builder.
     I could use the Call Library Function from LabVIEW 2010 to load the 7.1 generated dll  to effectively do what the old CIN accomplished
    provided I installed the LabVIEW 7.1 runtime engine on my LabVIEW 2010 machine
    Thanks for the input
    If the CIN resource doesn't load you most likely changed the LabVIEW platform. LabVIEW for Windows 32 Bit and LabVIEW for Windows 64 Bit are different platforms. Just as LabVIEW for Windows and LabVIEW for Macintosh or Linux. A 32 Bit DLL, which a CIN is internally can't be executed in a 64 Bit environment at all.
    Your solution fails for more than one reason here. LabVIEW will try to load and link a LabVIEW DLL into its actual runtime environment to avoid interprocess communication latency which would be inavoidable if the DLL is started in a seperate runtime engine, which is in fact a new process. If your issue is 32 bit to 64 Bit you won't be able to link the 7.1 32 Bit DLL into your LabVIEW 64 Bit application through the Call Library Node at all.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Copy node from XML tree problem

    I am trying to copy an XML node 9whic hmay have child nodes) from one tree to another with the code
    nodes = dataDoc.getElementsByTagName("text");
                   currentElement = (Element) nodes.item(0);
                   textNode.appendChild(nodes.item(0).cloneNode(true));
    gives the error
    org.apache.crimson.tree.DomEx: WRONG_DOCUMENT_ERR: That node doesn't belong in this document.
         at org.apache.crimson.tree.ParentNode.checkDocument(ParentNode.java:250)
         at org.apache.crimson.tree.ParentNode.appendChild(ParentNode.java:333)
    What am I doing wrong?
    Regards,
    MArk

    What am I doing wrong?Failing to use the Document.importNode() method.

  • Copying nodes in the color fx room

    I am using interlaced video and am trying to do an effect that needs to be deinterlaced then reinterlaced after the effects are applied to each field. I need the nodes in both fields to be identical and am having trouble figuring out a way to accomplish this. I have tried saving the node tree then placing it inside the workspace but that just deletes whatever is currently in there. I can't figure out a way to copy the individual nodes either. If someone has a solution to this problem it would help me out a lot.

    You'll have to rebuild the second tree manually. And toggle between each node to exactly match the settings on both sides of the Deinterlace.
    Blows, doesn't it?
    - pi

  • Adding nodes at runtime...

    Is there any way for adding workflow step dinamically at runtime.
    I want to ask that oracle workflow have ad-hoc workflow capabililities or not ?
    Thank You...

    Workflow supports having multiple versions of the same workflow running at the same time, ad-hoc workflow capabililities can be accomplised by having certain activities perform additional processing can be by making changes to the underlying business logic (such as calling a different sub workflow), adding of function activites to a running workflow is not available currently.
    Is there any way for adding workflow step dinamically at runtime.
    I want to ask that oracle workflow have ad-hoc workflow capabililities or not ?
    Thank You...

  • Copying Nodes between Documents

    Hi everybody,
    I have a very strange problem and can�t explain why it occurs.
    I�m parsing a valid XML Document, i.e. producing an DOM Document, which I want to filter partially (which works very well). But when I have filtered some Nodes and when I try to add those in another DOM document, which I also read in, the program will stop without throwing an exception!!
    That�s my command:
    resultDocument.getFirstChild().appendChild(someFilteredNode);
    It won�t work...Does anybody know why this happens??
    Thanx for any answers!!
    Phil

    ok, it looks like you use some old parser.
    with something "recent", it should work - check:
    http://xml.apache.org/xalan-j/apidocs/org/w3c/dom/Document.html#importNode(org.w3c.dom.Node,%20boolean)
    or
    http://java.sun.com/xml/jaxp/dist/1.1/docs/api/org/w3c/dom/Document.html#importNode(org.w3c.dom.Node,%20boolean)

  • Dynamic Context Node Copying question

    I am trying to dynamically copy some context nodes from my component controller to the view controller.  In the source context, I have a node whose "Multiple" property is set to true.
    I use the function addMappedChild to copy the attribute info, but the copied node always has "Multiple" set to false!! In the definition of addMappedChild there is no paramter for "Multiple".  How do I do this?
    Thanks
    Walter
    public IWDNodeInfo addMappedChild(java.lang.String name,
                                      java.lang.Class elementClass,
                                      boolean singleton,
                                      boolean mandatorySelection,
                                      boolean multipleSelection,
                                      java.lang.String mappedPath,
                                      boolean selectionMapped,
                                      boolean initializeLeadSelection)

    Are you making like dscribed here
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/dynamically creating, building, and mapping a context in web dynpro.pdf 
    page 14?
    Best Regards, Maxim r.

  • Error System Copy on cluster using R3load

    Hi currently we are doing a system copy on Cluster using R3load
    Source System win2003 SP2 32bit, MSSQl2000 SP4 32 bit
    Target System  win 2003 Sp2 64bit, MSSQL2005 SP2 X64 Server
    We have successfully installed MSSQL2005 Sp2 64 bit
    We have successfully installed Central Instance
    When we are trying to install the database Instance using R3load dump
    We are getting the fallowing error
    ERROR 2008-09-07 20:55:14
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.
    Please help me out to resolve this issue
    Thanx
    Jarish
    Entire log
    INFO 2008-09-07 20:26:00
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:00
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:00
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:01
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\change.log.
    INFO 2008-09-07 20:26:01
    Output of change user /install is written to the logfile change.log.
    WARNING 2008-09-07 20:26:01
    Execution of the command "change user /install" finished with return code 1. Output:
    Install mode does not apply to a Terminal server configured for remote administration.
    INFO 2008-09-07 20:26:01
    File not found: [C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcp71.dll].
    INFO 2008-09-07 20:26:01
    File not found: [C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcr71.dll].
    INFO 2008-09-07 20:26:01
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SBA\Administrator' on host '.'.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\summary.html.
    PHASE 2008-09-07 20:26:01
    Prepare the installation program.
    INFO 2008-09-07 20:26:03
    Installation start: Sunday, 07 September 2008, 20:26:00; installation directory: C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB; product to be installed: SAP R3E 4.7 Extension Set 2 SR1> ABAP System> MS SQL Server> Non-Unicode> Database Instance Installation
    INFO 2008-09-07 20:26:38
    Host operation t_HostInfo_SHARED processed successfully.
    INFO 2008-09-07 20:28:26
    The 'saploc' share exists in directory 'S:/usr/sap'. Choosing drive S: as the SAP system drive.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssversions.xml.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_all.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_di_clust.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_std_checks.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_get_defpath.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_get_r3db_config.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_init_jc.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3db_gconf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3db_lconf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3srv_conf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_schema_cnv.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_sps_droptmp.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_users_sid_drop.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_users_sid_drop_objs.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\srvchk.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\usrabap.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\usrstd.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO[E] 2008-09-07 20:30:00
    Account group="ORA_PRD_DBA" does not exist.
    INFO[E] 2008-09-07 20:30:00
    Account group="ORA_PRD_OPER" does not exist.
    INFO[E] 2008-09-07 20:30:00
    Account group="SBA\dbprdctl" does not exist.
    INFO 2008-09-07 20:48:16
    Copying file E:/Export_PRD/DB/MSS/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-09-07 20:48:16
    Copying file E:/Export_PRD/DB/MSS/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-09-07 20:48:16
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\DBSIZE.XML.
    INFO 2008-09-07 20:50:58
    Package table created
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs620.dat.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620BW.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620BW.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs620BW.dat.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs640.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs640.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs640.dat.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.html to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.1.html.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.html to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.1.html.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\summary.1.html.
    PHASE 2008-09-07 20:53:12
    SAP Web Application Server
    PHASE 2008-09-07 20:53:12
    Request common parameters of SAP system
    PHASE 2008-09-07 20:53:12
    Collecting information on database configuration
    PHASE 2008-09-07 20:53:12
    Collecting information on database configuration
    PHASE 2008-09-07 20:53:12
    Create accounts
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.1.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\product.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.2.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.2.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\product.2.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.XML to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.1.XML.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.XML to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.1.XML.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\DBSIZE.1.XML.
    WARNING 2008-09-07 20:53:25
    Existing account SAPMssXPUser has the primary group None, not Administrators. Changing primary group.
    PHASE 2008-09-07 20:53:25
    Preparing OS account for MCOD installation
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-2140900914-1967063802-3263448767-500' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight SeDenyInteractiveLogonRight SeDenyRemoteInteractiveLogonRight' to account 'SBA\SAPServicePRD' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SBA\prdadm' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    All 'tNT_RegistryEntries' table rows evaluated.
    PHASE 2008-09-07 20:53:27
    Preparing DBMS-specific environment variables
    INFO 2008-09-07 20:53:27
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:27
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:27
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:27
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-09-07 20:53:29
    Adapt file system
    PHASE 2008-09-07 20:53:29
    Prepare check/adapt SAP instance file system
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap exists.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap/PRD exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap/tmp exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/tmp exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/in exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/out exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/log exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/bin exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/buffer exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/cofiles exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/data exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/etc exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/log exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/sapnames exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:31
    All NT shares while processing the table 'tNT_SHARE' created successfully.
    PHASE 2008-09-07 20:53:31
    Extract archives
    INFO 2008-09-07 20:53:31
    All file system node operations of table t_SAPComponent_Archives_FORMS_SHARED processed successfully.
    PHASE 2008-09-07 20:53:31
    Extract SAP System kernel archives
    INFO 2008-09-07 20:53:32
    Copying file S:/usr/sap/PRD/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-09-07 20:53:32
    Copying file S:/usr/sap/PRD/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-09-07 20:53:32
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\SAPMMC.SAR.log.
    INFO 2008-09-07 20:53:33
    C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594\sapcar.exe -xvgf E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08\IM_WINDOWS_X86_64/SAPINST/NT/AMD64/MMC/SAPMMC.SAR, -R C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB succeeded. (See output in './SAPMMC.SAR.log'.)
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmc.dll to C:/WINDOWS/system32/sapmmc.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcada.dll to C:/WINDOWS/system32/sapmmcada.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcdb6.dll to C:/WINDOWS/system32/sapmmcdb6.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcinf.dll to C:/WINDOWS/system32/sapmmcinf.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcms.dll to C:/WINDOWS/system32/sapmmcms.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    All file system node operations of table t_SAPComponent_Archives_Copy_SHARED processed successfully.
    INFO 2008-09-07 20:53:33
    Removing file S:\usr\sap\PRD\SYS\exe\run\strdbs.cmd.
    INFO 2008-09-07 20:53:33
    Creating file S:\usr\sap\PRD\SYS\exe\run\strdbs.cmd.
    INFO 2008-09-07 20:53:34
    All 'tNT_RegistryEntries' table rows evaluated.
    INFO 2008-09-07 20:53:34
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-09-07 20:53:34
    Creating service ports
    PHASE 2008-09-07 20:53:35
    Generate instance profiles
    PHASE 2008-09-07 20:53:35
    Create versions of default profile, instance profile and start profile
    INFO 2008-09-07 20:53:35
    All file system node operations of table t_SAPComponent_Profiles_FORMS_SHARED processed successfully.
    PHASE 2008-09-07 20:53:35
    Preparing DBMS-specific profile parameters
    INFO 2008-09-07 20:53:35
    Adapt operation t_SAPComponent_Profiles_SHARED processed successfully.
    PHASE 2008-09-07 20:53:35
    Setting up database server
    ERROR 2008-09-07 20:53:36
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.
    ERROR 2008-09-07 20:55:14
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.

    Hi,
    I think some of the Microsoft runtime DLLs are missing, which you can observe in the above pasted log :-
    INFO 2008-09-07 20:26:01
    File not found: C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcp71.dll.
    INFO 2008-09-07 20:26:01
    File not found: C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcr71.dll.
    Do have a look at snote Note 684106 - Microsoft runtime DLLs to drill more in to the issue.
    Rgds
    Radhakrishna D S

  • File Copy times

    My newsreader is acting funny and dropping posted messages, so I
    apologize if this shows up twice.
    My comments on the file speed are that the times posted by other just go
    to show how difficult it sometimes is to make good timing measurements.
    I suspect that the wide variations being posted are in large part to
    disk caching. To measure this, you should either flush the caches each
    time or run them multiple times to make sure that the cache affects them
    more equally.
    Here is what I'd expect. The LV file I/O is a thin layer built upon the
    OS file I/O. Any program using file I/O will see that smaller writes
    have somewhat more overhead than a few large writes. However, at some
    size, either LV or the OS will break the larger writes into smaller
    ones. The file I/O functions in general will be slower to read and
    write contents than making a file copy using the copy node or move node.
    Sorry if I can't be more specific, but if you have a task that
    seems way to slow, please send it to technical support and report a
    performance problem. If we can find a better implementation, we will
    try to integrate it.
    Greg McKaskle

    Maybe this is because of the write buffer?
    Try mounting the media using the -o sync option to have data written immediately.

  • Using Search Help with ALV and Dynamic context node

    The topic subject already describes my situation.
    I have to create, populate and remove context nodes at runtime, and bind them to an ALV, to let user display the data or modify the data. The nodes I create are always typed with a table name, but the table name is of course, dynamic.
    This is all working: what's not working is help for entries inside the ALV; since the table has foreign keys and domains with check tables or fixed values, I expected that search helps were detected and managed by the framework.
    Instead, no help search is displayed except the input help based on data-type of the one "Date" input fields.
    I think I have to work on the dynamic node creation, and not on the ALV itself, since the latter only takes the node/attributes information, but i could be wrong. I tried with both the two following codings:
      CALL METHOD lo_nd_info_root->add_new_child_node
        EXPORTING
          static_element_type          = vs_tabname
          name                         = 'SAMPLE_NODE_NAME'
    *    is_mandatory                 = abap_false
    *    is_mandatory_selection       = abap_false
         is_multiple                  = abap_true
         is_multiple_selection        = abap_false
    *    is_singleton                 = abap_false
          is_initialize_lead_selection = abap_false
          is_static                    = abap_false
        RECEIVING
          child_node_info              = lo_nd_info_data .
    cl_wd_dynamic_tool=>create_nodeinfo_from_struct(
          parent_info = lo_nd_info_root
          node_name = 'SAMPLE_NODE_NAME'
          structure_name = vs_tabname
          is_multiple = abap_true ).
    The result is the same...is there any way to let the ALV know what search helps it has to use, and doesn't force me to manually build a VALUE_SET to be bound on the single attributes? There are many tables, with many fields, and maintaining this solution would be very costly.

    I have checked with method GET_ATTRIBUTE_VALUEHELP_TYPE of interface IF_WD_CONTEXT_NODE_INFO, on an attribute which i know to have a search help (Foreign key of a check table).
    The method returns 'N', that is the constant IF_WD_VALUE_HELP_HANDLER~CO_VH_TYPE_NO_HELP. So, the framework was not able to find a suitable search help.
    Using method GET_ATTRIBUTE_VALUE_HELP of the same interface, on the same attribute, returns me '111', which is constant C_VALUE_HELP_MODE-AUTOMATIC.
    Therefore, the WD framework knows it has to automatically detect a value help, but fails to find one.
    Also, this means in my opinion that the ALV and the dynamic external mapping are not the culprits: since node creation, no help is detected for any attribute but the date. Honestly, I don't have a clue on what's happening.

Maybe you are looking for

  • Program ID not registered

    Hi, I am trying to test RFC connection but it is saying  " program ID not registered"  at gateway. I  registered in saprfc.ini file at gateway but still its not working. Please let me know if you have any idea where should I register it. Best Regards

  • Can I use 2 external displays on new mid 2011 iMac?

    I'm thinking of getting the new 27" iMac with the 2GB video card. It lists in the tech specs two thunderbolt ports and a mini display port, but the images only show the two thunderbolt ports, so I assume Apple is counting one of those as being the de

  • I want GL Query

    i want to  write query for General ledger in sql 2005 , plz help me for code

  • Ttf files not appearing

    Hi, I keep downloading zip files from sites like dafont to install some fonts, but when I download the zips and open them with archive manager I find nothing inside them. I even copied some over from my Ubuntu partition that did have them in and when

  • Filter move followed by another move duplicates message

    Running Thunderbird 31.4.0 on Windows 7 64-bit I have two filters in my inbox Filter Wildcard: If To doesn´t contain "xxxxxxxx" Move message to Wildcard Filter MoveAll: Move Message to Incoming After sending a message that correctly goes to wildcard