SAP ERP vs Oracle ODS / VCP

Based on the customers with Oracle VCP applications on top of SAP ERP, I am interested mainly in the Data mapping between Oracle ODS/VCP and SAP ERP. Any input/document will be helpful to start the mapping process. Thanks.

Anand,
an ERP is a definition of the company's business on an IT system. It is meant to support day to day business affairs..
coming back to your system.....
It is like asking what the difference between a Merc and a Lexus is ...
a. it is in the eye of the beholder and also it is situation specific ... there is no correct answer and each has its own pros and cons....
Some places SAP might be deficient whereas in other areas , it might be the industry standard.
And also the comparison should be on
a. Technical grounds
b. Functional grounds...
It boils down to ultimately how you want to see it...
Merc might come with heated seats .. and the lexus might not have the same ... but for someone who is in a typical tropical country like India .. it does not make a difference.... got my point ??
Warm Regards,
Arun varadarajan
P.S any brands refereed to in the above post are purely coincidental ... no references are to be made to the actual cars available models... and the author does not associate himself with any of the brands / cars mentioned above!!!!!!
Have a nice day!!!

Similar Messages

  • SAP ERP with Oracle Planning Applications

    Based on the customers with Oracle VCP applications on top of SAP ERP, I am interested mainly in the Data mapping between Oracle ODS/VCP and SAP ERP. Any input/document will be helpful to start the mapping process. Thanks.

    Yes, XI has build in JDBC adapter used to connect to database applications. In your case, if your oracle system is sender, then you can choose JDBC sender, if it is receiver, then you can use JDBC receiver.
    By default, XI does not have JDBC driver installed, you must deploy the driver first, there is How -To document  from SAP, you can easily search on the forum to get it.
    Regards.
    Liang

  • IWay adapters between SAP ERP and Oracle

    Hi,
    The systemlandscape in the future is a SAP ERP System without a java stack and a Oracle system.
    Importend: And without a SAP Portal and a SAP PI.
    I think we will install the iWay Oracle adapter on the SAP ERP system and on the Oracle the iWay for SAP adapter.
    I this solution generally possible with iWay adapters or maybe others solution between SAP ERP and Oracle?
    Thank you for all answers.
    Regards
    Richard

    Hi,
    Your question is not clear.
    It is true that SAP is no more supporting Dual stack systems because of performance related problems. So, we need to install As ABAP and As Java system separately. As far as oracle is concerned, you need a database to install ERP system then why you want to install adapter ?
    Thanks
    Sunny

  • LKM SAP ERP to Oracle (SQLLDR) - ERROR!!!

    Hi ,
    I have error on the step Extract Data with this error
    oracle.odi.sdk.opentools.OpenToolExecutionException: Error occured in open tool execute methodError in executing ABAP programUnable to connect FTP. Check ABAP program
         at oracle.odi.sap.km._OdiSapAbapExecute.execute(_OdiSapAbapExecute.java:466)
         at com.sunopsis.dwg.function.SnpsOpenToolFunction.actionExecute(SnpsOpenToolFunction.java)
         at com.sunopsis.dwg.function.SnpsOpenToolFunction.execute(SnpsOpenToolFunction.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.j(e.java)
         at com.sunopsis.dwg.cmd.g.z(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Thread.java:619)
    and the description of ABAB code is ( cut from the whole ABAB code to show you the part of FTP Coding on ABAB language)
    CALL FUNCTION 'FTP_CONNECT'
    EXPORTING
    user = 'odiadmin'
    password = 'odiadmin'
    host = '10.8.61.200'
    rfc_destination = 'SAPFTPA'
    IMPORTING
    handle = lv_hdl
    EXCEPTIONS
    not_connected = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'Unable to connect FTP.'.
    Append et_file_return.
    ELSE.
    IF NOT lc_pasv IS INITIAL.
    REFRESH lt_result.
    lv_cmd = lc_cmd1.
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = lv_hdl
    command = lv_cmd
    TABLES
    data = lt_result
    EXCEPTIONS
    tcpip_error = 1
    command_error = 2
    data_error = 3.
    IF sy-subrc <> 0.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'Error in passing FTP .'.
    Append et_file_return.
    ENDIF.
    CALL FUNCTION 'FTP_R3_TO_CLIENT'
    EXPORTING
    fname = iv_filename
    rfc_destination = lc_dest
    character_mode = lc_pasv
    TABLES
    text = gt_result
    EXCEPTIONS
    command_error = 1
    data_error = 2
    OTHERS = 3.
    IF sy-subrc <> 0.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'Error passing data to FTP .'.
    Append et_file_return.
    ENDIF.
    free : gt_result.
    CONCATENATE lc_cmd2 iv_filename
    INTO lv_cmd SEPARATED BY ' '.
    REFRESH lt_result.
    CALL FUNCTION 'FTP_COMMAND'
    EXPORTING
    handle = lv_hdl
    command = lv_cmd
    TABLES
    data = lt_result
    EXCEPTIONS
    tcpip_error = 1
    command_error = 2
    data_error = 3.
    IF sy-subrc NE 0.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'Error in passing FTP .'.
    Append et_file_return.
    EXIT.
    ELSE.
    clear et_file_return.
    et_file_return-TYPE = gc_success.
    et_file_return-message = 'Data Transfer Successful'.
    Append et_file_return.
    ENDIF.
    ELSE.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'No data Available.'.
    Append et_file_return.
    CALL FUNCTION 'FTP_DISCONNECT'
    EXPORTING
    handle = lv_hdl.
    CALL FUNCTION 'RFC_CONNECTION_CLOSE'
    EXPORTING
    destination = lc_dest
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message = 'Error in RFC connection.'.
    Append et_file_return.
    ENDIF.
    ENDIF.
    ENDIF.
    ELSE.
    clear et_file_return.
    et_file_return-TYPE = gc_error.
    et_file_return-message =
    'Installed ABAP program does not match interface definition'.
    Append et_file_return.
    ENDIF."
    it seem that the error stop on the first exception that will return the message "Unable to connect FTP Server"
    I don't know why ,
    This SAP is 4.6C
    Thanks
    Edited by: somchai on Sep 16, 2009 11:27 PM

    Hi Somchai,
    r U able to resolve ur issue ..........i'm also struck there at the same point.
    I am using shared folder for file transfer and my error message is
    java.lang.RuntimeException: Error occured in open tool execute method...Error in executing ABAP program...Error in executing ABAP program...Error occurred when creating dataset\\<hostname>\bi-interface$\ZODI_11001_12001_GLOBAL.txt
    Thanks.
    Edited by: Drona on Mar 26, 2012 7:25 AM

  • Oracle 10g RAC installation on HP-UX 11.31 for SAP ERP 6.04

    Dear experts,
    We are trying to install SAP ERP 6.0 EHP4 with Oracle 10g RAC on HP-UX 11.31. Please note that, We are using VERITAS cluster filesystem (CFS) for this purpose and not HP-UX ServiceGuard ClusterFileSystem.
    *As per SAP procedure, we have installaed plain plain SAP system with single instance Oracle (ref: Configuration of SAP NetWeaver for Oracle Database 10gRAC guide). Now we are first trying to install Oracle Clusterware (CRS) and then we will install Oracle RAC software. Is this procedure right?*
    Which file (and its path) we have to use for CRS installation and its patch? Is it runInstaller under /oracle/stage/102_64/clusterware? With this file we can install CRS 10.2.0.1. Similarly for Oracle RAC, which files we are supposed to use, i.e for installation and patch upgrade?
    Also can we use clusterware package available from Oracle directly in the SAP environment?
    We tried to install CRS with runInstaller while running Configuration Assistant after root.sh script.
    The following commands are failing in Configuration Assistant:
    /oracle/CRS/102_64/bin/racgons add_config erpprdd1:4948 erpprdd2:4948
    /oracle/CRS/102_64/bin/oifcfg setif -global  lan1/20.20.20.0:cluster_interconnect lan0/192.168.3.0:public
    /oracle/CRS/102_64/bin/cluvfy stage -post crsinst -n erpprdd1,erpprdd2
    1st command does not give any output if run manually.
    2nd commands o/p: PRIF-12: failed to initialize cluster support services
    3rd commands fails in every check
    Please suggest the solution and expecting answers to the above mentioned questions.
    Thanks & Regards,
    Tejas

    >
    Charles Yu wrote:
    > Q1:  Oracle RAC with 9.2.x on HP-UX?
    > A:   For HA environment, cluster software is: MC/SG on HP-UX 11.31; there are  optional components of MC/SG  for supporting Oracle RAC and SAP application.  I was confused that I could not find the installation guide regarding 4.6C on MC/SG HA environment of HP-UX.
    > Charles
    Relevant docs for Service Guard (SG) cluster are available at http://docs.hp.com. Hope you have checked for the suport of oracle 92x on HP-UX 11.31
    >
    Charles Yu wrote:
    > Q2: Any reason why you don't use a supported database version?
    > A:   Actually, in order to avoiding the the risk of database upgrade and minimizing the migration risk,  top level has decided that keeping the same Oracle version. Indeed, we don't plan the migration of application. On the other hand, it is complicated to do the assessment for application migration.
    > Charles
    You can go for combined os migration and db release upgrade also at a stretch with the same downtime.

  • Differences between Oracle and SAP ERP

    Hi All
    I have a Industrial project which is currently having oracle.
    I would like to give them a presentation on SAP ERP and its modules.
    Does any1 have a ppt which highlights the advantages of SAP over Oracle. and stating its major differences.
    Please send it ASAP.
    Thanks and Regards

    Hi.......
    Check this link :
    The key difference between SAP and Oracle
    http://searchsap.techtarget.com/news/article/0,289142,sid21_gci1294788,00.html
    http://www.itjungle.com/two/two032807-story03.html
    http://searchmanufacturingerp.techtarget.com/news/article/0,289142,sid193_gci1325932,00.html
    Hope this helps you...........
    Regards,
    Debjani..........

  • How to Download Trial Version of SAP ERP 6.0 with Oracle?

    HI all,
                 Kindly help out how i can able to download SAP ERP 6.0 or Netweaver trial dump with oracle database in SAP Support portal.
    Awaiting for your valuable reply.
    Regard
    M.L.Gopinath

    Check if the Free Download Catalog has the trial version of PI7.0: http://www.sdn.sap.com/irj/scn/downloads
    Regards,
    Abhishek.

  • Integration SAP ERP & SAP Sourcing through Oracle ESB

    Hello,
    Currently I am working on architecture design for new implementation of SAP Sourcing 10.
    Obviously we are going to face integration aspects between SAP ERP & SAP Sourcing (Material, Vendor Master etc..).
    As the the main integration platform in client's architecture is Oracle ESB, I wonder if we can use it instead of SAP PI. Client is not even considering new installation of SAP PI for integrating ERP & Sourcing, although the SAP documentation clearly states SAP PI is a mandatory component.
    Do you think we can do it with Oracle ESB? Obviously assuming a greater effort than it would take with SAP PI.
    As ERP <-> Sourcing scenarios base on RFC, IDOC, File, HTTP - I would say yes at first thought (as Oracle ESB is capable of communication in these protocols). But is anyone with such experience? Are there any other limitations that should be considered?
    Regards,
    Tomasz Gałdyś

    Hi Tomasz,
    All of the Integration Content is built for PI.  Hopefully someone that has done this with Oracle ESB will respond but I think there will be significantly more work as the integration that is delivered is all done with PI in mind.  Some customers have decided to go ahead with PI so that they could take advantage of the standard integration.
    Rosemary

  • Why SAP ERP is Better than ORACLE ERP?????

    Hi expert I need some help about the comparison study between SAP and Oracle.
    One of our WOOD plantation Client have some confusion between two ERP packages.Oracle have approached them . So how can we convince them to do SAP ERP. If you have some ppt or any material please send it to me . Its urgent.
    Another thing that how SAP FI is better than Oracle FI for any Wood Plantation Company.
    If you gyes have any win story over Wood Plantation company then please give it to me.
    Thnaks Experts for your kind Considuration

    Dear Pratik,
    You can find the points for your presentation from the link:
    http://searchoracle.techtarget.com/generic/0,295582,sid41_gci1173173,00.html#
    Well, you need to convince your client that ERP is not all about cost of implementation. There are many other areas that you need to look at - availabilty of trained staff - complexity of business processes - does your existing data/processes map into one better than the other - are you happy going Oracle Oracle or would you prefer SAP with some other database.
    You can add that the majority of transactions in vanilla Oracle are more difficult than in SAP. SAP can be configured to support most of the business processes without coding.
    Let me know in case of any specific queries.
    Regards,
    Rakesh

  • Install SAP ERP 6.0 with Linux and Oracle RAC

    Hi Guru,
    I want to install SAP ERP 6.0 with Linux and Oracle RAC. Is this possible?
    Where do I find information?
    Thanks,
    Hugo.

    Hello Hugo,
    You can use either RAC or dataguard. On note [105047|http://service.sap.com/sap/support/notes/105047]:
    14. Data Guard
        o  You can use "Physical Standby".
        o  You cannot use "Logical Standby".
        o  You can use Data Guard Broker.
        o  You can use Maximum Performance Mode, Maximum Availability Mode and Maximum Protection Mode.
        o  In the case of Maximum Availability and Maximum Protection, you must pay particular attention to a fast network connection in order to avoid performance problems.
        o  Maximum Protection causes the primary database to terminate if problems occur in the standby database.
    60. Real Application Cluster (RAC)
        o  You can use this feature in accordance with Note 527843.
    Regards,
    Eduardo Rezende

  • Connection from Web Intelligence over Universe to SAP ERP without SAP BW

    Hi there,
    is there a way to create a Universe which ic connected to SAP ERP (ECC 6.0) ? I want to use Web-Intelligence to create the Reports for my ERP-Data. But i don't want to make the way over SAP BW.
    Otherwise i have to use Crystal because Crystal + SAP ERP Integration Kit can handle a connection to ERP. But then i have to waste a lot of time for the accuracy to a pixel which i dont need and i dont want...
    Any Ideas ?!
    Thanks
    Sebastian
    Edited by: smenzl on Mar 31, 2010 9:17 AM

    Hi
    you have 4 options:
    1) Load your SAP ERP data into an SAP BW system and use OLAP universes to build WebI reports.
    2) Use Rapid marts for SAP. This product comprises Data Integrator mappings that will allow to load your SAP ERP data into a predefined DWH based on a relational data source (like DB2, MS SQL Server or Oracle). It also includes a universe based on the predefined relational DWH that will allow you to build WebI reports.
    3) Use the Data Federator with the SAP R/3 connector. Please note that the R/3 connector is NOT a product rather a prototype tand will be used at own risk (SAP BusinessObjects Web Intelligence Reporting for SAP ERP [original link is broken])
    4) NOT RECOMMENDED: Try to access the tables directly in the underlying database. Please note that this may work for some but not all of the ERP data. In several case the data are stored encoded in the underlying tables and there is no way to extract the required information. Additionally the ERP security will not be leveraged into the WebI report.
    Crystal reports is the currently the only BO reporting tool, which supports direct access to SAP ERP data sources.
    Regards,
    Stratos

  • SAP ERP 2005 SR 2 IDES installation error in step "Run ABAP Reports"

    Hello,
    I'm installing SAP ERP 2005 SR 2 IDES on Win2003 R2 SP2 and Oracle 10.2 to create a test-system for my diploma thesis.
    During the step "Import ABAP" I got the following message:
    object_checker.log
    ERROR: 2008-05-21 20:50:38
    1 objects have error/ignore/execute or unknown status in the task lines.
    Invalid objects are saved in 'invalid_objects.txt' file.
    invalid_objects.txt
    package   object  type  action  status
    SAPDFACT  ?N      pkey  create
    but the installation went on until "Run ABAP Reports".
    Warnings and Errors in sapinst.log are:
    WARNING 2008-05-27 15:09:36
    Execution of the command "C:\usr\sap\IMP\SYS\exe\uc\NTI386\stopsap.exe name=IMP nr=00 SAPDIAHOST=imperia-sap" finished with return code -1. Output:
    STOPSAP: execution of C:\usr\sap\IMP\SYS\exe\uc\NTI386\sapntwaitforhalt.exe name=IMP nr=00 SAPDIAHOST=imperia-sap 3600 failed
    Details are written to C:\Programme\sapinst_instdir\ERP\SYSTEM\ORA\CENTRAL\AS\stopsap.log
    WARNING 2008-05-27 15:09:36
    Could not stop instance 'DVEBMGS00' of SAP system IMP.
    WARNING 2008-05-27 15:09:38
    Connect to message server (imperia-sap/3900) failed: NIECONN_REFUSED.
    WARNING[E] 2008-05-27 15:12:05
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.) in execution of a 'OpenService' function, line (266), with parameter (sapccmsr.00).
    WARNING[E] 2008-05-27 15:21:42
    FRF-00007  Unable to open RFC connection.
    ERROR 2008-05-27 16:30:15
    FRF-00025  Unable to call function. Error message: connection closed without message (CM_NO_DATA_RECEIVED) .
    INFO 2008-05-27 16:30:19
    RFC connection closed.
    ERROR 2008-05-27 16:30:45
    MUT-03025  Caught ERfcExcept in Modulecall: connection closed without message (CM_NO_DATA_RECEIVED).
    ERROR 2008-05-27 16:30:47
    FCO-00011  The step runRADDBDIF with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_ABAP_Reports|ind|ind|ind|ind|2|0|runRADDBDIF was executed with status ERROR .
    Full log of today is available at [http://pastebin.com/f43531f97]
    Has anyone an idea how I can finish this installation?
    Thx
    Daniele

    It seems that the system did not come up and thus the RFC call fails.
    What´s the output of
    dev_w0
    dev_disp
    (in the ...work directory)?
    Markus

  • SAP Sourcing 7.0 integration with SAP ERP - issue with SAP PI

    Hi All,
    We are integrating SAP Sourcing 7.0 with SAP ERP 6.0 with SAP PI 7.1 in middle. So the Sourcing will talk to PI and this intern will talk to ERP. Sourcing is on oracle 11g where as PI and ERP are on SQL 2008. All these 3 are on windows 2003 x64.
    We are following the "Configuration Guide Integration of SAP ERP and SAP Sourcing 7.0" provided by SAP.
    We have successfully configured Sourcing and PI systems as pe the document. In Sourcing, by using background jobs we are able to successfully generate files in "export" folder which is part of FTP directory.
    However the issue is with PI, we configured the "configuration scenerio" in Integration builder and point all channels to the FTP folder in Sourcing. But PI is not picking up these files.
    Is there any way to trigger this in PI system. Or do we need to do anything in sourcing itself.
    Regards,
    Siva.

    Hello Siva,
    I am thinking that you may need to deploy FTP adapter in PI to get this process work fine but not sure.
    Let's see what other experts suggest.
    Thanks,
    Siva Kumar

  • IDES Installation - EHP 7 for SAP ERP 6.0, fails at abap import win 2012 r2 ORA

    Dear gurus:
    I am having an issue on import abap phase to complete the SAP IDES ERP EHP 7 for ABAP installation.
        i am already search on the net, but found nothing about this>
    my host file on both path:
    C:\Windows\System32\drivers\etc
    C:\Windows\SysWOW64\drivers\etc
    #127.0.0.1
    rzablah01
    127.0.0.1
    rzablah01.rzablah
    #127.0.0.1
    rzablah01
    localhost
    i don't have domain controller
    machine:
    windows 2012 server datacenter r2 english x64
    8gb ram
    700gb hdd
    the SWPM is
    SWPM10SP06_5-20009707.sar
    the pre check was OK
    I put the policy files on java in the following paths
    C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\sapjvm\sapjvm_6\jre\lib\security
    C:\usr\sap\ERP\SYS\exe\jvm\NTAMD64\sapjvm_6.1.059\sapjvm_6\jre\lib\security
    the version is jce_policy-6.zip
    I already patch kernel, and try another things, but nothing solve it.
    my log:
    C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\sapinst_dev.log
    i found this on the file:
    WARNING    2014-09-24 21:10:39.657 [synxcpath.cpp:1010]
              CSyPath::getOSNodeType(bool) lib=syslib module=syslib
    Unable to get information about path \\LABEL.ASC\ using GetVolumeInformation. Operating system error message: The specified path is invalid.
    sapinst_dev.log________________________________:
    TRACE      2014-09-24 21:10:33.238
    Using custom value info for property SAPINST_MESSAGE_CONSOLE_THRESHOLD.
    TRACE      2014-09-24 21:10:33.238
    Using custom value flow_trace for property SAPINST_MESSAGE_DEVLOG_THRESHOLD.
    TRACE      2014-09-24 21:10:33.238
    Using custom value info for property SAPINST_MESSAGE_GUILOG_THRESHOLD.
    TRACE      2014-09-24 21:09:42.872 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\\sylib722.dll
    TRACE      2014-09-24 21:09:42.873
    exe dir is C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    TRACE      2014-09-24 21:09:43.017
    MessageLib initialized successfully.
    INFO      2014-09-24 21:09:43.20 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Users\Administrator\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel_test_24_Sep_2014_21_09_43.
    INFO      2014-09-24 21:09:43.21 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Users\Administrator\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel_test_24_Sep_2014_21_09_43.
    TRACE      2014-09-24 21:09:43.22 [syxxclogbook.cpp:219]
              PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
              lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel
    TRACE      2014-09-24 21:09:43.23 [csicomponentsetmanager.cpp:112]
              CSiComponentSetManager::readFrameworkJslib()
    Reading framework jslib.
    TRACE      2014-09-24 21:09:43.595 [csicomponentsetmanager.cpp:146]
              CSiComponentSetManager::readFrameworkJslib()
    Reading framework jslib done.
    TRACE      2014-09-24 21:09:43.597 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\iaguieng722.dll
    TRACE      2014-09-24 21:09:43.598 [syxxclogbook.cpp:219]
              PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
              lib=syslib module=syslib
    Initialized SAP kernel tracing to file dev_sap_kernel
    TRACE      2014-09-24 21:09:48.153 [synxcuser.cpp:2083]
              CSyUserImpl::isExistingOnOS() lib=syslib module=syslib
    existence check for user Administrator returned true.
    TRACE      2014-09-24 21:09:48.153 [syxxccache.cpp:419]
              CSyAccountCache::addToCache(const IaPtr<CSyAccountImpl> account)
              lib=syslib module=syslib
    inserted account (Administrator, S-1-5-21-3086296020-3121675482-1484945983-500, USER) into the accountcache.
    TRACE      2014-09-24 21:09:48.153 [cguiproxy.cpp:74]
              CGuiProxy::doLog()
    Waiting for client connection (1)
    TRACE      2014-09-24 21:09:48.154 [synxccuren.cpp:901]
              CSyCurrentProcessEnvironmentImpl::setEnvironmentVariable(const iastring & 'SAPINST_JRE_HOME', const iastring & 'C:/Users/ADMINI~1/AppData/Local/Temp/sapinst_exe.2796.1411607362/jre')
              lib=syslib module=syslib
    Environment variable SAPINST_JRE_HOME set to value 'C:/Users/ADMINI~1/AppData/Local/Temp/sapinst_exe.2796.1411607362/jre'.
    TRACE      2014-09-24 21:10:12.858 [cguiproxy.cpp:74]
              CGuiProxy::doLog()
    Start client logon ...
    TRACE      2014-09-24 21:10:12.858 [cguiproxy.cpp:398]
              CGuiProxy::checkIfLogon
    Connection request to guiengine backend by host child process at (736:740)
    TRACE      2014-09-24 21:10:12.859 [cguiproxy.cpp:455]
              CGuiProxy::checkIfLogon
    GUI Protocol version is 3.1
    TRACE      2014-09-24 21:10:12.859 [cguiproxy.cpp:456]
              CGuiProxy::checkIfLogon
    Send connect information
    TRACE      2014-09-24 21:10:12.859 [cguilogon.cpp:246]
              CGuiLogon::testForAutoLogon()
    client connected from child process at (736:740)
    TRACE      2014-09-24 21:10:13.46 [cguiproxy.cpp:74]
              CGuiProxy::doLog()
    Client successfully logged on from child process at (736:740)
    INFO      2014-09-24 21:10:13.177 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Users\Administrator\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel_test_24_Sep_2014_21_10_13.
    INFO      2014-09-24 21:10:13.178 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Users\Administrator\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel_test_24_Sep_2014_21_10_13.
    TRACE      2014-09-24 21:10:13.179 [csimanagerinterfaces.cpp:3798]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loading G:/SOFT/COM/INST/messages.xml ...
    TRACE      2014-09-24 21:10:13.349 [csimanagerinterfaces.cpp:3800]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loaded G:/SOFT/COM/INST/messages.xml
    TRACE      2014-09-24 21:10:13.361 [csimanagerinterfaces.cpp:3798]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loading G:/SOFT/COM/INST/messages.xml ...
    TRACE      2014-09-24 21:10:13.535 [csimanagerinterfaces.cpp:3800]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loaded G:/SOFT/COM/INST/messages.xml
    TRACE      2014-09-24 21:10:13.535
    exe dir is C:/Users/ADMINI~1/AppData/Local/Temp/sapinst_exe.2796.1411607362
    INFO      2014-09-24 21:10:13.538 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO      2014-09-24 21:10:13.539 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE      2014-09-24 21:10:13.543 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\iakdblib722.dll
    TRACE      2014-09-24 21:10:13.543 [sixxcreate.cpp:46]
              startInstallationViaStarter()
    SAPinst build information:
    Version:      2014.09.0
    Build:        1521363
    Compile time:  Sep 15 2014 - 16:33:56
    Make type:    optU
    Codeline:      720-2_REL
    Platform:      NTAMD64
    Kernel build:  721, patch 319, changelist 1516453
    Exe directory: C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    TRACE      2014-09-24 21:10:13.547 [csimanagerinterfaces.cpp:3798]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loading G:/SOFT/COM/INST/messages.xml ...
    TRACE      2014-09-24 21:10:13.728 [csimanagerinterfaces.cpp:3800]
              CSiManagerInterfaces::tryToLoadMessageDictionary
    Loaded G:/SOFT/COM/INST/messages.xml
    TRACE      2014-09-24 21:10:14.109 [cproductchoicedialog.cpp:79]
              CProductChoiceDialog::popUp
    Reading product catalog...
    TRACE      2014-09-24 21:10:15.410 [cproductchoicedialog.cpp:84]
              CProductChoiceDialog::popUp
    Reading product catalog done.
    TRACE      2014-09-24 21:10:15.562 [cstartupfilereader.cpp:482]
              CStartupFileReader::filterCatalogByConstraints()
    Displaying unfiltered product catalog
    TRACE      2014-09-24 21:10:15.969 [iaxxgenimp.cpp:411]
              CGuiEngineImp::showDialog()
    showing dlg diProductChoice
    TRACE      2014-09-24 21:10:15.999 [iaxxgenimp.cpp:431]
              CGuiEngineImp::showDialog()
    <dialog sid="diProductChoice">
    <title>Welcome to SAP Installation</title>
    <dialog/>
    TRACE      2014-09-24 21:10:16.262 [iaxxgenimp.cpp:1031]
              CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2014-09-24 21:10:29.73 [iaxxdlghnd.cpp:96]
              CDialogHandler::doHandleDoc()
    CDialogHandler: ACTION_NEXT requested
    TRACE      2014-09-24 21:10:29.73 [iaxxcdialogdoc.cpp:190]
              CDialogDocument::submit()
    <dialog sid="diProductChoice">
    <dialog/>
    INFO      2014-09-24 21:10:29.157 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\x.
    INFO      2014-09-24 21:10:29.158 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\x.
    TRACE      2014-09-24 21:10:29.792 [cservicehelpers.cpp:318]
              CServiceHelpers::assertCorrectFileProtection(C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP)
    Permission check skipped when running on windows.
    TRACE      2014-09-24 21:10:29.793 [iaxxgenimp.cpp:411]
              CGuiEngineImp::showDialog()
    showing dlg diRestartOrCancel
    TRACE      2014-09-24 21:10:29.793 [iaxxgenimp.cpp:431]
              CGuiEngineImp::showDialog()
    <dialog sid="diRestartOrCancel">
    Dialog does not contain standard input handler, so the backend is not able to generate a log entry
    <dialog/>
    TRACE      2014-09-24 21:10:29.793 [iaxxgenimp.cpp:1031]
              CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2014-09-24 21:10:32.063
    current working directory is C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP
    INFO      2014-09-24 21:10:32.69 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO      2014-09-24 21:10:32.70 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE      2014-09-24 21:10:32.73 [syxxcfile.cpp:125]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/dev_sap_kernel, m_realNodeType: 2}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target file exists and (mode & ISyNode::EXISTING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:32.73 [synxcfile.cpp:478]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copying file C:/Users/Administrator/AppData/Local/Temp/sapinst_exe.2796.1411607362/dev_sap_kernel to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP
    INFO      2014-09-24 21:10:32.74 [synxcfile.cpp:678]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copied file 'C:/Users/Administrator/AppData/Local/Temp/sapinst_exe.2796.1411607362/dev_sap_kernel' to 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP'.
    INFO      2014-09-24 21:10:32.75 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file C:\Users\Administrator\AppData\Local\Temp\sapinst_exe.2796.1411607362\dev_sap_kernel.
    TRACE      2014-09-24 21:10:32.75 [syxxcfile.cpp:125]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/dev_sap_kernel, m_realNodeType: 2}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target file exists and (mode & ISyNode::EXISTING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:32.76 [synxcfile.cpp:478]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copying file G:/SOFT/COM/INST/dev_sap_kernel to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP
    INFO      2014-09-24 21:10:32.76 [synxcfile.cpp:678]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copied file 'G:/SOFT/COM/INST/dev_sap_kernel' to 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP'.
    INFO      2014-09-24 21:10:32.116 [synxcfile.cpp:376]
              CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
              lib=syslib module=syslib
    Removed file G:\SOFT\COM\INST\dev_sap_kernel.
    TRACE      2014-09-24 21:10:32.117 [syxxclogbook.cpp:219]
              PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
              lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\dev_sap_kernel
    TRACE      2014-09-24 21:10:32.118
    exe dir is C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    TRACE      2014-09-24 21:10:32.118
    exe dir is C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    TRACE      2014-09-24 21:10:33.039
    Running with toplevel file C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/toplevel.xml
    TRACE      2014-09-24 21:10:33.050
    Component version information: lmts_007_REL (CL 136598)
    TRACE      2014-09-24 21:10:33.71 [syxxcfile.cpp:85]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst_dev.34.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:33.71 [syxxcnode.cpp:425]
              CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst_dev.34.log, ISyNode::CopyMoveMode_t 0x3)
              lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst_dev.log to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst_dev.34.log
    TRACE      2014-09-24 21:10:33.88 [syxxcfile.cpp:85]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst.34.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:33.88 [syxxcnode.cpp:425]
              CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst.34.log, ISyNode::CopyMoveMode_t 0x3)
              lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst.log to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/sapinst.34.log
    TRACE      2014-09-24 21:10:33.238
    Using custom value info for property SAPINST_MESSAGE_CONSOLE_THRESHOLD.
    TRACE      2014-09-24 21:10:33.238
    Using custom value flow_trace for property SAPINST_MESSAGE_DEVLOG_THRESHOLD.
    TRACE      2014-09-24 21:10:33.238
    Using custom value info for property SAPINST_MESSAGE_GUILOG_THRESHOLD.
    TRACE      2014-09-24 21:10:33.247
    Running with keydb file C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.xml
    TRACE      2014-09-24 21:10:33.247
    Running with dialog file C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/dialog.xml
    TRACE      2014-09-24 21:10:33.370 [iaxxgenimp.cpp:694]
              CGuiEngineImp::parseDialogXml()
    Removing 'copyLocation' node from diCdServerMissingPackage
    Removing 'copyLocation' node from diCdServerMissingPackageWithCdName
    Removing 'copyLocation' node from diCdServerWithCdName
    TRACE      2014-09-24 21:10:33.392 [syxxcfile.cpp:85]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.35.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:33.393 [synxcfile.cpp:478]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.35.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.xml to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.35.xml
    INFO      2014-09-24 21:10:33.396 [synxcfile.cpp:678]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.35.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.xml' to 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/keydb.35.xml'.
    TRACE      2014-09-24 21:10:33.867 [syxxcfile.cpp:85]
              CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.34.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNodeInt &) const
              lib=syslib module=syslib
    Target node does not exist and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-09-24 21:10:33.867 [synxcfile.cpp:478]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.34.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.xml to C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.34.xml
    INFO      2014-09-24 21:10:33.876 [synxcfile.cpp:678]
              CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.34.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const
              lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.xml' to 'C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP/statistic.34.xml'.
    TRACE      2014-09-24 21:10:35.715 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2014-09-24 21:10:35.824 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\statistic.xml
    TRACE      2014-09-24 21:10:35.911 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2014-09-24 21:10:37.967 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2014-09-24 21:10:38.82 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP\statistic.xml
    TRACE      2014-09-24 21:10:38.173 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2014-09-24 21:10:39.560
    Setting product specific properties:
    SAPINST_USE_FWK_JSLIB=true
    TRACE      2014-09-24 21:10:39.561
    Using framework jslib.
    TRACE      2014-09-24 21:10:39.572
    SAPinst was started using commandline: C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\sapinst.exe
    TRACE      2014-09-24 21:10:39.572
    SAPinst properties are :
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\Administrator\AppData\Roaming
    COMPUTERNAME=RZABLAH01
    ComSpec=C:\Windows\system32\cmd.exe
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    FP_NO_HOST_CHECK=NO
    GUISERVER_DIALOG_PORT=
    GUISERVER_HTTP_PORT=
    HOMEDRIVE=C:
    HOMEPATH=\Users\Administrator
    JAVA_HOME=C:\Program Files (x86)\SAP\SAP JVM 6 (61_REL i486 opt)
    JCE_POLICY_ZIP=
    LOCALAPPDATA=C:\Users\Administrator\AppData\Local
    LOGONSERVER=\\RZABLAH01
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PLMVIS_82_LIBPATH=C:\Program Files (x86)\SAP\FrontEnd\SAPgui\Program
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=3a09
    PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    Path=C:\oracle\ECC\11203\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\SAP\SAP JVM 6 (61_REL i486 opt)\bin
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    SAPINST_AUTHENTICATION_UNLIMITED=0
    SAPINST_CHECK_PACKAGES=false
    SAPINST_CODE_GENERATION_USE_RECURSIONS=0
    SAPINST_CONTINUE_AFTER_ERROR=
    SAPINST_CONTROL_URL=control.xml
    SAPINST_CWD=
    SAPINST_DETAIL_SUMMARY=true
    SAPINST_DIALOG_PIPES=
    SAPINST_DIALOG_PORT=21212
    SAPINST_DIALOG_URL=dialog.xml
    SAPINST_EXE=SAPINST_EXE
    SAPINST_EXECUTE_PRODUCT_ID=
    SAPINST_EXEDIR_CD=G:/SOFT/COM/INST
    SAPINST_EXE_DIR=C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    SAPINST_GENERATE_INIFILE=0
    SAPINST_GENERATE_INIFILE_CONFIG_FILE=
    SAPINST_GLOBAL_PARAMETER_TABLE=
    SAPINST_GUI_ACCESSIBLE=0
    SAPINST_HTTP_PORT=4239
    SAPINST_INIFILE_MODE=
    SAPINST_INIFILE_PARAMETER_MODE=
    SAPINST_INPUT_PARAMETERS_URL=
    SAPINST_INSTANCE_ID_GENERATION=
    SAPINST_JAVA_CODE_GENERATION=
    SAPINST_JAVA_COMPONENT_GEN_DIRECTORY=
    SAPINST_JAVA_COMPONENT_GEN_LOG_FILENAME=
    SAPINST_JAVA_COMPONENT_SNIPPET_DIRECTORY=
    SAPINST_JAVA_COMPONENT_SNIPPET_NAME=
    SAPINST_JAVA_EXT_DIR_DIRECTORY=
    SAPINST_JRE_HOME=C:/Users/ADMINI~1/AppData/Local/Temp/sapinst_exe.2796.1411607362/jre
    SAPINST_JSLIB_TRACE=NW,NWUsers,OraCom,NWCTC,NWProfiles,ClusterMgt,SystemIdentity,NetworkMgt
    SAPINST_JS_DEBUG=
    SAPINST_JVM_PROPERTIES=
    SAPINST_KEYDB_URL=keydb.xml
    SAPINST_LABEL_IDX_URL=
    SAPINST_LOG_GUI_UPDATE=0
    SAPINST_MESSAGE_CONSOLE_THRESHOLD=info
    SAPINST_MESSAGE_DEVLOG_THRESHOLD=flow_trace
    SAPINST_MESSAGE_GUILOG_THRESHOLD=info
    SAPINST_MESSAGE_HEADER=
    SAPINST_MESSAGE_URL=.
    SAPINST_MSLIB_TRACE=1
    SAPINST_NO_GUISTART=0
    SAPINST_NO_STEPBACK=0
    SAPINST_OUTPUT_DIR=C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP
    SAPINST_PACKAGES_URL=packages.xml
    SAPINST_PARAMETER_CONTAINER_URL=
    SAPINST_PORT_AUTO=0
    SAPINST_PROPERTIES_4_JAVA_STEPS_JVM=
    SAPINST_REMOTE_ACCESS_USER=
    SAPINST_REMOTE_ACCESS_USER_IS_TRUSTED=0
    SAPINST_RESOURCE_URL=resourcepool.xml
    SAPINST_RFCLIB_TRACE=0
    SAPINST_SAVE_INPUT=true
    SAPINST_SCAN_DEVICES=false
    SAPINST_SDT_CURDIR_MODE=
    SAPINST_SDT_PASSWORD=**********
    SAPINST_SDT_USER=
    SAPINST_SEND_ANALYTICS=true
    SAPINST_SET_STEPSTATE=0
    SAPINST_SKIP_DIALOGS=false
    SAPINST_SKIP_ERRORSTEP=0
    SAPINST_SKIP_SOLMAN_CHECK=0
    SAPINST_SKIP_SUCCESSFULLY_FINISHED_DIALOG=0
    SAPINST_SKIP_SUMMARY_DIALOG=0
    SAPINST_SLIDE_SHOW_URL=slideshow.xml
    SAPINST_SLP_CHANNEL_NAME=
    SAPINST_SMART_COMPONENT=
    SAPINST_STACK_XML=
    SAPINST_START_GUI=1
    SAPINST_START_GUISERVER=1
    SAPINST_STEP_EXECUTION_MODE=
    SAPINST_STOP_AFTER_DIALOG_PHASE=0
    SAPINST_SUCCESS_ID=
    SAPINST_TOPLEVEL_URL=toplevel.xml
    SAPINST_USE_ADVANCED_JS_HANDLING=1
    SAPINST_USE_DETAILED_LOG_DIRECTORY=0
    SAPINST_USE_DEV_FEATURES=
    SAPINST_USE_FWK_JSLIB=true
    SAPINST_USE_HOSTNAME=
    SAPINST_USE_MID=0
    SAPINST_USE_OSBITS=
    SAPINST_USE_OSFAName=
    SAPINST_WRITE_GUIENGINE_BACKEND_TRACE=
    SAP_DIR_PERF=C:\usr\sap\PRFCLOG
    SELFEXTRACTOR_EXECUTABLE_NAME=G:/SOFT/COM/INST/sapinst.exe
    SESSIONNAME=Console
    SYSLIB_LOCKING_MODEL=
    SecSpecialMode=710916
    SystemDrive=C:
    SystemRoot=C:\Windows
    TEMP=C:\Users\ADMINI~1\AppData\Local\Temp
    TMP=C:\Users\ADMINI~1\AppData\Local\Temp
    USERDOMAIN=RZABLAH01
    USERDOMAIN_ROAMINGPROFILE=RZABLAH01
    USERNAME=Administrator
    USERPROFILE=C:\Users\Administrator
    jce_policy_zip=
    windir=C:\Windows
    TRACE      2014-09-24 21:10:39.595 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\iaejs722.dll
    TRACE      2014-09-24 21:10:39.631 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\iacdlib722.dll
    TRACE      2014-09-24 21:10:39.635 [ccdmanagerpackagexml.cpp:128]
              CCdManagerPackageXml::readLabelDefinitionFile()
    Add packages from packages.xml; packageName:SAPINST, label: IND:SLTOOLSET:1.0:SWPM:*:WINDOWS_X86_64:*, media name:Software Provisioning Manager
    Add packages from packages.xml; packageName:KERNEL, label: SAP:AKK:741:KERNEL:*:WINDOWS_X86_64:*, media name:Kernel NW740 SR1
    Add packages from packages.xml; packageName:UKERNEL, label: SAP:AKK:741:UKERNEL:*:WINDOWS_X86_64:*, media name:UC Kernel NW740 SR1
    Add packages from packages.xml; packageName:GATEWAY, label: SAP:AKK:741:KERNEL:*:WINDOWS_X86_64:*, media name:Kernel NW740 SR1
    Add packages from packages.xml; packageName:CA, label: SAP:CA:741:UKERNEL:*:WINDOWS_X86_64:, media name:UC Kernel NW740 SR1 (folder CA)
    Add packages from packages.xml; packageName:SMD, label: SAP:SMD:741:UKERNEL:*:WINDOWS_X86_64:, media name:UC Kernel NW740 SR1 (folder SMD)
    Add packages from packages.xml; packageName:SCS, label: SAP:AKK:741:UKERNEL:*:WINDOWS_X86_64:*, media name:UC Kernel NW740 SR1
    Add packages from packages.xml; packageName:SAPLUP, label: SAP:SAPLUP:741:*:*:*, media name:SL Controller (Kernel DVD)
    Add packages from packages.xml; packageName:SCA_2, label: SAP:UT_ERP:SR1BS7I2013EHP7:*:*:*, media name:Java Component BS7i2013 SR1 on NW740 SR1
    Add packages from packages.xml; packageName:J2EE, label: SAP:J2EE-CD:SR1740:J2EE-CD:j2ee-cd:*, media name:Java Component NW740 SR1 (folder JAVA_J2EE_OSINDEP)
    Add packages from packages.xml; packageName:J2EE-ENG, label: SAP:J2EE-INST:SR1740:*:*:*, media name:Java Component NW740 SR1 (folder JAVA_J2EE_OSINDEP_J2EE_INST)
    Add packages from packages.xml; packageName:J2EE-INST, label: SAP:J2EE-INST:SR1740:*:*:*, media name:Java Component NW740 SR1 (folder JAVA_J2EE_OSINDEP_J2EE_INST)
    Add packages from packages.xml; packageName:SCA, label: SAP:UT:SR1740:*:*:*, media name:Java Component NW740 SR1 (folder JAVA_J2EE_OSINDEP_UT)
    Add packages from packages.xml; packageName:CTC, label: SAP:CTC:NW04S:*:*:*, media name:Java Component NW740 SR1
    Add packages from packages.xml; packageName:JAVA_EXPORT, label: SAP:JEXPORT:SR1740:*:*:*, media name:Java Component NW740 SR1 (folder JAVA_EXPORT)
    Add packages from packages.xml; packageName:JDMP, label: SAP:JDMP:SR1740:*:*:*, media name:Java Component NW740 SR1 (folder JAVA_EXPORT_JDMP)
    Add packages from packages.xml; packageName:JDMP_01, label: SAP:BPM_JDMP:SR1740:*:*:*, media name:Java Export SR1 (Vol.01)
    Add packages from packages.xml; packageName:JDMP_02, label: SAP:JDMP_02:SR1740:*:*:*, media name:Java Export SR1 (Vol.02)
    Add packages from packages.xml; packageName:JDMP_03, label: SAP:JDMP_03:SR1740:*:*:*, media name:Java Export SR1 (Vol.03)
    Add packages from packages.xml; packageName:JDMP_04, label: SAP:JDMP_04:SR1740:*:*:*, media name:Java Export SR1 (Vol.04)
    Add packages from packages.xml; packageName:JDMP_05, label: SAP:JDMP_05:SR1740:*:*:*, media name:Java Export SR1 (Vol.05)
    Add packages from packages.xml; packageName:JDMP_06, label: SAP:JDMP_06:SR1740:*:*:*, media name:Java Export SR1 (Vol.06)
    Add packages from packages.xml; packageName:JDMP_07, label: SAP:JDMP_07:SR1740:*:*:*, media name:Java Export SR1 (Vol.07)
    Add packages from packages.xml; packageName:JDMP_08, label: SAP:JDMP_08:SR1740:*:*:*, media name:Java Export SR1 (Vol.08)
    Add packages from packages.xml; packageName:JDMP_09, label: SAP:JDMP_09:SR1740:*:*:*, media name:Java Export SR1 (Vol.09)
    Add packages from packages.xml; packageName:JDMP_10, label: SAP:JDMP_10:SR1740:*:*:*, media name:Java Export SR1 (Vol.10)
    Add packages from packages.xml; packageName:EXPORT1, label: SAP:ECC:SR1617:EXPORT(1/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT2, label: SAP:ECC:SR1617:EXPORT(2/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT3, label: SAP:ECC:SR1617:EXPORT(3/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT4, label: SAP:ECC:SR1617:EXPORT(4/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT5, label: SAP:ECC:SR1617:EXPORT(5/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT6, label: SAP:ECC:SR1617:EXPORT(6/11):*:*, media name:Installation Export 1 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT7, label: SAP:ECC:SR1617:EXPORT(7/11):*:*, media name:Installation Export 2 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT8, label: SAP:ECC:SR1617:EXPORT(8/11):*:*, media name:Installation Export 2 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT9, label: SAP:ECC:SR1617:EXPORT(9/11):*:*, media name:Installation Export 2 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT10, label: SAP:ECC:SR1617:EXPORT(10/11):*:*, media name:Installation Export 2 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:EXPORT11, label: SAP:ECC:SR1617:EXPORT(11/11):*:*, media name:Installation Export 2 ECC 6.0 EhP7 SR1
    Add packages from packages.xml; packageName:MIGJDMP, label: SAP:MIGJDMP:73:*:*:*, media name:Migration Export (MIGJDMP)
    Add packages from packages.xml; packageName:MIGAPPS, label: SAP:MIGAPPS:73:MIGRATION:*:*, media name:Migration Export (MIGAPPS)
    Add packages from packages.xml; packageName:JMIG, label: SAP:JMIG:73:*:*:*, media name:Migration Export (JMIG)
    Add packages from packages.xml; packageName:MIGEXPORT1, label: SAP:MIG:*:EXPORT(1/:*:*, media name:Migration Export (MIGEXPORT)
    Add packages from packages.xml; packageName:RDBMS-ADA, label: MAXDB:*:RDBMS:MAX DB:WINDOWS_X86_64:*, media name:RDBMS MaxDB
    Add packages from packages.xml; packageName:RDBMS-DB6, label: DB2/LUW:*:RDBMS:DB2/LUW:WINDOWS_X86_64:*, media name:RDBMS IBM DB2 for Linux, UNIX and Windows
    Add packages from packages.xml; packageName:RDBMS-DB6-CLIENT, label: DB2/LUW:*:CLI/JDBC-DRIVER:DB2/LUW:*, media name:CLI/JDBC-Driver IBM DB2 for Linux, UNIX and Windows
    Add packages from packages.xml; packageName:RDBMS-DB2-CLIENT, label: SAP:RDBMS-Client:10.1:DB2CONNECT:DB2 Connect for zSeries:*, media name:RDBMS Client IBM DB2 10 for z/OS
    Add packages from packages.xml; packageName:TSAMP-DB6, label: IBM/TSA:*:DVD_TSAMP:*:*, media name:IBM Tivoli Systems Automation for Multiplatforms
    Add packages from packages.xml; packageName:RDBMS-ORA, label: ORACLE:10.0G:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS Oracle
    Add packages from packages.xml; packageName:RDBMS-ORA2, label: ORACLE:10.0G:RDBMS(2/:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 2
    Add packages from packages.xml; packageName:RDBMS-ORA112, label: ORACLE:11.2:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 112
    Add packages from packages.xml; packageName:RDBMS-ORA1122, label: ORACLE:11.2:RDBMS(2/:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 112 2
    Add packages from packages.xml; packageName:ORACLI, label: ORACLE:11.2:CLIENT:*:WINDOWS_X86_64:*, media name:RDBMS Client Oracle
    Add packages from packages.xml; packageName:ORACLI112, label: ORACLE:11.2:CLIENT:*:WINDOWS_X86_64:*, media name:RDBMS Client Oracle
    Add packages from packages.xml; packageName:RDBMS-MSS, label: MSSQL:*:*:RDBMS:*:*, media name:RDBMS MS SQL Server
    Add packages from packages.xml; packageName:RDBMS-SYB, label: SYBASE:*:RDBMS:*:WINDOWS_X86_64:*, media name:SAP ASE
    Add packages from packages.xml; packageName:SRS-SYB, label: SYBASE:*:SRS:*:WINDOWS_X86_64:*, media name:SAP Replication Server
    Add packages from packages.xml; packageName:RDBMS-HDB, label: HDB_SERVER:*:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS HANA Server
    Add packages from packages.xml; packageName:RDBMS-HDB-CLIENT, label: HDB_CLIENT:*:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS HANA Client
    Add packages from packages.xml; packageName:RDBMS-ADA, label: MAXDB:*:RDBMS:MAX DB:WINDOWS_X86_64:*, media name:RDBMS MaxDB
    Add packages from packages.xml; packageName:RDBMS-DB6, label: DB2/LUW:*:RDBMS:DB2/LUW:WINDOWS_X86_64:*, media name:RDBMS IBM DB2 for Linux, UNIX and Windows
    Add packages from packages.xml; packageName:RDBMS-DB6-CLIENT, label: DB2/LUW:*:CLI/JDBC-DRIVER:DB2/LUW:*, media name:CLI/JDBC-Driver IBM DB2 for Linux, UNIX and Windows
    Add packages from packages.xml; packageName:RDBMS-DB2-CLIENT, label: SAP:RDBMS-Client:10.1:DB2CONNECT:DB2 Connect for zSeries:*, media name:RDBMS Client IBM DB2 10 for z/OS
    Add packages from packages.xml; packageName:TSAMP-DB6, label: IBM/TSA:*:DVD_TSAMP:*:*, media name:IBM Tivoli Systems Automation for Multiplatforms
    Add packages from packages.xml; packageName:RDBMS-ORA, label: ORACLE:10.0G:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS Oracle
    Add packages from packages.xml; packageName:RDBMS-ORA2, label: ORACLE:10.0G:RDBMS(2/:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 2
    Add packages from packages.xml; packageName:RDBMS-ORA112, label: ORACLE:11.2:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 112
    Add packages from packages.xml; packageName:RDBMS-ORA1122, label: ORACLE:11.2:RDBMS(2/:*:WINDOWS_X86_64:*, media name:RDBMS Oracle 112 2
    Add packages from packages.xml; packageName:RDBMS-ORA121, label: ORACLE:12.1:RDBMS:*:WINDOWS_X86_64:*, media name:Oracle RDBMS 121
    Add packages from packages.xml; packageName:RDBMS-ORA1212, label: ORACLE:12.1:RDBMS(2/:*:WINDOWS_X86_64:*, media name:Oracle RDBMS 121 2
    Add packages from packages.xml; packageName:ORACLI, label: ORACLE:11.2:CLIENT:*:WINDOWS_X86_64:*, media name:RDBMS Client Oracle
    Add packages from packages.xml; packageName:ORACLI112, label: ORACLE:11.2:CLIENT:*:WINDOWS_X86_64:*, media name:RDBMS Client Oracle
    Add packages from packages.xml; packageName:RDBMS-MSS, label: MSSQL:*:*:RDBMS:*:*, media name:RDBMS MS SQL Server
    Add packages from packages.xml; packageName:RDBMS-SYB, label: SYBASE:*:RDBMS:*:WINDOWS_X86_64:*, media name:SAP ASE
    Add packages from packages.xml; packageName:SRS-SYB, label: SYBASE:*:SRS:*:WINDOWS_X86_64:*, media name:SAP Replication Server
    Add packages from packages.xml; packageName:RDBMS-HDB, label: HDB_SERVER:*:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS HANA Server
    Add packages from packages.xml; packageName:RDBMS-HDB-CLIENT, label: HDB_CLIENT:*:RDBMS:*:WINDOWS_X86_64:*, media name:RDBMS HANA Client
    Add packages from packages.xml; packageName:LIVECACHE, label: LIVECACHE:LCA10:LC79:WINDOWS_X86_64:*, media name:liveCache 7.9
    Add packages from packages.xml; packageName:SAP_CS, label: SAP:SAP_CS:*:*:PPMS component SAP_CS:PPMS-LABEL, media name:Content Server 6.40/6.50
    TRACE      2014-09-24 21:10:39.644 [ccdmanagerimpl.cpp:312]
              CCdManagerImpl::goToRootDirAndScanForPackages()
    Searching for packages. Found: IND:SLTOOLSET:1.0:SWPM:*:WINDOWS_X86_64:* in G:/SOFT/COM/INST
    Searching for packages - not a valid path or not accessible: G:/SOFT/COM\/LABEL.ASC
    Searching for packages. Nothing found in G:/SOFT/COM\
    Searching for packages - not a valid path or not accessible: G:/SOFT\/LABEL.ASC
    Searching for packages. Nothing found in G:/SOFT\
    Searching for packages - not a valid path or not accessible: G://LABEL.ASC
    Searching for packages. Nothing found in G:/
    TRACE      2014-09-24 21:10:39.656 [iaxxclib.cpp:174]
              CLib::load()
    Opened C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362\iaccdlib.dll
    TRACE      2014-09-24 21:10:39.656 [ccdmanagerimpl.cpp:872]
              CCdManagerImpl::lookForPackages()
    WARNING    2014-09-24 21:10:39.657 [synxcpath.cpp:1010]
              CSyPath::getOSNodeType(bool) lib=syslib module=syslib
    Unable to get information about path \\LABEL.ASC\ using GetVolumeInformation. Operating system error message: The specified path is invalid.
    TRACE      2014-09-24 21:10:39.658 [ccdmanagerimpl.cpp:872]
              CCdManagerImpl::lookForPackages()
    TRACE      2014-09-24 21:10:39.839
    SAPinst build information:
    Version:      2014.09.0
    Build:        1521363
    Compile time:  Sep 15 2014 - 16:33:56
    Make type:    optU
    Codeline:      720-2_REL
    Platform:      NTAMD64
    Kernel build:  721, patch 319, changelist 1516453
    Exe directory: C:\Users\ADMINI~1\AppData\Local\Temp\sapinst_exe.2796.1411607362
    TRACE      2014-09-24 21:10:39.849 [syxxsyshlp.cpp:151]
              syslib::logSystemState() lib=syslib module=syslib
    Process environment
    ===================
    Environment Variables
    =====================
      =C:=C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\ORA\INSTALL\STD\ABAP
      =G:=G:\SOFT\COM\INST
      ALLUSERSPROFILE=C:\ProgramData
      APPDATA=C:\Users\Administrator\AppData\Roaming
      COMPUTERNAME=RZABLAH01
      ComSpec=C:\Windows\system32\cmd.exe
      CommonProgramFiles=C:\Program Files\Common Files
      CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
      CommonProgramW6432=C:\Program Files\Common Files
      FP_NO_HOST_CHECK=NO
      HOMEDRIVE=C:
      HOMEPATH=\Users\Administrator
      JAVA_HOME=C:\Program Files (x86)\SAP\SAP JVM 6 (61_REL i486 opt)
      LOCALAPPDATA=C:\Users\Administrator\AppData\Local
      LOGONSERVER=\\RZABLAH01
      NUMBER_OF_PROCESSORS=4
      OS=Windows_NT
      PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
      PLMVIS_82_LIBPATH=C:\Program Files (x86)\SAP\FrontEnd\SAPgui\Program
      PROCESSOR_ARCHITECTURE=AMD64
      PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
      PROCESSOR_LEVEL=6
      PROCESSOR_REVISION=3a09
      PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
      PUBLIC=C:\Users\Public
      Path=C:\oracle\ECC\11203\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\SAP\SAP JVM 6 (61_REL i486 opt)\bin
      ProgramData=C:\ProgramData
      ProgramFiles=C:\Program Files
      ProgramFiles(x86)=C:\Program Files (x86)
      ProgramW6432=C:\Program Files
      SAPINST_EXEDIR_CD=G:/SOFT/COM/INST
      SAPINST_JRE_HOME=C:/Users/ADMINI~1/AppData/Local/Temp/sapinst_exe.2796.1411607362/jre
      SAP_DIR_PERF=C:\usr\sap\PRFCLOG
      SELFEXTRACTOR_EXECUTABLE_NAME=G:/SOFT/COM/INST/sapinst.exe
      SESSIONNAME=Console
      SecSpecialMode=710916
      SystemDrive=C:
      SystemRoot=C:\Windows
      TEMP=C:\Users\ADMINI~1\AppData\Local\Temp
      TMP=C:\Users\ADMINI~1\AppData\Local\Temp
      USERDOMAIN=RZABLAH01
      USERDOMAIN_ROAMINGPROFILE=RZABLAH01
      USERNAME=Administrator
      USERPROFILE=C:\Users\Administrator
      windir=C:\Windows
    User: RZABLAH01\Administrator, Id: S-1-5-21-3086296020-3121675482-1484945983-500
    Working directory: C:/Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP
    Current access token
    ====================
    Could not get thread token. Last error: 1008. I assume that no thread token exists.
    Got process token.
    Privileges:
      Privilege SeTimeZonePrivilege, display name: Change the time zone, not enabled.
      Privilege SeBackupPrivilege, display name: Back up files and directories, not enabled.
      Privilege SeCreateSymbolicLinkPrivilege, display name: Create symbolic links, not enabled.
      Privilege SeRestorePrivilege, display name: Restore files and directories, not enabled.
      Privilege SeShutdownPrivilege, display name: Shut down the system, not enabled.
      Privilege SeDebugPrivilege, display name: Debug programs, not enabled.
      Privilege SeAssignPrimaryTokenPrivilege, display name: Replace a process level token, not enabled.
      Privilege SeSystemEnvironmentPrivilege, display name: Modify firmware environment values, not enabled.
      Privilege SeIncreaseQuotaPrivilege, display name: Adjust memory quotas for a process, not enabled.
      Privilege SeChangeNotifyPrivilege, display name: Bypass traverse checking, enabled.
      Privilege SeRemoteShutdownPrivilege, display name: Force shutdown from a remote system, not enabled.
      Privilege SeTcbPrivilege, di

    Hello Rafael,
    I'm also about to install an IDES EHP7 ERP 6.0 and have seen that the Support Release 2 is available. Perhaps this will help you to go forward.
    Best regards,
    GP

  • Error in the SAP ERP 6.0 Installation

    Hello everybody,
    i have a error in the phase 43 of 46 in the ERP 6.0 Installation.
    Here are my UTL_configure_usages.log , i hope everone can help me by the solution. It´s my first time at the Installation of a SAP System.
    +Path   : Exception : The Usage Type SM-APP/sap.com from product SOLMAN is not activated!+
    +java.lang.Exception+
    ++     at com.sap.exception.BaseExceptionInfo.traceAutomatically(BaseExceptionInfo.java:1141)++
    ++     at com.sap.exception.BaseExceptionInfo.(UTInfoException.java:94)++
    ++     at com.sap.sl.ut.manager.persistence.db.InfoManager.setConfigured(InfoManager.java:450)++
    ++     at com.sap.sl.ut.manager.persistence.db.DataBaseInfoFactory.setConfigured(DataBaseInfoFactory.java:1504)++
    ++     at com.sap.sl.ut.manager.command.Configure.execute(Configure.java:30)++
    ++     at com.sap.sl.ut.manager.command.Command.exec(Command.java:88)++
    ++     at com.sap.sl.ut.manager.UtlMain.exec(UtlMain.java:74)++
    ++     at com.sap.sl.ut.manager.UtlMain.main(UtlMain.java:70)++
    ++     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)++
    ++     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)++
    ++     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)++
    ++     at java.lang.reflect.Method.invoke(Method.java:324)++
    ++     at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)++
    +Jan 18, 2010 2:52:21 AM  Info   : Precondition not fulfilled. The Usage Type needs to be active. Return code: 56+

    An error occurred while processing service SAP ERP 6.0 Support Release 3 > SAP Systems > Oracle > Central System > Central System( Last error reported by the step :uncaught exception: nw.sdm.deploymentErrorWithLog: SDM deployment failed for at least one of the components to be deployed. SOLUTION: Check C:\Program Files/sapinst_instdir/ERP/SYSTEM/ORA/CENTRAL/AS/callSdmViaSapinst.log for more information. (in script unknown, line 0: And here are my logfile , i hope you can help me for a solution. I have restart the SAP System and start it again and click retry but nothing happen, the same error comes again. Jan 19, 2010 7:34:14 AM Info: Initial deployment: Selected development component 'tc/kmc/bc.uwl.ui/wd_pp'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'1' will be deployed. Jan 19, 2010 7:34:14 AM Info: No action: Selected development component 'com.sap.portal.nav.ws.NavigationWSEar'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'2' will not be deployed because containing software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210193159''/'2' will not be deployed. Jan 19, 2010 7:34:14 AM Info: No action: Selected development component 'caf/eu/gp/ui/gpconf'/'sap.com'/'MAIN_APL70VAL_C'/'1534144'/'3' will not update currently deployed development component 'caf/eu/gp/ui/gpconf'/'sap.com'/'MAIN_APL70VAL_C'/'1534144'/'2'. Jan 19, 2010 7:34:14 AM Info: No action: Selected development component 'caf/eu/gp/croom/content'/'sap.com'/'MAIN_APL70VAL_C'/'1498043'/'3' will not update currently deployed development component 'caf/eu/gp/croom/content'/'sap.com'/'MAIN_APL70VAL_C'/'1498043'/'1'. Jan 19, 2010 7:34:14 AM Info: No action: Selected development component 'com.sap.prt.ws.container'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not be deployed because containing software component 'EPBC2'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210152356''/'2' will not be deployed. Jan 19, 2010 7:34:14 AM Info: Ending deployment prerequisites. All items are correct. Jan 19, 2010 7:35:49 AM Info: Saved current Engine state. Jan 19, 2010 7:35:49 AM Info: Starting: Initial deployment: Selected development component 'caf/eu/gp/ws/msosrv'/'sap.com'/'MAIN_APL70VAL_C'/'963790'/'3' will be deployed. Jan 19, 2010 7:35:49 AM Info: SDA to be deployed: C:\usr\sap\DRC\DVEBMGS00\SDM\root\origin\sap.com\caf\eu\gp\ws\msosrv\MAIN_APL70VAL_C\3\963790\sap.com_cafeugpwsmsosrv.sda Jan 19, 2010 7:35:49 AM Info: Software type of SDA: J2EE Jan 19, 2010 7:35:49 AM Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) ***** Jan 19, 2010 7:35:56 AM Info: Begin of log messages of the target system: 10/01/19 07:35:50 - *********************************************************** 10/01/19 07:35:51 - Start updating EAR file... 10/01/19 07:35:51 - start-up mode is lazy 10/01/19 07:35:51 - EAR file updated successfully for 47ms. 10/01/19 07:35:51 - Start deploying ... 10/01/19 07:35:51 - EAR file uploaded to server for 32ms. 10/01/19 07:35:56 - ERROR: NOT deployed. The Deploy Service returned the following error: For detailed information see the log file of the Deploy Service. Exception is: com.sap.engine.services.rmi_p4.P4ConnectionException: Possible problem: no available running server node. Check your running servers. at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:700) at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:688) at com.sap.engine.services.rmi_p4.Parser.newRequest(Parser.java:180) at com.sap.engine.services.rmi_p4.Connection.run(Connection.java:427) at java.lang.Thread.run(Thread.java:534) ; 10/01/19 07:35:56 - *********************************************************** Jan 19, 2010 7:35:56 AM Info: End of log messages of the target system. Jan 19, 2010 7:35:56 AM Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) ***** Jan 19, 2010 7:35:56 AM Error: Aborted: development component 'caf/eu/gp/ws/msosrv'/'sap.com'/'MAIN_APL70VAL_C'/'963790'/'3', grouped by software component 'SAP-EU'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071210153525''/'3': Caught exception during application deployment from SAP J2EE Engine's deploy API: com.sap.engine.deploy.manager.DeployManagerException: ERROR: NOT deployed. The Deploy Service returned the following error: com.sap.engine.services.rmi_p4.P4ConnectionException: Possible problem: no available running server node. Check your running servers. Exception is: com.sap.engine.services.rmi_p4.P4ConnectionException: Possible problem: no available running server node. Check your running servers. at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:700) at com.sap.engine.services.rmi_p4.P4ObjectBrokerClientImpl.getException(P4ObjectBrokerClientImpl.java:688) at com.sap.engine.services.rmi_p4.Parser.newRequest(Parser.java:180) at com.sap.engine.services.rmi_p4.Connection.run(Connection.java:427) at java.lang.Thread.run(Thread.java:534) ; (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).DMEXC) Jan 19, 2010 7:35:56 AM Info: Starting to save the repository Jan 19, 2010 7:35:57 AM Info: Finished saving the repository

Maybe you are looking for

  • Checking for new mail icon next to mailbox seems to have disapeared

    After upgrading to OS X Mountain Lion I noticed that the icon next to each mailbox that shows when checking for new mail is not there.  I wonder if anyone else has noticed this, and if they have found a fix?

  • PI Testtools

    Hi, currently i'm searching für testtools to test PI scenarios. They should provide the creation of testsuites and plans which can be executed automatically. Does anyone know such tools, or has experience with them? The only ones i know thus far are:

  • Sharpening Raw files: what am I doing wrong?

    My problem is getting my shots (Nikon D80 & Nikon Lenses + Tripod) through the Alamy quality control barrier!  I have had three rejections so far.  I am following the workflow suggested in Martin Evening's book on CS4 which suggests that CS4 camera R

  • HOW CAN I FIND THE FOLDER USED BY IPHOTO

    HI how do i change the path of my iphoto library (or create a new one) this is easy in itunes but scratching my head with iphoto Regards j1s

  • Random application object lost in Portal

    Hi people, I'm having a problem with the application object. Some times, in a random way, i'm losing the state of the application object between request's. This appens when I'm using the BSP application in the SAP Portal. Thanks, Paulo Ruivo