Sap Archiving u0096 STO error on version ECC 6.0

Hi experts. I take a long of time with this error and I hope that you can help me. Explain the program.
We have a archiving project of no standard objects. This objects run on Sap version 4.6C, but now, on version ECC 6.0, the Store program give a execution error. The log of the STO Job on Sara transaction is the follow:
Job started
Step 001 started (program RSARCH_STORE_FILE, variant , user ID ARUIZ)
Archive file 000241-001ZIECI_RF02 is being processed
Archive file 000241-001ZIECI_RF02 does not exist (Message no. BA111)
Error occured when checking the stored archive file 000241-001ZIECI_RF02 (Message no. BA194)
Job cancelled after system exception ERROR_MESSAGE (Message no. 00564)
The Write and Delete programs runs correctly. 
A strandar Archiving Object like FI_TCJ_DOC runs Ok (WRI, DEL and STO programs). The customazing for both objects are nearly on OAC0, FILE transactions. The changes are on Sap Directories. Write for you the most important customazing actions:
Transaction: FILE
ZIECI_RF02 (No Standard)
Logical File Path -->     ZZA_ARCHIVE_GLOBAL_PATH     
Physical Path     -->     /usr/sap/CX6/ADK/files/ZA/<FILENAME>
Logical File Name Definition -->      
                            ZZA_ARCHIVE_DATA_FILE_ZIECI_RF02
FI_TCJ_DOC (Standard)
Logical File Path -->     ARCHIVE_GLOBAL_PATH
Physical Path     -->  <P=DIR_GLOBAL>/<FILENAME>
Logical File Name Definition --> ARCHIVE_DATA_FILE
Transaction: AOBJ
Customazing settings:
ZIECI_RF02     
Logical File Name -->     ZZA_ARCHIVE_DATA_FILE_ZIECI_RF02     
FI_TCJ_DOC (Standard)
Logical File Name -->     ARCHIVE_DATA_FILE
I prove to put in own archiving object (ZIECI_RF02) the logical file name -> ARCHIVE_DATA_FILE too and the error go on.
In the others parameters the values for both objects are:
Delete Jobs: Start Automatically
Content Repository: ZA (Start Automatically)
Sequence: Delete Before Storing
I see the point of the storing STO program (RSARCH_STORE_FILE) where own archiving failed. I made a program with the function and debbuging this can see the next:
REPORT  zarm_06_prueba_http_archivado.
DATA: LENGTH TYPE I,
      T_DATA TYPE table of TABL1024.
BREAK ARUIZ.
CALL FUNCTION 'SCMS_HTTP_GET'
  EXPORTING
    mandt                 = '100'
    crep_id               = 'ZA'
    doc_id                = '47AAF406C02F6C49E1000000805A00A9'
    comp_id               = 'data'
    offset                = 0
    length                = 4096
  IMPORTING
    length                = length
  TABLES
    data                  = t_data
  EXCEPTIONS
    bad_request           = 1
    unauthorized          = 2
    not_found             = 3
    conflict              = 4
    internal_server_error = 5
    error_http            = 6
    error_url             = 7
    error_signature       = 8
    OTHERS                = 9.
IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
If execute the program, SAP returns the next error:
Error in HTTP Access: IF_HTTP_CLIENT -> RECEIVE 1
The sy-subrc variable value is 6 -> error_http
The call of the method is the follow:
call method http_client->receive
     exceptions
       http_communication_failure = 1
       http_invalid_state         = 2
       others                     = 3
sy-subrc value is 1 -> http_communication_failure
The unusual of the case are that the Archiving Objects work on SAP 4.6C perfectly,
furthermore on version ECC 6.0 the standard and no standard objects uses Sap Content Server with the same connection (HTTP), IP, PORT and Repository.
I hope that anypeople can help me. A lot of thanks for your time.
Best Regards.

Hi Samanjay.
Answer your questions:
1) I proved the archiving from Sara with the Object ZIECI_RF02 with both customazings. The Stored program fail with logical file name = ZZA_ARCHIVE_DATA_FILE_ZIECI_RF02 and logical file name = ARCHIVE_DATA_FILE (Example at answer 2).
2) AL11 Transaction (Sap Directories):
/usr/sap/CX6/ADK/files/ZA/
cx6adm     09.04.2008     18:02:15     ZIECI_RF02_20080409.180215.ARUIZ
This is the Fich from ZIECI_RF02 on AL11. I prove this yesterday. The variable name: 000241-001ZIECI_RF02 is the generate to save the fich on repository ZA. In this case the variable name is: 000342-001ZIECI_RF02. Can view this with the table ADMI_FILES on TA SE11.
Entries on ADMI_FILES with create date = 09.04.2008
DOCUMENT:       342
ARCHIV KEY:     000342-001ZIECI_RF02
CREAT DATE:    09.04.2008
CREAT TIME :    18:18:28
OBJ COUNT:       1
FILENAME:         ZIECI_RF02_20080409.18182
STATUS OPT:       Not Stored
STATUS FIL:        Archiving Completed
PATHINTERN:    ZZA_ARCHIVE_GLOBAL_PATH
CREP:      
ARCH DOCID:   
Now, I put the same information from FI_TCJ_DOC (Standard Object):
AL11 Transaction (Sap Directories):
/usr/sap/CX6/SYS/global
cx6adm   10.04.2008       11:24:15     FI_FI_TCJ_DOC_20080410_112409_0.ARCHIVE
Entries on ADMI_FILES with create date = 10.04.2008
DOCUMENT:       343
ARCHIV KEY:      000343-001FI_TCJ_DOC
CREAT DATE:     10.04.2008
CREAT TIME:      11:24:09
OBJ COUNT:        2
FILENAME:          FI_FI_TCJ_DOC_20080410_112409_0.ARCHI
STATUS OPT:       Stored
STATUS FIL:         Archiving Completed
PATHINTERN:      ARCHIVE_GLOBAL_PATH
CREP:                   ZA
ARCH DOCID:      47FD890364131EABE1000000805A00A9
Finally, made the example with Archiving Object ZIECI_RF02, but assigning the standard logical file.
AOBJ (Customazing settings):
Object Name:           ZIECI_RF02  Archivado de datos: Facturas de Baja
Logical File Name:  ARCHIVE_DATA_FILE
Now, execute the archiving at SARA transaction.
AL11 Transaction (Sap Directories):
/usr/sap/CX6/SYS/global
cx6adm    10.04.2008          12:33:25     FI_ZIECI_RF02_20080410_123324_0.ARCHIVE
Entries on ADMI_FILES with create date = 10.04.2008
DOCUMENT:      345
ARCHIV KEY:    000345-001ZIECI_RF02
CREAT DATE:    10.04.2008
CREAT TIME:     12:33:24
OBJ COUNT:       1
FILENAME:         FI_ZIECI_RF02_20080410_123324_0.ARCHIVE
STATUS OPT:     Not Stored
STATUS FIL:       Archiving Completed
PATHINTERN:    ARCHIVE_GLOBAL_PATH
CREP:
ARCH DOCID:
It´s that the unusual. At first, I thought that´s the problem was the directory of SAP, but with this proof I looked a new error reason.
3) The details of repository ZA are:
Content Rep:     ZA
Description:       Document Area
Document Area: Data Archiving
Storage type:      HTTP Content Server
Version no:         0046   Content Server version 4.6
HTTP server:     128.90.21.59
Port Number:     1090   
HTTP Script:     ContentServer/ContentServer.dll
Phys. Path:         /usr/sap/CX6/SYS/global/
Too much thanks for your answer and your time. If you have any doubt, question me.
Best regards.

Similar Messages

  • Error when printing a PDF direct from SAP archive

    Hi together,
    I try to print a PDF direct from SAP archive and I got the error ""C:\Program files\Adobe\Acrobat 7.0\reader\AcroRd.exe" /p /h" not found. In the internet I found several topics which describe this way to print a PDF without open the Acrobat Reader.
    The customizing for document management (Local application) seems o.k. If I remove in the registry the parameters /h /p for print, Acrobat Reader will open and show the document if I use the print button in SAP.
    Have anybody an idea what the reason is?
    Thank you.
    Regards
    Thomas

    The rundll32 error seems to have disappeared.  Until this morning I had both this error and the rundll32.  All other types of docs open fine.  This one will open if saved to the desktop first, but not from Outlook.

  • Error while installing SAP NetWeaver 7.01 ABAP Trial Version

    Hi Experts,
    While installing the SAP NetWeaver 7.01 ABAP Trial Version on my pc (Vista) getting the below error.
    (Sep 26, 2010 10:30:07 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:07 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:30:17 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:17 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:30:27 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:27 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:30:38 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:38 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:30:48 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:48 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:30:58 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Sep 26, 2010 10:30:58 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Sep 26, 2010 10:31:08 AM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file D:\SAP\NSP\log.txt for details.
    (Sep 26, 2010 10:31:08 AM), Install, com.sap.installshield.CheckServicesAction, err, ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    STACK_TRACE: 12
    ProductException: (error code = 601; message="Services failed to start (see the log for details)")
         at com.sap.installshield.CheckServicesAction.install(CheckServicesAction.java:95)
         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$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (Sep 26, 2010 10:31:09 AM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file D:\SAP\NSP\log.txt for details.
    (Sep 26, 2010 10:31:09 AM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllUninstallationSteps(StepWrapperInstallFiles.java:192)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.uninstall(StepWrapperInstallFiles.java:313)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(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$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Please suggest.
    Thanks
    Neeraj

    > While installing the SAP NetWeaver 7.01 ABAP Trial Version on my pc (Vista) getting the below error.
    >
    > (Sep 26, 2010 10:30:07 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    <snip>
    > ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    <snip>
    I suggest you look at the log, the error you posted doesn't reveal much more than the fact a service didn't start which is needed by the installation process. Why it didn't start is not in this message.

  • Error installing SAP NetWeaver 7.01 ABAP Trial Version on Windows Vista

    This is my second attempt to install. The first time the laptop froze during the MaxDB installation. I was not able to use uninstall.exe (did not exist), so I deleted the entire contents of the sapdb folder and also ran the registry clean tool, RegistryClean.cmd, before the second attempt. Any assistance would be appreciated!!  Here is the contents of log.txt:
    (Feb 15, 2011 11:19:04 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\log.txt for details.
    (Feb 15, 2011 11:19:04 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/OFFICE~1/AppData/Local/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/OFFICE~1/AppData/Local/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
         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)

    Faisal,
    Thanks for your response to my question.  I have successfully installed VirtualDisk, however I CANCELED the "Create New Virtual Disk" setup at step 8 of your instructions because it states that you must select a size of more than 50GB.  After installing VirtualDisk I only have 38GB of free space on my hard drive.  System requirements for SAP NetWeaver 7.01 ABAP Trial Version states 25GB temporary for installation - 12GB permanent. Your instructions specify that an additional 3.5GB are needed for setup files bringing the total space to 28.5GB.  Why are more than 50GB required?
    If more than 50GB are required, then what are my options? (I have already removed unneeded software, files, etc., so I can't get more space on my existing hard drive.)
    Thanks for your help!
    Gary

  • Error after Install SAP NetWeaver 7.01 ABAP Trial Version

    Hi Everyone,
    I am new on SAP and I am getting this error after install SAP Netweaver 7.01 ABAP Trial version in my notebook.
    It is Windows Vista Basic, 3GB of RAM, 2.1 Core Duo 2.
    Installed successfully, but when I go to "Start" in sevidor it returns the following error, and not start:
    Error! Connection failed to node (local) for database NSP:
    -24700,ERR_DBMSRV_NOSTART: Could not start DBM server.
    -24832,ERR_SHMNOTAVAILABLE: Shared memory not available
    -24827,ERR_SHMALLOCFAILED: ID C:\sapdb\data\wrk\NSP.dbm.shi, requested size 2560
    Someone could help me?

    Hello Marques Polastri ,
    ->Please check/stop all database applications and tools, like DBMGUI and dbmcli ... Then check/kill all processes left with name dbmsrv.exe, if you will still have them. After that rename C:\sapdb\data\wrk\NSP.dbm.shi and C:\sapdb\data\wrk\NSP.dbm.shm, shared memory files, to  C:\sapdb\data\wrk\NSP.dbm.shi.old and C:\sapdb\data\wrk\NSP.dbm.shm.old.
    Try to connect to the database NSP & let us know the results.
    -> Please update with output of the following commands:
           dbmcli db_enum
           dbmcli -d NSP -u <control>,<pwd> db_state
    Thank you and best regards, Natalia Khlopina

  • Error Install : SAP NetWeaver 7.01 ABAP Trial Version

    Hi Everyone,
    I am getting this error while trying to install SAP Netweaver 7.01 ABAP Trial version.
    (Sep 27, 2008 3:01:11 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file C:\sapdb\NSP\log.txt for details.
    (Sep 27, 2008 3:01:11 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/Amir/AppData/Local/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/Users/Amir/AppData/Local/Temp/MaxDBSAPNWPREV.log")
    *     at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)*
    *     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)*
    Can somebody give me suggestion how to resolve my probelm.
    thanks,
    Amir
    PS : I have all the requirements system

    did u installed loopback adapter as mentioned in the installation instructions?
    Yes, yesterday, I tried to install SAP with loopback adapter (Now, I am trying to install without loopback adapter because I have a DHCP server) -> the same error with or without loopback adapter
    does your pc have internet connection available?
    Yes, I have an internet connection available (I am in Hotel and there is Internet via DHCP server)
    is the installation process completed?
    Yes the installation process is completed and with success (but without C:\sapdb)
    (Yesterday, when I had the first error and the installation process was not completed, I had the C:\sapdb.....strange)
    how much time the installation taking.. usually the step of database installation and configuration takes a long time.
    Not much time because there is not database installation
    while logon to sap, what details are u giving.. the system number .. is it 00,
    When I create the Item, I put the system number 00 but when I try to logon I have the error message that I posted in my previous message
    which other SAP softwares are installed on ur pc.
    In each time, when I tried to install SAP, I uninstalled all SAP software
    I hope you can help me for the install
    Note : I work on Vista sp1
    Thank you for your help
    Amir

  • SAP NetWeaver 7.0 ABAP Trial Version - Installation Error -

    Hi:
    I am trying to install the SAP NW 7.0 ABAP Trial version -
    I am on Windows XP Pro and meet the Hardware requirements a'rite - however, 2 consecutive attempts leads the installer to stop and generate the same log message -
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/z0226309/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    Last few lines from The location mentioned above --
    Tue Mar 25 13:05:46 EST 2008 MaxDB sdbinst: getInstalledReleasesWin(): wrong version format
    Tue Mar 25 13:05:46 EST 2008 MaxDB sdbinst: error occured while executing "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\"
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\": ERR
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\": -24913,ERR_SERVICEDB: Cannot register service database instance for C:\sapdb\NSP\db
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: installation exited abnormally  at Tu, Mar 25, 2008 at 14:05:46
    Tue Mar 25 13:05:47 EST 2008 MaxDB: Error during call to sdbinst, rc= 1
    Tue Mar 25 13:05:47 EST 2008 MaxDB: Done with call_sdbinst
    Tue Mar 25 13:05:47 EST 2008 MaxDB: rc of sdbinst = 1
    Tue Mar 25 13:05:58 EST 2008 MaxDB: Start of CallSdbuninst
    Tue Mar 25 13:05:58 EST 2008 MaxDB: IndepProgPath: C:/sapdb/programs
    Tue Mar 25 13:05:58 EST 2008 MaxDB: dbmcli path: C:/sapdb/programs/pgm/dbmcli.exe
    Tue Mar 25 13:05:58 EST 2008 MaxDB: Calling check for db_enum in case of an abort
    Tue Mar 25 13:05:59 EST 2008 MaxDB: nsp doesn't exist. Nothing to do !
    Tue Mar 25 13:05:59 EST 2008 MaxDB: rc of Method: 3
    Tue Mar 25 13:05:59 EST 2008 MaxDB: IndepProgPath = C:/sapdb/programs
    MaxDB: dbmcli_path = C:/sapdb/programs/pgm/dbmcli.exe
    MaxDB: Database instance to drop: :NSP:
    MaxDB: Instroot of NSP is: null
    MaxDB: sdbuninst_option = :3
    MaxDB: 0=uninstall all, 1=uninstall Kernel package, 2=drop database only, 3=do nothing
    Tue Mar 25 13:05:59 EST 2008 MaxDB: End of CallSdbuninst
    Tue Mar 25 13:05:59 EST 2008 MaxDB: End of uninstallation
    Any help would be much appreciated
    Edited by: developer App on Mar 25, 2008 7:52 PM

    Hi:
    I am trying to install the SAP NW 7.0 ABAP Trial version -
    I am on Windows XP Pro and meet the Hardware requirements a'rite - however, 2 consecutive attempts leads the installer to stop and generate the same log message -
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/z0226309/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    Last few lines from The location mentioned above --
    Tue Mar 25 13:05:46 EST 2008 MaxDB sdbinst: getInstalledReleasesWin(): wrong version format
    Tue Mar 25 13:05:46 EST 2008 MaxDB sdbinst: error occured while executing "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\"
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\": ERR
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: "C:\sapdb\programs\pgm\dbmcli.exe" -R "C:\sapdb\NSP\db" inst_reg -k \"C:\sapdb\NSP\db\": -24913,ERR_SERVICEDB: Cannot register service database instance for C:\sapdb\NSP\db
    Tue Mar 25 13:05:47 EST 2008 MaxDB sdbinst: installation exited abnormally  at Tu, Mar 25, 2008 at 14:05:46
    Tue Mar 25 13:05:47 EST 2008 MaxDB: Error during call to sdbinst, rc= 1
    Tue Mar 25 13:05:47 EST 2008 MaxDB: Done with call_sdbinst
    Tue Mar 25 13:05:47 EST 2008 MaxDB: rc of sdbinst = 1
    Tue Mar 25 13:05:58 EST 2008 MaxDB: Start of CallSdbuninst
    Tue Mar 25 13:05:58 EST 2008 MaxDB: IndepProgPath: C:/sapdb/programs
    Tue Mar 25 13:05:58 EST 2008 MaxDB: dbmcli path: C:/sapdb/programs/pgm/dbmcli.exe
    Tue Mar 25 13:05:58 EST 2008 MaxDB: Calling check for db_enum in case of an abort
    Tue Mar 25 13:05:59 EST 2008 MaxDB: nsp doesn't exist. Nothing to do !
    Tue Mar 25 13:05:59 EST 2008 MaxDB: rc of Method: 3
    Tue Mar 25 13:05:59 EST 2008 MaxDB: IndepProgPath = C:/sapdb/programs
    MaxDB: dbmcli_path = C:/sapdb/programs/pgm/dbmcli.exe
    MaxDB: Database instance to drop: :NSP:
    MaxDB: Instroot of NSP is: null
    MaxDB: sdbuninst_option = :3
    MaxDB: 0=uninstall all, 1=uninstall Kernel package, 2=drop database only, 3=do nothing
    Tue Mar 25 13:05:59 EST 2008 MaxDB: End of CallSdbuninst
    Tue Mar 25 13:05:59 EST 2008 MaxDB: End of uninstallation
    Any help would be much appreciated
    Edited by: developer App on Mar 25, 2008 7:52 PM

  • Error: SAP NW 7.01 ABAP Trial Version: install successfully but don't work

    Hi all,
    i'm newbie.
    i haved SAP NetWeaver 7.01 ABAP Trial Version on my notebook (Thinkpad X61 - Windows XP Pro) installed.
    I have made as follows:
    1- install MS Loopback Adapter
    2- add in windows/system32/drivers/etc/hosts: 10.10.0.10 <machine name>
    3- install SAP NetWeaver 7.01
    There aren't any error.
    If i start sapmmc, follow the syslog entry: "Communications data: Service initialization failed".
    i can connect with the server on SAP Logon. it does almost everything, also database is ok, i can create a table,... . but i can't program. i made a example programm, this programm is saved, program window does not appear and it does as if it is running, but it really depends. BAPI don't work.
    can someone help me, please ...
    Thanks
    Edited by: thi minh huyen pham on Jan 12, 2009 3:35 PM

    Hello Thi Minh,
    it looks you instaled everything ok. In trial version you can
    construct new structures, but not the tables, as we should
    use the tables of the flight data model.
    Propably your program is also running ok, as some reports are
    supposed only for debugging, and have not any results screen.
    Try other reports.
    Bye,
    Peter

  • Error:SAP NetWeaver 7.01 ABAP Trial Version

    Hi,
    While installing SAP NetWeaver 7.01 ABAP Trial Version I am getting following error in the logfile generated.
    Kindly help if someone has encountered the same and has been able to rectify it. Looking for your immediate response.
    Regards,
    Ratna.
    (Nov 3, 2008 8:45:03 AM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$DiskSpaceCheck, wrn, WARNING: C:\ partition has insufficient space to install the items selected.   2972.3 MB additional space would be needed to install the selected items.
    (Nov 3, 2008 10:09:03 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, An error occurred and product installation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Nov 3, 2008 10:09:03 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllInstallationSteps(StepWrapperInstallFiles.java:177)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.install(StepWrapperInstallFiles.java:268)
         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$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (Nov 3, 2008 10:09:04 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Nov 3, 2008 10:09:04 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllUninstallationSteps(StepWrapperInstallFiles.java:192)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.uninstall(StepWrapperInstallFiles.java:313)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(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$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Hi ,
    I encountered the same Java problem, the problem occurs if your system contains JAVA components already installed. Try to remove them using add remove program from control panel and reinstall SAP.
    Regards,
    Manisha

  • Error during installation of SAP Netweaver 7.01 ABAP Trial Version

    Hello everyone,
    i tried to install 'SAP Netweaver 7.01 ABAP Trial Version' on my laptop using an VMWare Server.
    My used operating system on my VMWare Server is 'Windows Server 2003 Enterprise Edition'.
    I´ve executed within the folder D:...SAPNetWeaver701SAPNW7.01ABAPTrialimageSetup.exe
    and entered all necessary informations to start the installation.
    More or less 30mins. later i got the following message from the system:
    'An error occurred and product installation failed.  Look at the log file E:sapdbNSPlog.txt for details.'
    The log text show the following information:
    Line: -
    (Dec 25, 2009 1:53:43 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file E:sapdbNSPlog.txt for details.
    (Dec 25, 2009 1:53:43 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/ADMINI1/LOCALS~1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/ADMINI1/LOCALS~1/Temp/MaxDBSAPNWPREV.log")
         at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
         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)
    Line: -
    Can anyone help me with this??? I have no ideas how to solve this problem.
    Thank you very much.

    Check end of Logfile C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/MaxDBSAPNWPREV.log
    have you checked that log?

  • Database Error during installation of SAP NetWeaver 7.01 ABAP Trial Version

    Hi All,
    I was installing the SAP NetWeaver 7.01 ABAP Trial Version but during the installation i got some MaxDB error.
    Log.txt
    (Apr 28, 2010 10:13:41 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, An error occurred and product installation failed.  Look at the log file F:\sapdb\NSP\log.txt for details.
    (Apr 28, 2010 10:13:41 PM), Install, com.sap.installshield.maxdb.maxdb_call_sdbinst, err, ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/ASHISH/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    STACK_TRACE: 22
    ProductException: (error code = 601; message="An Error happened during call of MaxDB Tool sdbinst. Check end of Logfile C:/DOCUME1/ASHISH/LOCALS1/Temp/MaxDBSAPNWPREV.log")
    at com.sap.installshield.maxdb.maxdb_call_sdbinst.install(maxdb_call_sdbinst.java:193)
    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)

    Hi,
    In environment variables under system variables see if the path to java has been set,
    JAVA_Home
    C:\j2sdk1.4.2_11
    JRE_PATH
    C:\Program Files\Java\j2re1.4.2_11\bin\java.exe
    Both these variables should be set.
    The values would differ on the version of java that you are using and the
    path where you have java installed.
    I suggest you go with Java version 1.4.2_*.
    Regards,
    Vishnu

  • Error installing SAP NetWeaver 7.2 ABAP Trial Version

    Hi,
    At the beginning of the installation of SAP NetWeaver 7.2 ABAP Trial Version the following error occurred:
    Program is starting... Please wait!
    ERROR      2010-12-28 18:58:18.804 syxxcniwrapper.cpp:105
    NI::CNIInit::CNIInit() lib=syslib module=syslib
    FSL-03000  Error initializing network library. SAPRETURN: 0xffffffff
    Opened sylib721.dll
    exe dir is C:UsersVINCIU~1AppDataLocalTempsapinst_exe.3164.1293569860
    MessageLib initialized successfully.
    Creating file C:UsersViníciusAppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel_test_28_Dec_2010_18_58_18.
    Removed file C:UsersViníciusAppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel_test_28_Dec_2010_18_58_18.
    Initialized SAP kernel tracing to file C:UsersVINCIU~1AppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel
    Creating file C:UsersViníciusAppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel_test_28_Dec_2010_18_58_18.
    Removed file C:UsersViníciusAppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel_test_28_Dec_2010_18_58_18.
    Initialized SAP kernel tracing to file C:UsersVINCIU~1AppDataLocalTempsapinst_exe.3164.1293569860dev_sap_kernel
    Opened C:UsersVINCIU~1AppDataLocalTempsapinst_exe.3164.1293569860/iaguieng721.dll
    Error initializing network library. SAPRETURN: 0xffffffff
    Exception thrown near line 107 in file syxxcniwrapper.cpp
    Stack trace:
    iaxxcrunenv.cpp: 65: CController::getServerHostName()
    syxxcniwrapper.cpp: 88: NI::CNIInit::CNIInit()
    At line 107 file syxxcniwrapper.cpp
    Call stack:
    iaxxcrunenv.cpp: 65: CController::getServerHostName()
    syxxcniwrapper.cpp: 88: NI::CNIInit::CNIInit()
    Error initializing network library. SAPRETURN: 0xffffffff
    Failed action:  with parameters
    Error number 4294967295 error type SAP_RETURN
    --- Unicode interface pid = 2700 :
    gethostnameU16 encountered invalid UTF-8
    ed 63 69                                        |.ci             |
    Characters previously read:
    0056 0069 006e                           |Vin     |
    *--- Unicode interface -
    End of message -
    Exit status of child: 1
    what's the solution?
    thanks!

    to install SAP it is necessary to have your host in a network.
    If you are installing on a stand alone machine then you will have to install a loop back adapter if you are installing on windows.
    Also make below entry in the host file
    127.0.0.1           <host-name>
    Now ping 127.0.0.1 and see its giving proper response.

  • Setup Error Minisap (Sap Netweaver 7.0 ABAP Trial Version)

    Hello forum,
    Is giving me the following error while installing minisap (Sap NW 7.0 ABAP Trial Version)
    Tue Jun 16 16:25:05 CEST 2009 MaxDB sdbinst: NSP creating database ...
    Tue Jun 16 16:25:06 CEST 2009 MaxDB sdbinst: getInstalledReleasesWin (): wrong version format
    Tue Jun 16 16:25:06 CEST 2009 MaxDB sdbinst: ERROR: Backup check for 'F: \ sapdb \ NSP \ tempLocation \ load \ loaddatasave' failed:
    Tue Jun 16 16:25:06 CEST 2009 MaxDB sdbinst: File not found: F: \ sapdb \ NSP \ tempLocation \ load \ loaddatasave
    Tue Jun 16 16:25:06 CEST 2009 MaxDB sdbinst: installation Exited abnormally at Tu, Jun 16, 2009 at 16:25:05
    Tue Jun 16 16:25:06 CEST 2009 MaxDB: Error during call to sdbinst, rc = 1
    Tue Jun 16 16:25:06 CEST 2009 MaxDB: Done with call_sdbinst
    Tue Jun 16 16:25:06 CEST 2009 MaxDB: rc of sdbinst = 1
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: Start of CallSdbuninst
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: IndepProgPath: F: / sapdb / programs
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: dbmcli path: F: / sapdb / programs / pgm / dbmcli.exe
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: Calling check for db_enum in case of an abort
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: nsp does not exist. Nothing to do!
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: rc of Method: 3
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: IndepProgPath = F: / sapdb / programs
    MaxDB: dbmcli_path = F: / sapdb / programs / pgm / dbmcli.exe
    MaxDB: Database instance to drop:: NSP:
    MaxDB: Instroot of NSP is: null
    MaxDB: sdbuninst_option =: 3
    MaxDB: 0 = uninstall all, 1 = uninstall Kernel package, 2 = drop database only, 3 = do nothing
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: End of CallSdbuninst
    Tue Jun 16 16:25:07 CEST 2009 MaxDB: End of uninstallation
    If anyone has any idea because it can be? It may be because my pc does not meet some of the requirements of installation.
    It has a 504 MB RAM, and Windows Home Edition.
    Thanks.

    AFAIK, you can install on a Home Edition...at least I couldn't on my old laptop...
    Greetings,
    Blag.

  • SAP Netweaver 7.0 ABAP Trial Version instalation errors

    Hi all,
    I use windows xp professional  sp2 and I keep geting this errors while trying to instal this version of the SAP NetWeaver.
    I have tryed with the newer version before but I hat problems too and I got told that this version is more stable, so I tryed and this are the errors I get.
    Any help will be much apreciated.
    Thanks in advance for any help.
    (Apr 15, 2009 11:11:12 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Apr 15, 2009 11:11:12 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllUninstallationSteps(StepWrapperInstallFiles.java:192)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.uninstall(StepWrapperInstallFiles.java:313)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(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$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    Dear  sir,
    I am john samantaray, DELHI,INDIA, also faces the same error in the installation of SAP Netweaver 7.0.1ABAP  Trial version .
    Please  give me suggestion so that im can install it in my pc
    My PC configuration ..
    Operating System    ;Windows server 2003
    RAM                       :1Gb
    Processor               : AMD Sempron 3400+
    I am waiting for your Replay ....
                                                                     Thank You

  • Does anybody know benefices of upgrading SAP ERP from version ECC 6.0 EHP 7 to ECC 6.06 EHP 10?

    An upgrade of ERP SAP from version  ECC 6.0 EHP 7 to ECC 6.06 EHP 10 is being planned in the company I work for. However, I don´t know what the benefices are to   implement this upgrade so I wonder if someone knows benefices of upgrading SAP ERP from version ECC 6.0 EHP 7 to ECC 6.06 EHP 10?
    Regards, Alejandro

    Hi _Miguel
    I am going from ECC 6.0 to ECC 6.06. However, I don´t know what the benefices are to   implement this upgrade so I wonder if someone knows benefices of upgrading SAP ERP from version 6.0 to 6.06
    regards, Alejandro

Maybe you are looking for

  • Can't create Area from Rectangle2D (SSCCE included)

    Hi guys, I'm trying to create an Area from a Rectangle2D as a workaround for being unable to create an Area from a Line2D. It doesn't seem to work though; any idea why? Here's a little SSCCE so you can see what I mean. The area without any transforma

  • How do I stop my audio from changing pitch when moving it to another track?

    I read up a bit on the "Flex" settings, however, I can't seem to turn it completely off. The flex button is not engaged, however, when I move audio from one track to another, the pitch changes. How do I stop this completely?

  • ABAP Web Service with tables

    Hello, <br> <br> We need to build a web service with a predefined message in our ERP (ABAP), without PI or WebAS JAVA. <br> <br> We thought it should be a simple task, because we had no problem with many other applications and systems when building t

  • How do I import my bookmarks

    How do I import bookmarks from ie8 to ipad2

  • Javascript4java MyFaces problem

    Hi, I'm running MyFaces on WAS 5.1 I dropped the j4j jar into my WEB-INF/lib directory, and I get a message saying: [8/27/04 11:43:15:958 CDT] 362c362c HtmlRenderKit W net.sourceforge.myfaces.renderkit.html.HtmlRenderKitImpl Unsupported component-fam