ABAP Error   or    SD Error ?

Hi All, I'm in entry stage of SD Module, Please help me, I & my computer stuck with a system error
--Unable to lock Table/view V_TVAK. while going for tcode VOV8 as well as Path.
--Unable to lock table/view V_TVKO while difining Sales Orgn.
--Unable....................view T001 while copying co. code.
not only this 3 but also almost all screen, can't open
Hope its an ABAP issue,  please suggest.
Unable to open a screen neithor through tcode nor through path.
System suggests some solution but I'm unable to understand it. Please any one guide me. Definitily there is not only reward, award also will nurture. Can send solution to my mail Id: [email protected]
....Sarat
<b>System shows the error details:</b>
Run time errors: RAISE_EXCEPTION
Exception condition "PERS_KEY_LOCKED" raised
<b>Error analysis:</b>
A RAISE statement in the program "CL_PERS_ADMIN=============CP" raised the exception Condition "PERS_KEY_LOCKED"
Since the exception was not intercepted by a superior program in the hierarchy, processing was terminated.
<b>How to correct the error:</b>
You may able to find an interim solution to the problem in the SAP note system. If you have access to the note system yourself, use the following search criteria:
"RAISE_EXCEPTION" C
"CL_PERS_ADMIN=================CP" or "CL_PERS_ADMIN=================CM02"
"SET_DATA"
or
"CL_PERS_ADMIN=================CP" "PERS_KEY_LOCKED"
or
"RMOT001K" "PERS_KEY_LOCKED"

Hi everybody,
Now have found out on my own that these traces goe's to the files like dev_rfc on the SAP filesystem which can be viewed with  AL11. Is there any other tool to have a more user friendly view on these traces as you can not be sure in which of the 10 ore more dev_rfc trace files your errors are in.
Thanks for any help.
André

Similar Messages

  • After installation NetWeaver 7.01 ABAP Trial Version "Logon Error Message"

    Hello all,
    After a sucefull installation of NetWeaver 7.01 ABAP Trial Version and when i tried to acess sap through web browser i get the following error:
    Logon error message
    Service cannot be reached
    What has happened?
    URL http://localhost:8000/sap/bc/gui/sap/its/webgui call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system NSP with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:netweaver_NSP_00-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden
    With Sap Logon i can login correctly. Does anyone have an ideia how can i access through a web browser?
    Thanks
    Edited by: Pedro Bessa on Jul 7, 2009 12:17 AM

    thanks,
    thanks!
    I have done that:
    and activated: 'sap/bc/gui/sap/its/webgui right click on each relevant service and activate it'
    is it the only service to activate, because I have errors on the url : http://localhost:8000/sap/bc/gui/sap/its/webgui?sap-system-login-basic_auth=X&sap-client=000&sap-language=EN
    My Error:
    Note
    The following error text was processed in the system NSP : Template interpretation cancelled, syntax error.
    The error occurred on the application server shai1_NSP_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
          SYSTEM-EXIT of program SAPLSMTR_NAVIGATION

  • ABAP MAPPING : Getting An Error

    hi all
    i am using a scenario where i am sending data from r/3(prog)>xi>R/3(RFC).
    in between i am using ABAP MAPPING
    i am getting an error:
    ERROR:  "" MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: java.lang.StringIndexOutOfBoundsException: String index out of range: -7: com.sap.aii.af.rfc.afcommunication.RfcAFWException: java.lang.StringIndexOutOfBoundsException: String index out of range: -7""
    the ABAP MAPPING which i am using:
    METHOD IF_MAPPING~EXECUTE.
      BREAK-POINT.
      * initialize iXML
      TYPE-POOLS: IXML.
      TYPE-POOLS: IXML.
      DATA: L_IXML TYPE REF TO IF_IXML.
    *creating the Interface by calling the create method in class C_IXML
      CALL METHOD CL_IXML=>CREATE
    EXPORTING
       TYPE   = 0
        RECEIVING
          RVAL   = L_IXML.
    create stream factory
      DATA: STREAMFACTORY TYPE REF TO IF_IXML_STREAM_FACTORY.
      CALL METHOD L_IXML->CREATE_STREAM_FACTORY
        RECEIVING
          RVAL = STREAMFACTORY.
    create input stream
      DATA: ISTREAM TYPE REF TO IF_IXML_ISTREAM.
      CALL METHOD STREAMFACTORY->CREATE_ISTREAM_XSTRING
        EXPORTING
          STRING = SOURCE
        RECEIVING
          RVAL   = ISTREAM.
    *This iXML factory can create an empty XML document object named IDOCUMENT.
    initialize input document
      DATA:  IDOCUMENT TYPE REF TO IF_IXML_DOCUMENT.
      CALL METHOD L_IXML->CREATE_DOCUMENT
        RECEIVING
          RVAL = IDOCUMENT.
    parse input document
      DATA: IPARSER TYPE REF TO IF_IXML_PARSER.
      CALL METHOD L_IXML->CREATE_PARSER
        EXPORTING
          DOCUMENT       = IDOCUMENT
          ISTREAM        = ISTREAM
          STREAM_FACTORY = STREAMFACTORY
        RECEIVING
          RVAL           = IPARSER.
      IPARSER->PARSE( ).
      DATA: ROOT TYPE REF TO IF_IXML_ELEMENT.
    get message content of tag
      DATA: INCODE  TYPE REF TO IF_IXML_NODE_COLLECTION,
            INCODE1 TYPE REF TO IF_IXML_NODE_COLLECTION,
            INCODE2 TYPE REF TO IF_IXML_NODE_COLLECTION,
            INCODE0  TYPE REF TO IF_IXML_NODE_COLLECTION.
      CALL METHOD IDOCUMENT->GET_ELEMENTS_BY_TAG_NAME
        EXPORTING
         DEPTH     = 0
          NAME      = 'MANDT'
         NAMESPACE = ''
        RECEIVING
          RVAL      = INCODE0 .
      CALL METHOD IDOCUMENT->GET_ELEMENTS_BY_TAG_NAME
      EXPORTING
         DEPTH     = 0
        NAME      = 'EMPNO'
         NAMESPACE = ''
      RECEIVING
        RVAL      = INCODE.
      CALL METHOD IDOCUMENT->GET_ELEMENTS_BY_TAG_NAME
    EXPORTING
         DEPTH     = 0
    NAME      = 'EMPNAME'
         NAMESPACE = ''
    RECEIVING
    RVAL      = INCODE1.
      CALL METHOD IDOCUMENT->GET_ELEMENTS_BY_TAG_NAME
    EXPORTING
         DEPTH     = 0
    NAME      = 'DEPARTMENTNAME'
         NAMESPACE = ''
    RECEIVING
    RVAL      = INCODE2.
      DATA: URI TYPE STRING.
      URI = 'urn:sap-com:document:sap:rfc:functions'.
    * build up output document =============================================
    create output document
      DATA: ODOCUMENT TYPE REF TO IF_IXML_DOCUMENT.
      CALL METHOD L_IXML->CREATE_DOCUMENT
        RECEIVING
          RVAL = ODOCUMENT.
      DATA: RET_VALUE TYPE I.
    *At this point you can add the nodes (elements, attributes) into the document. First you have to declare the root element node.
      DATA: L_ELEMENT_ROOT TYPE REF TO IF_IXML_ELEMENT.
      CALL METHOD ODOCUMENT->CREATE_ELEMENT_NS
        EXPORTING
          NAME   = 'ZTEST1'
          PREFIX = 'ns1'
          URI    = 'urn:sap-com:document:sap:rfc:functions'
        RECEIVING
          RVAL   = L_ELEMENT_ROOT.
      DATA: L_ELEMENT_NODE TYPE REF TO IF_IXML_ELEMENT.
      CALL METHOD ODOCUMENT->CREATE_SIMPLE_ELEMENT
        EXPORTING
          NAME      = 'ZTEST1'
         NAMESPACE = 'xmlns ns1 urn:sap-com:document:sap:rfc:functions'
          PARENT     = ODOCUMENT
       VALUE     = '?xml version="1.0" encoding="UTF-8"?'
        RECEIVING
          RVAL      = L_ELEMENT_ROOT.
      DATA: ATTRIBUTE TYPE REF TO IF_IXML_ATTRIBUTE.
      CALL METHOD ODOCUMENT->CREATE_ATTRIBUTE_NS
        EXPORTING
          NAME   = 'ZTEST1'
          PREFIX = 'xmlns'" ns1="urn:sap-com:document:sap:rfc:functions"'
          URI    = 'urn:sap-com:document:sap:rfc:functions'
        RECEIVING
          RVAL   = ATTRIBUTE.
      RET_VALUE = ODOCUMENT->SET_NAMESPACE_PREFIX(
    PREFIX = 'ns1').
      CALL METHOD ATTRIBUTE->SET_VALUE
        EXPORTING
          VALUE = URI
        RECEIVING
          RVAL  = RET_VALUE.
      CALL METHOD L_ELEMENT_ROOT->SET_ATTRIBUTE_NODE_NS
        EXPORTING
          NEW_ATTR = ATTRIBUTE
        RECEIVING
          RVAL     = RET_VALUE.
      DATA: NODE_LIST_COLLECTION TYPE REF TO IF_IXML_NODE_COLLECTION.
    add node to the output document
      DATA: OUTCODE0 TYPE REF TO IF_IXML_NODE.
      DATA: OUTCODE  TYPE REF TO IF_IXML_NODE.
      DATA: OUTCODE1 TYPE REF TO IF_IXML_NODE.
      DATA: OUTCODE2 TYPE REF TO IF_IXML_NODE.
      DATA: INDEX1 TYPE SY-INDEX.
      DATA: INDEX TYPE SY-INDEX.
      DATA IRC TYPE I.
      CALL METHOD IDOCUMENT->GET_ELEMENTS_BY_TAG_NAME
        EXPORTING
       DEPTH     = 0
          NAME      = 'MANDT'
       NAMESPACE = ''
        RECEIVING
          RVAL      =  NODE_LIST_COLLECTION.
      DATA: LENGTH TYPE I.
      CALL METHOD NODE_LIST_COLLECTION->GET_LENGTH
        RECEIVING
          RVAL = LENGTH.
      WHILE INDEX < LENGTH.
        CALL METHOD IDOCUMENT->CREATE_SIMPLE_ELEMENT
          EXPORTING
            NAME      = 'DATA'
       NAMESPACE = ''
            PARENT     = L_ELEMENT_ROOT
       VALUE     =
          RECEIVING
            RVAL      =  L_ELEMENT_NODE .
        CALL METHOD INCODE0->GET_ITEM
          EXPORTING
            INDEX = INDEX
          RECEIVING
            RVAL  = OUTCODE0.
        CALL METHOD INCODE->GET_ITEM
          EXPORTING
            INDEX = INDEX
          RECEIVING
            RVAL  = OUTCODE.
        CALL METHOD INCODE1->GET_ITEM
          EXPORTING
            INDEX = INDEX
          RECEIVING
            RVAL  = OUTCODE1.
        CALL METHOD INCODE2->GET_ITEM
          EXPORTING
            INDEX = INDEX
          RECEIVING
            RVAL  = OUTCODE2.
        CALL METHOD L_ELEMENT_NODE->APPEND_CHILD
          EXPORTING
            NEW_CHILD = OUTCODE0
          RECEIVING
            RVAL      = IRC.
        CALL METHOD L_ELEMENT_NODE->APPEND_CHILD
          EXPORTING
            NEW_CHILD = OUTCODE
          RECEIVING
            RVAL      = IRC.
        CALL METHOD L_ELEMENT_NODE->APPEND_CHILD
          EXPORTING
            NEW_CHILD = OUTCODE1
          RECEIVING
            RVAL      = IRC.
        CALL METHOD L_ELEMENT_NODE->APPEND_CHILD
          EXPORTING
            NEW_CHILD = OUTCODE2
          RECEIVING
            RVAL      = IRC.
        ADD 1 TO INDEX.
      ENDWHILE.
    render document ======================================================
    create output stream
      DATA: OSTREAM TYPE REF TO IF_IXML_OSTREAM.
      CALL METHOD STREAMFACTORY->CREATE_OSTREAM_XSTRING
        EXPORTING
          STRING = RESULT
        RECEIVING
          RVAL   = OSTREAM.
    DATA: IPARSER TYPE REF TO IF_IXML_PARSER.
      CALL METHOD L_IXML->CREATE_PARSER
        EXPORTING
          DOCUMENT       = ODOCUMENT
          ISTREAM        = ISTREAM
          STREAM_FACTORY = STREAMFACTORY
        RECEIVING
          RVAL           = IPARSER.
      IPARSER->PARSE( ).
    create renderer
      DATA: RENDERER TYPE REF TO IF_IXML_RENDERER.
      CALL METHOD L_IXML->CREATE_RENDERER
        EXPORTING
          DOCUMENT = ODOCUMENT
          OSTREAM  = OSTREAM
        RECEIVING
          RVAL     = RENDERER.
      IRC = RENDERER->RENDER( ).
    ENDMETHOD.
    plz help me out ASAP
    thnks
    kalyan

    hi
        all
    now the situation is that i am able to send the data to R/3,
    But in RWB-->MessageMonitoring ->version>Message Contents i am getting a error :
    *XML Parsing Error: not well-formed
    Location: http://aipid:50000/mdt/messagecontentservlet?attachment=0
    Line Number 1, Column 176:*
    <?xml version="1.0"?><ns1:ZTEST1 xmlns:ns1="urn:sap-com:document:sap:rfc:functions"><DATA><MANDT>210</MANDT><EMPNO>000000000023</EMPNO><EMPNAME>C</EMPNAME></DATA></ns1:ZTEST1 xmlns:ns1="urn:sap-com:document:sap:rfc:functions">
    it is not converted into XML ,the underline is the error which it is showing.
    it would be great if any one can figure it out what might be the cause of this error
    thanks
    kalyan

  • HTTP connection to ABAP Runtime failed. Error: 403 Forbidden

    Hi ALL
    We where testing our scenario using the Test Configuration in Integration Engine.
    We have come across the following error in the second step of Determining the receiver.Here is the error message we received...
    HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: _http://SAPXDV01.sap.client1.local:8000/sap/xi/simulation?sap-client=150 User: PIDIRUSER
    Please, do let us know ... if you have received similar error & what solution can be applied...
    Your help is greatly appreciated!
    Thank you,
    Patrick

    Hi,
    Go through this thread...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0f00c890-0201-0010-beb2-c96050edc426
    JCO_COMMUNICATION_FAILURE
    Error in XI server: JCO_COMMUNICATION_FAILURE in Message Mapping
    This might help you..
    Regards,
    Divya

  • ABAP client proxy   401 error

    Hi i have generated a ABAP client proxy in my ECC system and sending an outbound message to XI.  i get the following error.
    HTTP response contains status code 401 with the description Unauthorized Error while sending by HTTP (error code: 401, error text: Unauthorized)
    I have tested the following.
    1) My sld and ECC system have the integration engine and pipeline  settings for the XI Server: http://server:8000/sap/xi/engine?type=entry
    2) logon to the URL http://server:8000/sap/xi/engine  with user XIAPPLUSER and pwd in the browser because of the error 'Der Aufruf der URL http://server:8000/sap/xi/engine wurde aufgrund fehlerhafter Anmeldedaten abgebrochen'
    any sugestions ?  using a proxy as target works fine

    Hi ,
    You seem to have a problem with the XIAPPLUSER logon. Can you check that the user has the appropriate authorizations? Maybe the user is locked? Maybe the password has been incorrectly entered?
    XIAPPLUSER should have the role SAP_XI_APPL_SERV_USER.
    Also, check that the XI engine service has been activated.
    Transaction SICF. Default_host->sap->xi Activate the entire node with all subtrees.
    Cheers
    Manish

  • ABAP to Java - JCo error

    I followed all the instructions in Gregor's blog: /people/gregor.wolf3/blog/2004/08/26/setup-and-test-sap-java-connector-outbound-connection
    This is based on the Example5.java that comes bundled with JCo software. I was able to start the server, I was able to  successfully test my RFC destination, but when I actually run by ABAP program the return error is:
    JCO.Server could not find server function 'JCOSERVER01'
    I am running the java code on my local machine on eclipse. And in the console this is what I get after the call from the ABAP program:
    Server JCOSERVER01 changed state from [ STOPPED ] to [ STARTED ]
    Server JCOSERVER02 changed state from [ STOPPED ] to [ STARTED ]
    Server JCOSERVER02 changed state from [ STARTED ] to [ STARTED  LISTENING ]
    Server JCOSERVER01 changed state from [ STARTED ] to [ STARTED  LISTENING ]
    Server JCOSERVER01 changed state from [ STARTED  LISTENING ] to [ STARTED  LISTENING  BUSY ]
    Exception in server JCOSERVER01:
    com.sap.mw.jco.JCO$Exception: (120) JCO_: JCO.Server could not find server function 'JCOSERVER01'
    com.sap.mw.jco.JCO$Exception: (120) JCO_: JCO.Server could not find server function 'JCOSERVER01'
         at com.sap.mw.jco.rfc.MiddlewareRFC$Server.nativeListen(Native Method)
         at com.sap.mw.jco.rfc.MiddlewareRFC$Server.listen(MiddlewareRFC.java:1395)
         at com.sap.mw.jco.JCO$Server.listen(JCO.java:7067)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:6996)
         at java.lang.Thread.run(Thread.java:534)
    Server JCOSERVER01 changed state from [ STARTED  LISTENING  BUSY ] to [ STARTED  LISTENING ]
    Server JCOSERVER01 changed state from [ STARTED  LISTENING ] to [ STARTED ]
    Server JCOSERVER01 changed state from [ STARTED ] to [ STOPPED ]
    Server JCOSERVER01 changed state from [ STOPPED ] to [ STARTED ]
    Server JCOSERVER01 changed state from [ STARTED ] to [ STARTED  LISTENING ]
    Server JCOSERVER01 changed state from [ STARTED  LISTENING ] to [ STARTED  LISTENING  BUSY ]
    Pls help!
    Thanks in adv
    gs

    Hi Prashil,
    I am getting the error when I am testing using the test program from the blog.
    Here it is:
    DATA: REQUTEXT LIKE SY-LISEL,
          RESPTEXT LIKE SY-LISEL,
          ECHOTEXT LIKE SY-LISEL.
    DATA: RFCDEST like rfcdes-rfcdest VALUE 'NONE'.
    DATA: RFC_MESS(128).
    REQUTEXT = 'HELLO WORLD'.
    RFCDEST = 'Z_TEST_ABAP_TO_JCO'. "corresponds to the destination name defined in the SM59
    CALL FUNCTION 'JCOSERVER01'
       DESTINATION RFCDEST
       EXPORTING
         REQUTEXT = REQUTEXT
       IMPORTING
         RESPTEXT = RESPTEXT
         ECHOTEXT = ECHOTEXT
       EXCEPTIONS
         SYSTEM_FAILURE        = 1 MESSAGE RFC_MESS
         COMMUNICATION_FAILURE = 2 MESSAGE RFC_MESS.
    IF SY-SUBRC NE 0.
        WRITE: / 'Call STFC_CONNECTION         SY-SUBRC = ', SY-SUBRC.
        WRITE: / RFC_MESS.
    ENDIF.
    Also I have created and successfully tested the RFC destination: "Z_TEST_ABAP_TO_JCO" with the program id: "JCOSERVER01".
    And "JCOSERVER01" is the name of one of the two servers started in the java program Example5.java.
    Thanks
    gs

  • ABAP/4 run time error with error code  SNAP_NO_NEW_ENTRY

    Dear All,
               I've installed SAP R/3 IDES on Oracle on Windows 2003 server.After clicking Log on button , I should be asked to enter client,user and password.But, my system does not display such details.Instead I get ABAP/4 run time error with error code  SNAP_NO_NEW_ENTRY that too after a long time.
                Can you please address what is the reason for this problem and how to over ride it?
    Regards,
    S.Suresh

    Hi,
    the most probable reason is an archiver stuck. Backup the archived redo log files and delete them afterwards.
    The database will archive some more logs after this. Handle them in the same manor. For complete explanation search for brtools.
    Regards
    Ralph Ganszky

  • NW2004s ABAP Trial Version Installation Error

    Hello,
    I've tried to install the NW2004s ABAP trial to my home computer and received the following error in the error log:
    (Sep 27, 2006 3:27:41 AM), Install,
    com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file D:\sapdb\NSP\log.txt for details.
    (Sep 27, 2006 3:27:41 AM), Install,
    com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException:
    (error code = 601; message="Wed Sep 27 03:27:41 EDT 2006 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile C:/DOCUME1/ANYIZH1/LOCALS~1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="Wed Sep 27 03:27:41 EDT
    2006 An Error happened during the Change of the MaxDB Database passwords. Check end of Logfile
    C:/DOCUME1/ANYIZH1/LOCALS~1/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:247)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown
    Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown
    Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown
    Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProduct(Unknown
    Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(Unknown
    Source)
         at com.installshield.wizard.service.AbstractService.invokeImpl(Unknown Source)
         at com.installshield.product.service.product.GenericProductService.installProduct(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installAssembly(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.access$900(Unknown
    Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown
    Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    I have 1Gb of RAM and more than 30GB of free space on the partition that I planed to install the NW on.
    Could anyone let me know where the problem is?
    Thanks a lot!
    Regards,
    Anyi

    By the way, here is the log file for the MaxDB installation, which was mentioned in the previous log file:
    Wed Sep 27 02:40:02 EDT 2006 MaxDB: Start SoftwareCheck
    Wed Sep 27 02:40:02 EDT 2006 MaxDB: IndepProgPath:
    Wed Sep 27 02:40:02 EDT 2006 MaxDB: IndepDataPath:
    Wed Sep 27 02:40:02 EDT 2006 MaxDB: Software doesn't exist, Variable MAXDB_SOFTW_EXISTS set to NO
    Wed Sep 27 02:40:02 EDT 2006 MaxDB: end of Check Section!
    Wed Sep 27 02:40:19 EDT 2006 MaxDB: Start of Extracting Software and Backup.
    Wed Sep 27 02:51:20 EDT 2006 MaxDB: End of Extracting Software and Backup.
    Wed Sep 27 02:51:20 EDT 2006 MaxDB: Start of CallSdbinst
    Wed Sep 27 02:51:20 EDT 2006 MaxDB: IndepProgPath = D:/sapdb/programs
    Wed Sep 27 02:51:20 EDT 2006 MaxDB: inst_type = :restore:
    Wed Sep 27 02:51:21 EDT 2006 MaxDB: Calling sdbinst with template option sapmds
    Wed Sep 27 02:51:21 EDT 2006 MaxDB SID: NSP
    Wed Sep 27 02:51:21 EDT 2006 MaxDB drive: D:\
    Wed Sep 27 02:51:21 EDT 2006 MaxDB softwarepath: D:/sapdb
    Wed Sep 27 02:51:21 EDT 2006 MaxDB Software location: D:/sapdb/NSP/_tempLocation
    Wed Sep 27 02:51:21 EDT 2006 MaxDB backup_loc: D:/sapdb/NSP/_tempLocation/load/load_datasave
    Wed Sep 27 02:51:21 EDT 2006 MaxDB program: D:/sapdb/NSP/_tempLocation/sdbinst.exe
    Wed Sep 27 02:51:21 EDT 2006 MaxDB paramfile: D:/sapdb/NSP/_tempLocation/sapmds.txt
    Wed Sep 27 02:51:21 EDT 2006MaxDB found sdbinst
    Wed Sep 27 02:51:21 EDT 2006 MaxDB: Calling: D:/sapdb/NSP/_tempLocation/sdbinst.exe -t sapmds -f "D:/sapdb/NSP/_tempLocation/sapmds.txt" -p DBNAME=NSP -p SOFTWAREPATH="D:/sapdb" -p INSTANCEBACKUP="D:/sapdb/NSP/_tempLocation/load/load_datasave"
    Wed Sep 27 02:51:32 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:32 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:32 EDT 2006 MaxDB sdbinst:      Installation of MaxDB Software
    Wed Sep 27 02:51:32 EDT 2006 MaxDB sdbinst:      *******************************
    Wed Sep 27 02:51:32 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst: starting installation We, Sep 27, 2006 at 02:51:32
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst: operating system: Windows I386 NT 5.1 Service Pack 2
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst: callers working directory: I:/SAP/SAPNW2004sABAPTrail/image
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst: installer directory: D:/sapdb/NSP/_tempLocation
    Wed Sep 27 02:51:33 EDT 2006 MaxDB sdbinst: archive directory: D:/sapdb/NSP/_tempLocation
    Wed Sep 27 02:51:34 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:34 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst: starting preparing phase of package Base 7.6.00.32 32 bit
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:47 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst: independent data path: d:/sapdb/data
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst: independent program path: d:/sapdb/programs
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBBAS.TGZ"
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst: package Base successfully checked
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:48 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst: starting preparing phase of package SAP Utilities 7.6.00.32 32 bit
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:49 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst: : d:/sapdb/data
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst: independent program path: d:/sapdb/programs
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SAPUTL.TGZ"
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst: package SAP Utilities successfully checked
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:50 EDT 2006 MaxDB sdbinst: starting preparing phase of package SQLDBC 7.6.00.32 32 bit
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: dbc path: d:/sapdb/programs
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBC.TGZ"
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:51 EDT 2006 MaxDB sdbinst: package SQLDBC successfully checked
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst: starting preparing phase of package JDBC 7.6.00.30
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:52 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst: java driver path: d:/sapdb/programs
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBJDBC.TGZ"
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst: package JDBC successfully checked
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:53 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: starting preparing phase of package Server Utilities 7.6.00.32 32 bit
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: independent program path: d:/sapdb/programs
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBUTL.TGZ"
    Wed Sep 27 02:51:54 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst: package Server Utilities successfully checked
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst: starting preparing phase of package Database Kernel 7.6.00.32 32 bit
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst: dependent path: d:/sapdb/nsp/db
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBKRN.TGZ"
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst: package Database Kernel successfully checked
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:56 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: starting preparing phase of package Messages MSG 0.3951
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: messages path: d:/sapdb/programs
    Wed Sep 27 02:51:57 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBMSG.TGZ"
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst: package Messages successfully checked
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst: starting preparing phase of package ODBC 7.6.00.32 32 bit
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:58 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst: odbc path: d:/sapdb/programs
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBODBC.TGZ"
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst: package ODBC successfully checked
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:51:59 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: starting preparing phase of package Webtools 7.6.00.32 32 bit
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: webtools path: d:/sapdb/programs/web
    Wed Sep 27 02:52:00 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SDBWEB.TGZ"
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst: package Webtools successfully checked
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst: starting preparing phase of package SQLDBC 76 7.6.00.32 32 bit
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst: checking interferences to other packages... ok
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst: collecting data finished:
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst: dbc path: d:/sapdb/programs
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst: start extraction test run of "D:/sapdb/NSP/_tempLocation/SQLDBC76.TGZ"
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst: package SQLDBC 76 successfully checked
    Wed Sep 27 02:52:02 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: checking filesystem "D:"... free disk space ok
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: starting installation phase of package Base 7.6.00.32 32 bit
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBBAS.TGZ"
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:04 bin/
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       786432 2006-07-06 13:07:09 bin/dbmevtdisp.exe
    Wed Sep 27 02:52:03 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-06 13:04:17 bin/protconv.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       147456 2006-07-06 11:54:19 bin/sdbconfig.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7168 2006-07-06 15:26:19 bin/SDBINST.EXE
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         6144 2006-07-06 15:26:20 bin/sdbpack.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-06 15:26:20 bin/sdbreg.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-06 15:26:19 bin/sdbregview.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        13824 2006-07-06 15:26:19 bin/SDBSETUP.EXE
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7680 2006-07-06 15:26:19 bin/sdbuninst.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         7168 2006-07-06 15:26:20 bin/sdbverify.exe
    Wed Sep 27 02:52:04 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1142784 2006-07-06 15:05:23 bin/sqlcli.exe
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xsysrc.exe
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       315392 2006-07-06 12:05:57 bin/xtcpupd.exe
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       290816 2006-07-06 11:40:53 bin/xuser.exe
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_ping.exe
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:04 install/
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       192512 2006-07-06 15:22:43 install/Grid.dll
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       757760 2006-07-06 15:10:07 install/perl58.dll
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        66954 2006-07-06 15:26:18 install/RESOURCES.TGZ
    Wed Sep 27 02:52:05 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       447256 2006-07-06 15:26:18 install/SDBINST.TGZ
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       413696 2006-07-06 15:26:07 install/sdbrun.dll
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1245184 2006-07-06 15:25:05 install/Wx.dll
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      2265088 2006-07-06 15:22:14 install/wxmsw24.dll
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        64323 2006-07-06 15:26:21 install/WXPERL.TGZ
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:05 pgm/
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-06 13:04:25 pgm/dbmcli.exe
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-06 13:04:25 pgm/dbmcli_HelpInst.exe
    Wed Sep 27 02:52:06 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       212992 2006-07-06 13:25:05 pgm/regupd.exe
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       303104 2006-07-06 12:06:19 pgm/sqlping.exe
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-06 11:32:53 pgm/sqltcp.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-06 11:32:55 pgm/sqltcp1.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-06 11:32:57 pgm/sqltcp2.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-06 11:32:59 pgm/sqltcpn.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       281952 2006-07-06 15:26:47 pgm/sqluser72.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       372656 2006-07-06 15:26:50 pgm/sqluser73.dll
    Wed Sep 27 02:52:07 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       393216 2006-07-06 15:26:52 pgm/sqluser74.dll
    Wed Sep 27 02:52:08 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       438272 2006-07-06 15:26:55 pgm/sqluser74n.dll
    Wed Sep 27 02:52:08 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       516096 2006-07-06 14:52:19 pgm/sqluser76.dll
    Wed Sep 27 02:52:08 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:10 EDT 2006 MaxDB sdbinst: checking system libraries... ok
    Wed Sep 27 02:52:10 EDT 2006 MaxDB sdbinst: system path updated successfully
    Wed Sep 27 02:52:10 EDT 2006 MaxDB sdbinst: please reboot your system after installation to take effect changes
    Wed Sep 27 02:52:11 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:11 EDT 2006 MaxDB sdbinst: starting installation phase of package SAP Utilities 7.6.00.32 32 bit
    Wed Sep 27 02:52:11 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SAPUTL.TGZ"
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:32 bin/
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       602112 2006-07-06 13:04:47 bin/dbmrfc.exe
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:33 lib/
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      8572928 2006-07-06 11:31:01 lib/icudt30.dll
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       692224 2006-07-06 11:31:01 lib/icuin30.dll
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       602112 2006-07-06 11:31:01 lib/icuuc30.dll
    Wed Sep 27 02:52:12 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      5562368 2006-07-06 11:37:15 lib/librfc32u.dll
    Wed Sep 27 02:52:14 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       102400 2006-07-06 11:31:01 lib/libsapu16vc71.dll
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       249856 2006-07-06 11:31:01 lib/libsapucum.dll
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:34 pgm/
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       507904 2006-07-06 13:04:21 pgm/dbmgetf.exe
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1167360 2006-07-06 11:32:49 pgm/sapni.dll
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:34 Support/
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:34 Support/Mapfiles/
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       883889 2006-07-06 13:04:21 Support/Mapfiles/dbmgetf.map
    Wed Sep 27 02:52:15 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      1007259 2006-07-06 13:04:46 Support/Mapfiles/dbmrfc.map
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       440451 2006-07-06 11:32:49 Support/Mapfiles/sapni.map
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:34 symbols/
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      1010688 2006-07-06 11:32:49 symbols/sapni.pdb
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: starting installation phase of package SQLDBC 7.6.00.32 32 bit
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:16 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBC.TGZ"
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:09 bin/
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       876544 2006-07-06 14:58:01 bin/sqldbc_cons.exe
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:09 pgm/
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1073152 2006-07-06 14:53:41 pgm/libSQLDBC.dll
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1155072 2006-07-06 15:01:57 pgm/libSQLDBC_C.dll
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:08 sdk/
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:08 sdk/sqldbc/
    Wed Sep 27 02:52:17 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:08 sdk/sqldbc/incl/
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       155618 2006-07-06 11:37:15 sdk/sqldbc/incl/SQLDBC.h
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       193773 2006-07-06 11:37:15 sdk/sqldbc/incl/SQLDBC_C.h
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        29782 2006-07-06 11:37:15 sdk/sqldbc/incl/SQLDBC_Types.h
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:08 sdk/sqldbc/lib/
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        80380 2006-07-06 14:53:41 sdk/sqldbc/lib/libSQLDBC.lib
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       139834 2006-07-06 15:01:57 sdk/sqldbc/lib/libSQLDBC_C.lib
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:09 symbols/
    Wed Sep 27 02:52:18 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      3943424 2006-07-06 14:53:40 symbols/libSQLDBC.pdb
    Wed Sep 27 02:52:19 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      4451328 2006-07-06 15:01:55 symbols/libSQLDBC_C.pdb
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst: starting installation phase of package JDBC 7.6.00.30
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:20 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBJDBC.TGZ"
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:48 runtime/
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:48 runtime/7600/
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:48 runtime/7600/pgm/
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       540672 2006-07-06 11:53:49 runtime/7600/pgm/sapdbcbin.dll
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:48 runtime/jar/
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       489216 2006-07-06 11:37:15 runtime/jar/sapdbc.jar
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:21 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: starting installation phase of package Server Utilities 7.6.00.32 32 bit
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBUTL.TGZ"
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:49 bin/
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        65536 2006-07-06 13:06:21 bin/sdbinfo.exe
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       348160 2006-07-06 14:43:29 bin/sqlrun.dll
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/sysmon.exe
    Wed Sep 27 02:52:22 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xbackup.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xinstinfo.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xpu.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_analys.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_cons.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_server.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_show.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_start.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_stop.exe
    Wed Sep 27 02:52:23 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_wiz.exe
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_wizard.exe
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_wizstop.exe
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_wiztrc.exe
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:49 env/
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          122 2006-07-06 13:14:30 env/serv.use
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          245 2006-07-06 13:14:30 env/xstart.use
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          542 2006-07-06 13:14:30 env/xstop.use
    Wed Sep 27 02:52:24 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:49 etc/
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          207 2006-07-06 11:30:11 etc/VERSIONS
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:49 pgm/
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       466944 2006-07-06 11:54:55 pgm/serv.exe
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       270336 2006-07-06 11:54:21 pgm/show.exe
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: starting installation phase of package Database Kernel 7.6.00.32 32 bit
    Wed Sep 27 02:52:25 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBKRN.TGZ"
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:08 bin/
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       266240 2006-07-06 13:05:03 bin/backint.exe
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       786432 2006-07-06 13:07:09 bin/dbmevtdisp.exe
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       540672 2006-07-06 13:07:19 bin/dbmevthndl_display.exe
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       552960 2006-07-06 13:07:29 bin/dbmevthndl_winlog.exe
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       282624 2006-07-06 13:03:17 bin/dbmsrvctl.exe
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        42418 2006-07-06 11:37:15 bin/ireport.py
    Wed Sep 27 02:52:26 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       245760 2006-07-06 13:06:13 bin/pipe2file.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1114112 2006-07-06 13:05:25 bin/sdbfill.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       348160 2006-07-06 14:43:29 bin/sqlrun.dll
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        53248 2006-07-06 11:40:49 bin/sqlver.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        53248 2006-07-06 11:40:49 bin/sqlwhat.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xci.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xkernprot.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xoldci.exe
    Wed Sep 27 02:52:27 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xservice.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xsql.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xsqlro.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/xtracesort.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        40960 2006-07-06 14:43:31 bin/x_diagnose.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       323584 2006-07-06 13:07:43 bin/x_python.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:59 cluster/
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1982464 2006-07-06 12:05:33 cluster/dbmsrv_clu.exe
    Wed Sep 27 02:52:28 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        77824 2006-07-06 11:55:37 cluster/SAPDBMSCSEx.dll
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       122880 2006-07-06 11:55:45 cluster/sapdbmscsman.dll
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-06 11:55:15 cluster/SAPDBMSCSMan.exe
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        57344 2006-07-06 11:55:09 cluster/SAPDBMSCSRes.dll
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       303104 2006-07-06 11:55:57 cluster/service_clu.exe
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       483328 2006-07-06 11:55:55 cluster/serv_clu.exe
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       331776 2006-07-06 11:55:53 cluster/stop_clu.exe
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       335872 2006-07-06 11:55:53 cluster/strt_clu.exe
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:27:59 demo/
    Wed Sep 27 02:52:29 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      3111624 2006-07-06 11:37:15 demo/HOTEL.py
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1080 2006-07-06 11:37:15 demo/ltutorial.py
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        12046 2006-07-06 11:37:15 demo/tutoriallib.py
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:09 doc/
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4158 2006-07-06 11:37:15 doc/FirstSteps/index.html
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/Java/
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1019 2006-07-06 11:37:15 doc/FirstSteps/Java/DemodbData.class
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2239 2006-07-06 11:37:15 doc/FirstSteps/Java/DemodbData.java
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1599 2006-07-06 11:37:15 doc/FirstSteps/Java/HelloMaxDB.class
    Wed Sep 27 02:52:30 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2162 2006-07-06 11:37:15 doc/FirstSteps/Java/HelloMaxDB.java
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2662 2006-07-06 11:37:15 doc/FirstSteps/Java/HowToJava.html
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1305 2006-07-06 11:37:15 doc/FirstSteps/Java/StateMaxDB.class
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1767 2006-07-06 11:37:15 doc/FirstSteps/Java/StateMaxDB.java
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          227 2006-07-06 11:37:15 doc/FirstSteps/maxdbenv.cmd
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/ODBC/
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5213 2006-07-06 11:37:15 doc/FirstSteps/ODBC/HelloMaxDB.c
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1996 2006-07-06 11:37:15 doc/FirstSteps/ODBC/HowToODBC.html
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1101 2006-07-06 11:37:15 doc/FirstSteps/ODBC/Makefile
    Wed Sep 27 02:52:31 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/Perl/
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1686 2006-07-06 11:37:15 doc/FirstSteps/Perl/demodbData.pm
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2597 2006-07-06 11:37:15 doc/FirstSteps/Perl/HowToPerl.html
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1673 2006-07-06 11:37:15 doc/FirstSteps/Perl/StateMaxDB.pl
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/Python/
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1584 2006-07-06 11:37:15 doc/FirstSteps/Python/demodbData.py
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1572 2006-07-06 11:37:15 doc/FirstSteps/Python/HelloMaxDB-API.py
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1572 2006-07-06 11:37:15 doc/FirstSteps/Python/HelloMaxDB.py
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3746 2006-07-06 11:37:15 doc/FirstSteps/Python/HowToPython.html
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1578 2006-07-06 11:37:15 doc/FirstSteps/Python/StateMaxDB.py
    Wed Sep 27 02:52:32 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:10 doc/FirstSteps/SQLDBC/
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4225 2006-07-06 11:37:15 doc/FirstSteps/SQLDBC/HelloMaxDB.cpp
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2032 2006-07-06 11:37:15 doc/FirstSteps/SQLDBC/HowToSQLDBC.html
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1276 2006-07-06 11:37:15 doc/FirstSteps/SQLDBC/Makefile
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:03 env/
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         6940 2006-07-06 13:07:29 env/APPS.py
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4513 2006-07-06 13:07:29 env/CNR3DATA.py
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         8929 2006-07-06 13:07:29 env/CNR3TAB.py
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       194089 2006-07-06 13:14:30 env/cserv.pcf
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        18587 2006-07-06 13:07:29 env/DBMVIEWS.py
    Wed Sep 27 02:52:33 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:00 env/en/
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         7609 2006-07-06 13:14:30 env/en/DBM.en
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        16426 2006-07-06 13:07:31 env/GARBAGE.py
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          249 2006-07-06 13:14:30 env/general.use
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         2017 2006-07-06 13:07:37 env/getpackages.py
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1857 2006-07-06 13:07:31 env/INFO.py
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        14835 2006-07-06 13:07:37 env/installib.py
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        74105 2006-07-06 13:07:31 env/JDBC.py
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          396 2006-07-06 13:14:30 env/kernprot.use
    Wed Sep 27 02:52:34 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x         1662 2006-07-06 13:07:37 env/lapps.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         8840 2006-07-06 11:37:15 env/lsystab.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        19212 2006-07-06 13:07:31 env/ODBC.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1954 2006-07-06 13:07:31 env/ORADD.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       267134 2006-07-06 13:07:33 env/ORADDCOM.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        10299 2006-07-06 13:07:33 env/ORADDSYN.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       159113 2006-07-06 13:07:33 env/ORADDV.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2113 2006-07-06 13:07:33 env/PRECOM.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        49168 2006-07-06 13:07:37 env/REPOSITORY.py
    Wed Sep 27 02:52:35 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        62152 2006-07-06 13:07:31 env/SAPDBLOADER.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5196 2006-07-06 13:07:33 env/SHOWCMD.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        47440 2006-07-06 13:07:33 env/SQLDBC.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        47024 2006-07-06 13:07:33 env/SYSDBA.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        58248 2006-07-06 13:07:35 env/SYSDBACOM.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        17897 2006-07-06 13:07:35 env/SYSINFO.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       106735 2006-07-06 13:07:35 env/SYSINFOCOM.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        10964 2006-07-06 13:07:35 env/TRIGGER.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3916 2006-07-06 13:07:35 env/UDE.py
    Wed Sep 27 02:52:36 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         7309 2006-07-06 13:07:37 env/WA.py
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        54557 2006-07-06 13:07:35 env/XDD.py
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rw-rr       105718 2006-07-06 13:07:35 env/XDDCOM.py
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:03 lib/
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:04 lib/python2.3/
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         7577 2006-07-06 11:37:15 lib/python2.3/optlib.py
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       135234 2006-07-06 11:37:15 lib/python2.3/pyexpat.pyd
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:04 lib/python2.3/sdb/
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        15565 2006-07-06 11:37:15 lib/python2.3/sdb/dbapi.py
    Wed Sep 27 02:52:37 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       503808 2006-07-06 13:07:49 lib/python2.3/sdb/dbm.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       483328 2006-07-06 13:07:53 lib/python2.3/sdb/loader.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       458752 2006-07-06 13:07:59 lib/python2.3/sdb/sql.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          921 2006-07-06 11:37:15 lib/python2.3/sdb/__init__.py
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        61503 2006-07-06 11:37:15 lib/python2.3/zlib.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49218 2006-07-06 11:37:15 lib/python2.3/_socket.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        57407 2006-07-06 11:37:15 lib/python2.3/_sre.pyd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:05 misc/
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2437 2006-07-06 15:07:35 misc/create_demo_db.cmd
    Wed Sep 27 02:52:38 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          417 2006-07-06 15:07:35 misc/drop_demo_db.cmd
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:09 pgm/
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       200704 2006-07-06 13:06:17 pgm/backup.exe
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       372736 2006-07-06 11:54:09 pgm/cons.exe
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-06 11:53:51 pgm/cr_param.exe
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       940032 2006-07-06 11:37:15 pgm/dbghelp.dll
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-06 13:03:31 pgm/dbmreg.exe
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       405504 2006-07-06 13:04:11 pgm/dbmshm.exe
    Wed Sep 27 02:52:39 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1966080 2006-07-06 13:03:09 pgm/dbmsrv.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1748992 2006-07-06 13:03:51 pgm/dbmsrvscd.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-06 13:03:23 pgm/dbmstart.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-06 13:03:27 pgm/dbmstop.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       294912 2006-07-06 13:03:35 pgm/dbmunreg.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        69632 2006-07-06 14:52:15 pgm/dbpinstall.dll
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1060864 2006-07-06 12:08:59 pgm/diagnose.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      6971392 2006-07-06 13:02:57 pgm/kernel.exe
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       118784 2006-07-06 12:06:25 pgm/libhsscopy.dll
    Wed Sep 27 02:52:40 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1134592 2006-07-06 14:48:31 pgm/liboms.dll
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       151552 2006-07-06 14:52:53 pgm/libsqlcls.dll
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1073152 2006-07-06 14:53:41 pgm/libSQLDBC.dll
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1155072 2006-07-06 15:01:57 pgm/libSQLDBC_C.dll
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      2953216 2006-07-06 13:14:03 pgm/lserver.exe
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        20545 2006-07-06 11:37:15 pgm/pysapdb.exe
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       974915 2006-07-06 11:37:15 pgm/python23.dll
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rw-rr      2071185 2006-07-06 11:37:15 pgm/python23.zip
    Wed Sep 27 02:52:41 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-06 11:53:51 pgm/renparam.exe
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       290816 2006-07-06 11:54:59 pgm/service.exe
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1097728 2006-07-06 12:08:01 pgm/slowci.exe
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       405504 2006-07-06 11:55:03 pgm/sqlinst.dll
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1359872 2006-07-06 11:55:07 pgm/sqlmsg.dll
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       315392 2006-07-06 11:54:15 pgm/stop.exe
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       319488 2006-07-06 11:54:11 pgm/strt.exe
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        98304 2006-07-06 13:25:09 pgm/StudioUtil.dll
    Wed Sep 27 02:52:42 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        49152 2006-07-06 12:06:21 pgm/sysrc.exe
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-06 11:55:05 pgm/systemrc.exe
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       221184 2006-07-06 13:25:17 pgm/TableDefC.dll
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-06 13:07:21 pgm/Tools_WinEvtLog.dll
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-06 13:14:15 pgm/tracesort.exe
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:28:09 sap/
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          147 2006-07-06 11:37:15 sap/dbpinstall.lst
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1474 2006-07-06 13:04:47 sap/grantxdb.dbm
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        18192 2006-07-06 11:37:15 sap/lcinit.bat
    Wed Sep 27 02:52:43 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       126976 2006-07-06 14:52:03 sap/lvcbench.dll
    Wed Sep 27 02:52:44 EDT 2006 MaxDB sdbinst: extracting: -rw-rr           89 2006-07-06 11:37:15 sap/saprfc.ini
    Wed Sep 27 02:52:44 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        86016 2006-07-06 13:27:03 sap/sphsapdb.dll
    Wed Sep 27 02:52:44 EDT 2006 MaxDB sdbinst: extracting: -rw-rr           12 2006-07-06 11:37:15 sap/sphsapdb.lst
    Wed Sep 27 02:52:47 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:52:54 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:54 EDT 2006 MaxDB sdbinst: starting installation phase of package Messages MSG 0.3951
    Wed Sep 27 02:52:54 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBMSG.TGZ"
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:16 msg/
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          846 2006-07-06 11:37:15 msg/SDBMsg_Admin.xml
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1107 2006-07-06 11:37:15 msg/SDBMsg_Backup.xml
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3255 2006-07-06 11:37:15 msg/SDBMsg_Catalog.xml
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4595 2006-07-06 11:37:15 msg/SDBMsg_Converter.xml
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        13936 2006-07-06 11:37:15 msg/SDBMsg_Data.xml
    Wed Sep 27 02:52:55 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          333 2006-07-06 11:37:15 msg/SDBMsg_DBMCLI.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5254 2006-07-06 11:37:15 msg/SDBMsg_DBMEd.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          328 2006-07-06 11:37:15 msg/SDBMsg_DBMLog.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3179 2006-07-06 11:37:15 msg/SDBMsg_DBMScd.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        75397 2006-07-06 11:37:15 msg/SDBMsg_DBMSrv.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1071 2006-07-06 11:37:15 msg/SDBMsg_DBMSrvTest.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1321 2006-07-06 11:37:15 msg/SDBMsg_DBProc.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          553 2006-07-06 11:37:15 msg/SDBMsg_DIAGNOSE.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         7818 2006-07-06 11:37:15 msg/SDBMsg_FileDir.xml
    Wed Sep 27 02:52:56 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          477 2006-07-06 11:37:15 msg/SDBMsg_Index.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3461 2006-07-06 11:37:15 msg/SDBMsg_IOMan.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1384 2006-07-06 11:37:15 msg/SDBMsg_Join.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          697 2006-07-06 11:37:15 msg/SDBMsg_JoinPathOptimizer.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2112 2006-07-06 11:37:15 msg/SDBMsg_KernelCommon.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1035 2006-07-06 11:37:15 msg/SDBMsg_KSQL.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          801 2006-07-06 11:37:15 msg/SDBMsg_LiveCache.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-06 11:37:15 msg/SDBMsg_Loader.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5443 2006-07-06 11:37:15 msg/SDBMsg_Log.xml
    Wed Sep 27 02:52:57 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3154 2006-07-06 11:37:15 msg/SDBMsg_Messages.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          369 2006-07-06 11:37:15 msg/SDBMsg_ObjectContainer.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3159 2006-07-06 11:37:15 msg/SDBMsg_OMS.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-06 11:37:15 msg/SDBMsg_OPMSG.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          172 2006-07-06 11:37:15 msg/SDBMsg_Optimizer.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          435 2006-07-06 11:37:15 msg/SDBMsg_Query.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          442 2006-07-06 11:37:15 msg/SDBMsg_QueryRewrite.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2021 2006-07-06 11:37:15 msg/SDBMsg_Recovery.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5220 2006-07-06 11:37:15 msg/SDBMsg_Rst.xml
    Wed Sep 27 02:52:58 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         2472 2006-07-06 11:37:15 msg/SDBMsg_RTEComm.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1406 2006-07-06 11:37:15 msg/SDBMsg_RTEConf.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          889 2006-07-06 11:37:15 msg/SDBMsg_RTEDBState.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5001 2006-07-06 11:37:15 msg/SDBMsg_RTEDiag.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        14767 2006-07-06 11:37:15 msg/SDBMsg_RTEIO.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3625 2006-07-06 11:37:15 msg/SDBMsg_RTEMem.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          511 2006-07-06 11:37:15 msg/SDBMsg_RTESec.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1808 2006-07-06 11:37:15 msg/SDBMsg_RTESys.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3550 2006-07-06 11:37:15 msg/SDBMsg_RTETask.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4541 2006-07-06 11:37:15 msg/SDBMsg_RunTime.xml
    Wed Sep 27 02:52:59 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1653 2006-07-06 11:37:15 msg/SDBMsg_SAPDBAlgo.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          562 2006-07-06 11:37:15 msg/SDBMsg_SAPDBMem.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1718 2006-07-06 11:37:15 msg/SDBMsg_Savepoint.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         5909 2006-07-06 11:37:15 msg/SDBMsg_SharedSQL.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        26284 2006-07-06 11:37:15 msg/SDBMsg_SQLMan.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         9419 2006-07-06 11:37:15 msg/SDBMsg_SrvTasks.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3638 2006-07-06 11:37:15 msg/SDBMsg_Table.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr          883 2006-07-06 11:37:15 msg/SDBMsg_ToolsCommon.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1186 2006-07-06 11:37:15 msg/SDBMsg_Transaction.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         4883 2006-07-06 11:37:15 msg/SDBMsg_ZZZTest.xml
    Wed Sep 27 02:53:00 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: starting installation phase of package ODBC 7.6.00.32 32 bit
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBODBC.TGZ"
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:54 incl/
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        11380 2006-07-06 11:37:15 incl/SDBBOS.h
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        31567 2006-07-06 11:40:36 incl/sql.h
    Wed Sep 27 02:53:01 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        81467 2006-07-06 11:40:36 incl/sqlext.h
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         9534 2006-07-06 11:40:36 incl/sqltypes.h
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rw-rr        24313 2006-07-06 11:40:36 incl/sqlucode.h
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:30:54 pgm/
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x       487424 2006-07-06 13:27:49 pgm/libSDBBOS.dll
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        12288 2006-07-06 11:37:31 pgm/odbcreg.exe
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1073152 2006-07-06 11:40:15 pgm/sqlod32.dll
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x      1130496 2006-07-06 11:40:35 pgm/sqlod32w.dll
    Wed Sep 27 02:53:02 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        45056 2006-07-06 11:40:47 pgm/sqlodext.dll
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: extracting: -rwxr-xr-x        73728 2006-07-06 11:40:45 pgm/sqlsp32.dll
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: checking unpacked archive... ok
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: starting installation phase of package Webtools 7.6.00.32 32 bit
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: -
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst:
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: start real extraction of "D:/sapdb/NSP/_tempLocation/SDBWEB.TGZ"
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:37 config/
    Wed Sep 27 02:53:03 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3090 2006-07-06 13:15:45 config/mime.types
    Wed Sep 27 02:53:04 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         3167 2006-07-06 11:37:15 config/wa.reg
    Wed Sep 27 02:53:04 EDT 2006 MaxDB sdbinst: extracting: drwxr-xr-x            0 2006-07-06 15:31:37 Documents/
    Wed Sep 27 02:53:04 EDT 2006 MaxDB sdbinst: extracting: -rw-rr         1203 2006-07-06 11:37:15 Documents/index.html
    Wed Sep 27 02:53:04 EDT 2006 MaxDB sdbinst: extracting: d

  • Error number 207 error type SPECIFIC_CODE IMPORT ABAP phase error when install database instance

    IMPORT ABAP phase error when install database instance
    Error number 207 error type SPECIFIC_CODE.
    In phase   "Import ABAP" the installation halts with error. Can anyone please tell me what error should I search for and (possibly) what is the solution? 
    Thanks in advance
    synxcaccmg.cpp: 133: PSyUser CSyAccountMgtImpl::getUser(iastring sNameOrSID) const
    syxxccache.cpp: 267: CSyAccountCache::getUserImpl(name="IboSap-PC\nspadm", sid="", create=false)
    syxxccache.cpp: 276: CSyAccountCache::getUserImpl(name="IboSap-PC\nspadm", sid="", create=false, ISyProgressObserver* )
    synxcuser.cpp: 119: CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    Account user="IboSap-PC\nspadm" does not exist.
    Failed action:  with parameters
    Error number 207 error type SPECIFIC_CODE

    It is not easy, really , it has taken many hours and at the End I got the problems,.
    so I have decided to pay 20 $ every month, and I can get an access IDES to SAP, ERP, ABAP.
    without any problem.  In ABAP, I have only Sflight ,SBOOK etc. but MARA, and others tables, dont exist, .
    I know, some students have not enough money, so what can we do? every one get problem with installaion and others after installaion, with server, 3 days work, and NSP becomes RED. Yellow, etc.
    anyway. thank you for all.
    Best Regards.

  • HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL

    HI experts,
    I am tsting Test configuration in ID in Quality environment. I am getting below error for all interfaces.
    but same interfaces are working fine in Develoment environment.
    Internal Error
    HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: http://abcdxi06.abcdk.abcpower.com.sg:8000/sap/xi/simulation?sap-client=300 User: PIDIRUSER.
    thanks
    Srinivas

    Similar problem discussed here:
    HTTP connection to ABAP Runtime failed : 403 : forbidden
    Error testing configuration: "HTTP connection failed"
    Check if the port is defined, as suggested in second link.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Oct 1, 2009 1:27 PM

  • ABAP Client Proxy error code: 401, error text: Unauthorized

    Hi,
    I have Client proxy in ECC for oubound interface in PI 7.0, when i look into SXMB_MONI of ECC i can see my message with Error "HTTP response contains status code 401 with the description Unauthorized Authorization error while sending by HTTP (error code: 401, error text: Unauthorized)".
    As per few thread i already assign SAP_XI_APPL_SERV_USER role to PIAPPLUSER in ECC, still i am getting same eror.
    I do not understand how this Proxy communication work, which ECC user will be use in communication and how this communcation link to RFC destination "SAP_PROXY_ESR" type G. Even i can not see type H in ECC so i created RFC destination of type G.
    With Regards
    Sunil

    We were able to get it working by making a change in the Integration Engine Configuration (in sxmb_adm).
    Changed "Corresponding Integ. Server" from "http://<server>:<port>/sap/xi/engine?type=entry"
    to "dest://RFCdestinationName"

  • Internal error - NUMBER_GET_NEXT call error while craeating new company address

    Dear Team,
    In solution manager while we going to create company address through tcode SUCOMP and during saving the record error message occur as "Internal error -NUMBER_GET_NEXT call error".
    Please suggest for solution
    Regards,
    Ajay

    Dear Mr. Rafikul,
    There is no ABAP dump but in SM21 there are error message:-
    "Documentation for system log message D0 1 :
    The transaction has been terminated.  This may be caused by a
    termination message from the application (MESSAGE Axxx) or by an
    error detected by the SAP System due to which it makes no sense to
    proceed with the transaction.  The actual reason for the termination
    is indicated by the T100 message and the parameters.
    Additional documentation for message E0                  022
    EDI: Error process code '&' is not available
    &CAUSE&
    A syntax error was identified while processing an inbound
    <DS:GlOS.IDoc>IDoc. There is no entry with the key &v1& in 'Error
    process codes'. However, this process code was determined from the
    table of status values (TEDS1).
    &WHAT_TO_DO&
    Please check the 'Error process codes'.
    IF &DEVICE&='SCREEN'
    <DS:TRAN.WE40>Execute function
    ENDIF
    One document format shows more"
    Now my one of problem solved. When i have go to SU01 and checked in address tab, its work now. Earlier its was not work.May be executed the report Z_OSSNOTE_445575 in system, its should be working. Thanks for your answer.
    But till m facing in SUCOMP for creating company address.
    Regards,
    Ajay Asawa

  • Runtime Error in CA01 - Syntx error or generation error in a screen 1200.

    Hi,
    I am unable to identify the exact reson for this runtime error, please guid what i need to do to overcome this error.
    Transaction CA01.
    I am getting below Syntax Error in Screen 1200 of Prog SAPLCPDA
    Element CHANGE_RULE touches or overlaps other element
    Message no. 37315
    Please find below Error Log.
    Short text
        Syntx error or generation error in a screen.
    What happened?
        At the screen generation it was detected that a screen to be generated
        has a syntax error or could not be generated due to another error.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    Error analysis
        Screen "SAPLCPDA" 1200 could not be generated.
    How to correct the error
        Rerport the error to SAP if it is a SAP screen.

    Hi,
    What are the possible reasons for getting this error.
    Runtime Error in CA01 - Syntx error or generation error in a screen 1200.
    Thanks in advance

  • Error "602" System error: AK Datapart too short

    Hi all,
    Ok, I have looked just about everywhere for an answer to this but to no avail...I even tried under a few rocks we have laying around.
    Anyway here it is:
    While running a compression in BW we get Error "602"  System error: AK Datapart too short.
    This is happening while doing a select statement during the compression of the infocube.  It does not happen all the time, just kind like when ever it feels like.  The only note I could find in OSS was one about Live Cache and it does not seem to apply.
    Here is the dump which I really hate doing this, but it gives all the info needed :
    untime Error          DBIF_DSQL2_SQL_ERROR
    Except.                CX_SY_NATIVE_SQL_ERROR
    Date and Time          08/15/2007 12:23:09
    ShrtText
    An SQL error occurred when executing Native SQL.
    What happened?
    Error "-602" occurred in the current database connection "DEFAULT".
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    How to correct the error
    Database error text........: "System error: AK Datapart too short"
    Database error code .......: "-602"
    Triggering SQL statement...: "INSERT INTO "/BIC/EZPSD_C03" ( "KEY_ZPSD_C03P",
    "KEY_ZPSD_C03T", "KEY_ZPSD_C03U", "KEY_ZPSD_C031", "KEY_ZPSD_C032",
    "KEY_ZPSD_C033", "KEY_ZPSD_C034", "/BIC/ZNET_ASP" ) SELECT ? ,
    F."KEY_ZPSD_C03T", F."KEY_ZPSD_C03U", F."KEY_ZPSD_C031", F."KEY_ZPSD_C032","
    Internal call code.........: "[DBDS/NEW DSQL]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_DSQL2_SQL_ERROR" CX_SY_NATIVE_SQL_ERRORC
    "GP31VIZWJDTT90894L1IA5YAC7G" or "GP31VIZWJDTT90894L1IA5YAC7G"
    "TRANSFER_ALL"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    The exception must either be prevented, caught within the procedure
    "TRANSFER_ALL"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    System environment
    SAP Release.............. "640"
    Application server....... "sdcbw03"
    Network address.......... "10.64.18.76"
    Operating system......... "Linux"
    Release.................. "2.6.9-55.ELsmp"
    Hardware type............ "x86_64"
    Character length......... 16 Bits
    Pointer length........... 64 Bits
    Work process number...... 21
    Short dump setting....... "full"
    Database server.......... "sdcbw03"
    Database type............ "ADABAS D"
    Database name............ "BWP"
    Database owner........... "SAPBWP"
    Character set............ "C"
    SAP kernel............... "640"
    Created on............... "Nov 5 2006 19:46:34"
    Created in............... "Linux GNU SLES-9 x86_64 cc3.3.3"
    Database version......... "SAPDB 7.5.0.030 "
    Patch level.............. "156"
    Patch text............... " "
    Supported environment....
    Database................. "MaxDB 7.5.0"
    SAP database version..... "640"
    Operating system......... "Linux 2.6"
    Memory usage.............
    Roll..................... 16192
    EM....................... 20949280
    Heap..................... 0
    Page..................... 24576
    MM Used.................. 9235016
    MM Free.................. 3331560
    SAP Release.............. "640"
    User and Transaction
    Client.............. 011
    User................ "ALEREMOTE"
    Language key........ "E"
    Transaction......... " "
    Program............. "GP31VIZWJDTT90894L1IA5YAC7G"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "GP31VIZWJDTT90894L1IA5YAC7G" in
    "TRANSFER_ALL".
    The main program was "RSPROCESS ".
    The termination occurred in line 573 of the source code of the (Include)
    program "GP31VIZWJDTT90894L1IA5YAC7G"
    of the source code of program "GP31VIZWJDTT90894L1IA5YAC7G" (when calling the
    editor 5730).
    The program "GP31VIZWJDTT90894L1IA5YAC7G" was started as a background job.
    Job name........ "BI_PROCESS_COMPRESS"
    Job initiator... "ALEREMOTE"
    Job number...... 12185102
    Processing was terminated because the exception "CX_SY_NATIVE_SQL_ERROR"
    occurred in the
    procedure "TRANSFER_ALL" "(FORM)" but was not handled locally, not declared in
    the
    RAISING clause of the procedure.
    The procedure is in the program "GP31VIZWJDTT90894L1IA5YAC7G ". Its source code
    starts in line 557
    of the (Include) program "GP31VIZWJDTT90894L1IA5YAC7G ".
    Source Code Extract
    Line
    SourceCde
    543
    ENDIF.
    544
    545
    COMMIT WORK.   " commit and close cursors
    546
    547
    l_str = i_max_requid.
    548
    PERFORM msg_append(saplrscondense)
    549
    USING    'S' '355' l_str space space space
    550
    CHANGING c_t_msg.
    551
    552
    ENDFORM.                               " CONDENSE_FACTTABLE_NEW
    553
    554
    555
         Form  TRANSFER_ALL
    556
    557
    FORM TRANSFER_ALL USING i_ref_update       TYPE rs_bool
    558
    i_pdimid           TYPE I
    559
    i_pdimid_ref_point TYPE rsd_sid
    560
    i_pdimid_normal    TYPE rsd_sid
    561
    i_recordtp         TYPE rsd_sid
    562
    CHANGING e_ref_ins_cnt TYPE I
    563
    e_ins_cnt     TYPE I
    564
    c_t_msg       TYPE rs_t_msg.
    565
    566
    CALL FUNCTION 'RSDU_INFOCUBE_INDEXES_DROP'
    567
    EXPORTING
    568
    I_INFOCUBE = 'ZPSD_C03'
    569
    I_FACTTAB  = '/BIC/EZPSD_C03'.
    570
    571
    572
    EXEC SQL.
    >>>>>
    INSERT INTO "/BIC/EZPSD_C03"
    574
    ( "KEY_ZPSD_C03P"
    575
    , "KEY_ZPSD_C03T"
    576
    , "KEY_ZPSD_C03U"
    577
    , "KEY_ZPSD_C031"
    578
    , "KEY_ZPSD_C032"
    579
    , "KEY_ZPSD_C033"
    580
    , "KEY_ZPSD_C034"
    581
    , "/BIC/ZNET_ASP"
    582
    583
    SELECT :i_pdimid_normal
    584
    , F."KEY_ZPSD_C03T"
    585
    , F."KEY_ZPSD_C03U"
    586
    , F."KEY_ZPSD_C031"
    587
    , F."KEY_ZPSD_C032"
    588
    , F."KEY_ZPSD_C033"
    589
    , F."KEY_ZPSD_C034"
    590
    , SUM( F."/BIC/ZNET_ASP" )
    591
    FROM "/BIC/FZPSD_C03" F
    592
    WHERE F."KEY_ZPSD_C03P" = :i_pdimid
    Any thoughts would be helpful,
    Thanks,
    David

    This error usually occurs when there is a database lock or no space in teh database. Got DB02 and Click on Space critical objects to see whether any entries are there. If yes contact your basis to increase the space.
    Hope this helps
    Thanks,
    Satish

  • ERROR: stopping on error 7777 during MAIN IMPORT

    Dear Expert,
    When i am applying Basis and ABAP Support pack 700-17 levels i am getting following red( In Bold) entries in the action log.
       Import phase 'IMPORT_PROPER' (30.12.2008, 14:56:58)
       Error during executing the tp command 'tp IMPORT all CHE ...'
       tp return code: '0014' , tp message: 'A tool used by tp terminated for unknown reasons' , tp output:
         This is tp version 372.04.36 (release 700, unicode enabled)
         ERROR: stopping on error 7777 during MAIN IMPORT
         stopping on error 7777 during MAIN IMPORT
         tp returncode summary:
         TOOLS: Highest return code of single steps was: 14
         WARNS: Highest tp internal warning was: 0118
         standard output from tp and from tools called by tp:
       Details of the error situation can also be found in the import logs
       Interrupt the import due to an error situation (30.12.2008, 15:11:06)
       Display detailed informations concerning the error in phase 'IMPORT_PROPER'
      Abort the import due to an error situation (30.12.2008, 15:12:15)
    I have found following Notes from the SAP also applied but still i am facing the same error message
    Note 1274493 - Windows: TP/R3trans might terminate with old DB library
    Note 998004 - Update the Oracle Instant Client on Windows
    Regards
    Chandra

    Hi,
    Have you checked note 1288862? Otherwise I recommend to open a message to SAP.
    Cheers

  • FRF-00025  Unable to call function. Error message: Syntax error in program

    hi,
    when we try to import the export file,we are getting the following error in the 24th phase
    i.e., check DDIC Password.
    The Error is
    INFO       2007-10-29 15:53:20 [iaxxrfcimp.cpp:1017]
               CAbRfcImpl::callLibraryFunction
    Generating interface for remote function.
    TRACE      [iaxxrfcimp.cpp:1056]
               CAbRfcImpl::performFunctionCall
    Calling function module: INST_RFC_GET_INTERFACE
    WARNING[E] 2007-10-29 15:53:21 [iaxxrfcimp.cpp:1089]
               CAbRfcImpl::performFunctionCall
    FRF-00025  Unable to call function. Error message: Syntax error in program SAPLSUNI                                . .
    TRACE      [iaxxrfcimp.cpp:1090]
               CAbRfcImpl::performFunctionCall
    RFC failure or system exception raised
    TRACE      [iaxxrfcimp.cpp:1091]
               CAbRfcImpl::performFunctionCall
    Syntax error in program SAPLSUNI                                .
    TRACE      [iaxxbjsmod.cpp:657]
               CJSlibModule::showOkCancelBox_impl()
    <html>Test logon to SAP System I50 failed.<p>Make sure that the system is started, that the user DDIC exists and that the password of user DDIC is correct.</html>
    TRACE      [iaxxgenimp.cpp:1093]
               showDialog()
    waiting for an answer from gui
    What Could be the solution for this.
    waiting for ur reply
    SS

    Hi Friend,
    Please check whether or not there is view missing error recorded in dev_w0 trace file.
    if there is , you can try to follow this procedure in order to manually
    import the missing view definitions.
    All steps must be carried out with the <sid>adm user of the target
    system and from the install-directory:
    1. In the install-directory
    <sapinst_instdir>\...COPY\IMPORTT\SYSTEM\ABAP\ORA\UC\DB
    create a file SAPVIEW.cmd with the following content:
    tsk: "<sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\SAPVIEW.TSK"
    icf: "
    <YOUR_EXPORT_DIRECTORY>\export\DATA\SAPVIEW.STR"
    dcf: "<sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\DDLORA.TPL"
    dat: null
    dir: null
    ext: null
    Please make sure that all paths are written correctly (in one line) and
    the refered files are existant and readable. One exception:
    The SAPVIEW.TSK file is created with step 2.:
    2. Run from the command-line:
    R3load -ctf I
    <YOUR_EXPORT_DIRECTORY>\export\DATA\SAPVIEW.STR <sapinst_instdir>\...\COPY\IMPORT\SYSTEM\ABAP\ORA\UC\DB\DDLORA.TPL SAPVIEW.TSK ORA -l SAPVIEW.log
    If there's a problem reading the 'SAPVIEW.STR' file, copy the
    file to the install directory and adapt the path accordingly.
    3. Run the view import by:
    R3load.exe -i SAPVIEW.cmd -dbcodepage <YOUR_CODE_PAGE> -l SAPVIEW.log
    -stop_on_error
    4. Check both the SAPVIEW.log and the SAPVIEW.TSK file whether all views
    have been created successfully.
    If 4. is okay, restart the central instance and check whether you are
    able to log on now. If yes, continue 'sapinst' by the option 'retry' or
    'continue old installation'.
    I Hope It can be helpful.
    With Best Regards
    Julia

Maybe you are looking for

  • Error whlle translating Amount into Arabic

    Hi, I designed SAP SCRIPT for Automatic Payment Transactions (F110). this transaction is using standrd driver program RFFOD__T. When Im executing into arabic i get the error Entry AR H 3 in table T015Z does not have a delimiter (;). I have already Ch

  • Folder that can't be used on Time Capsule

    I created a folder on my time capsule that makes all icons disappear when I save to it.  I can't delete the folder because it says that the folder is in use.  I've created other folders on the TC and don't have any problem with them.  How do I get ri

  • HT4061 iphone is disabled message, but cannot slide to turn device off to wipe

    no sim installed. daughter locked herself out of phone. unable to connect to normal home computer. unable to turn device off in order to wipe device. help!

  • Can't send files from/to MBP Mavericks/ipad

    Hi, I am unable to send files from my mac book pro 10.9 to the ipad4 & vice versa.  They are connected on bluetooth but when I press send I get the message "this devise does not have the necessary services". thanks HH

  • Show sudo-disclaimer more than once

    The first time one uses sudo this message appears: We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things: #1) Respect the privacy of others. #2) Think before you type. #3) With g