ABAP New Version

Hi Experts,
I have one doubt . What is the ABAP New version and what r the all versions that are available in the market.
Regards
Khanna

The Netweaver ABAP stack has a few versions, the newest is 7.0.
Some of the branding has changed over the years, but here are the version numbers.
7.00
6.40
6.20
6.10 
46d
then there were others.....
old
older
oldest
Regards,
Rich HEilman

Similar Messages

  • [New SAP NetWeaver 7.01 ABAP Trial Version] - Installation issues

    Hi community
    thanks to SAP for this trial release with MaxDB 7.7
    Unfortunately the installation failed on my laptop. This is an extract of the error log:
    (Aug 26, 2008 1:29:15 AM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Aug 26, 2008 1:29:15 AM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Aug 26, 2008 1:30:15 AM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file D:sapnwNSPlog.txt for details.
    (Aug 26, 2008 1:30:15 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)")
    (Aug 26, 2008 1:30:16 AM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file D:sapnwNSPlog.txt for details.
    (Aug 26, 2008 1:30:16 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])
    My problem is not completely new, there are some hint in the Troubleshooting Guide for NW2004s ABAP Trial Version (step 4)
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/6055f523-df6e-2910-f0bf-acccbb0a7d37
    and on this post another user had a problem similar to mine
    NW04s installation errors
    I have jdk 1.6 installed on my machine but there are no environment variables for java executables.
    Is my problem caused but the java previously installed on the machine? If so, I can remove the jdk and retry installation
    In this case it could be useful in my opinion to include this issue in the FAQ, it can be helpful for other users too.
    Best Regards,
    Valerio

    I have problems installing..in windows vista business
    I get this error
    (Oct 10, 2008 8:02:36 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.
    (Oct 10, 2008 8:02:36 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/Ariel/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/Ariel/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)

  • Create new version, checkout, checkin workflow not correct via abap

    Hey,
    I wrote an abap programm with the following workflow:
    - I create a new version of the document CVAPI_DOC_CREATE_NEW_VERSION
    - I check out the new version with CVAPI_DOC_CHECKOUTMODIFY
    - I check in the file with the new content CVAPI_DOC_CHECKIN
    And now there are 2 files in DMS with the same version. But there should be only one document with version 01.
    The method CREATE_NEW_VERSION creates an dms document. But also the CVAPI_DOC_CHECKIN method creates an document in dms. But the checkin method should override the new version.
    Thanks for your support.
    BR,
    Christoph

    Hi Christoph,
    unfortunately it is very hard to suggest a detailed solution for your individual program. Personally I would recommend you to
    use the following sequence:
    - I create a new version of the document CVAPI_DOC_CREATE_NEW_VERSION
    - BAPI_DOCUMENT_GETDETAIL2 to read out the current document data
    - I check out the new version with CVAPI_DOC_CHECKOUTMODIFY
    - BAPI_DOCUMENT_GETDETAIL2 to read out the current document data
    - I check in the file with the new content API_DOCUMENT_MAINTAIN2 or BAPI_DOCUMENT_CHANGE2.
    If you enter the storage category in the table DOCUMENTFILES of the mentioned function modules the file should be
    checked in again. For further information on the DMS BAPI behavior please see the attached documentation to SAP note 766277.
    Best regards,
    Christoph

  • How to Generate New Version of Enhancements done to Std WebDynpro ABAP obj

    Hi Experts,
    We have enhanced a SAP Std WebDynpro ABAP component (HAP_DOCUMENT_BODY) using Enhancement framework provided by SAP. Multiple enhancements were done on the same component for different requirements. Now, under the Enhancement Implementations folder of this component, you can see 5 enhancements of the component each referring to the 5 different changes done (most of the changes were done to the same view ).
    These changes has now been transported to the Quality System. Now, the client wants one of the changes to be removed. I am not sure of the impact of removing, for eg: the 3rd enhancement,  on the other changes done as multiple enhancements were done in a mixed manner.
    What i want to do is to generate a new version of WebDynpro component on Dev which has all the enhancements done so far using Utilities -> Versions -> Generate new version. Then try to delete the 3rd enhancement folder, so that if something goes wrong, I can always revert to this newly created version on DEV which has all changes available.
    Questions:
    1)  Before that, I would like to know if I can generate versions of the enhancements done of WebDynpro ABAP using enhancement framework by using Utilities -> Versions -> Generate new version ?
    2) If yes, I want to generate one version which has all the enhancements done so far using enhancement framework. For doing so, where should i do the click or selection (Is it Std Main Component or is it Enhancements in the enhancements folder-if so, there are 5 of them, and which one??) before i go to  Utilities -> Versions -> Generate new version. I am not clear where i should select or keep the cursor selected on before generating a new version? 
    Please guide with step by step details.
    Thanks,

    I have moved this post to the HTML5 layouts forum, which is more appropriate.
    I am guessing you are using Rh11 as you have a trial copy. I have some instructions for Rh10 and the only difference should be the script used. See the contact page on my site and request those details. Include a link to this thread.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Newer Version in ABAP ?

    Hi. Good morning. I am new to this SAP field. I want to know the latest versions in SAP ABAP. What are the different versions that are available in SAP ABAP ? When did they come into existence ? The differences between older and newer versions of SAP ABAP. The difference between R/3 and ECC ? Please pass this information to me. Thank you. Gowtham
    [email protected] is my id.

    <i>I want to know the latest versions in SAP ABAP.</i>
    ECC 6.0 which runs on NW2004s
    <i>
    What are the different versions that are available in SAP ABAP ?</i>
    There have been a lot of release of SAP R/3(ECC) over the years including.
    R/3 1.0
    R/3 2.0
    R/3 3.X
    R/3 4.0
    R/3 4.6X
    R/3 4.7
    ECC 5.0
    ECC 6.0
    <i>When did they come into existence ?</i>
    SAP started way back in 1972.
    <i>The differences between older and newer versions of SAP ABAP.</i>
    New Functionality,  bug fixes,  new development tools,  nicer look and feel.
    <i>The difference between R/3 and ECC ?</i>
    Again, this is nothing more than a name change, with some added functionality and bug fixes.
    Regards,
    Rich Heilman

  • Help in creating XML documents in ABAP using XI in new version ECC6.0

    Hello All:
       I am pretty comfortable with XML and XSLT but new to XI. Is there a way of creating XML documents in ABAP using XI in new version ECC6.0? Please provide me with any links or any information you may have. All the answers will be rewarded.
    Thanks.
    Mithun

    hi,
    U cant create XML data in ABAP.
    to send the data to the XI, u have to use the IDOC or RFC FM, from there IDOC or RFC adapters will read the data in the same  format  and these adapters will convert the data in to  XML .Bcoz XI understand only XML data.
    from there XI will process and route them to Destination, by using anthor adapter.
    here u can use file adapter if u want data in file foramat from the IDOC or RFC .
    So XI is the integration tool only.
    reward points if helpful
    ragards
    sreeni

  • Java error-message by inst of "New SAP NetWeaver 7.01 ABAP Trial Version"

    If i try to install "New SAP NetWeaver 7.01 ABAP Trial Version" on Windows XP SP2 in 3 seconds after start I get this errormessage : Java.lang.noclassdeffounderror: run Exception in thread "main" and then is installer dawn. What is to do? Plaese help !!!

    Guys, Do you have JAVA environment set up correctly?
    Might be that classpath is not setup or referenced correctly.
    On WIN OS check out this:
    http://java.sun.com/j2se/1.3/docs/tooldocs/win32/classpath.html

  • New ABAP Trial Version available here on SDN

    The NetWeaver 2004s ABAP Trial Version which was distributed at TechEd Las Vegas (and will be in Amsterdam and Bangalore) is also available at the download area here on SDN:
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6
    It is basically the same ABAP Server as before (now SP8) but with a completely new installer which is much faster then the previous Sneak Preview. In fact you can have your running ABAP system after less than half an hour on a decent desktop PC (compared to 5-8h before). The installation itself is also more robust and has been specifically developed for typical end user desktop PCs.
    (The old installation was based on the installation for full blown ERP systems, typically done by experienced system administrators and required more preparation.)
    However, the download files are a bit larger now.
    Dirk

    Hi Dirk,
    thx a lot for information.
    I'll download it as soon as possible.
    Bye
    Andrea

  • New SAP NetWeaver 7.0 ABAP Trial Version SP12

    Hello SDN Community,
    The new SAP NetWeaver 7.0 ABAP Trial Version SP12 is available for download at:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/b2918eea-0601-0010-6284-e6cb7eee4399 [original link is broken] [original link is broken]
    <a href="ftp://ftp.sap.com/pub/sdn/devkits/netweaver/abap/SAPNW7.0ABAPTrialSP12.part2.rar">ftp://ftp.sap.com/pub/sdn/devkits/netweaver/abap/SAPNW7.0ABAPTrialSP12.part2.rar</a>
    The same procedure applies as in earlier versions, download both archives, place it into the same folder and <b>extract ...part1.rar only</b>.
    Enjoy,
    Klaus

    Hello Yann Szwec,
    I am using up to now Windows XP Home Edition. After some problems during installation I have read again the "recommendations" for using the SAP NetWeaver 7.0 ABAP Trial Version SP12. Furthermore I searched here in SDN for solutions which might be available regarding the problem I have.
    The important fact is that this software is released only for the following operating systems:
    Operating System: Windows XP Professional (Service Pack 2) or Windows Server 2003.
    (having a NTFS file structure etc.)
    No other release is done (taking into account Windows Vista).
    I have done an update to Microsoft Professional Edition but I have still some installation problems.
    Please refer to:
    Re: Error Install SAP Netweaver 2004s ABAP Trial version
    or
    Sap Netweaver 2004 ABAP trial version com.sap.installshield.maxdb.maxdb...
    Up to now I have no idea why after installation of Windows XP Professional I have  still the same problem.
    The problem is exactly what is described in Sap Netweaver 2004 ABAP trial version com.sap.installshield.maxdb.maxdb...
    But I have the feeling that my Windows XP Professional Installation was not correct (because there are some other problems around too)
    So my recommendation to the description for downloading would be to highlight more this important recommendation of use of the ABAP trial version
    (refer to https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6).
    For further versions which might be released in the future (hopefully) it would be nice if the support regarding Windows versions would be a little more broader (Windows XP Home etc.). But this is only a wish from my side.
    With best regards
    Christoph

  • ADS is not configured in New SAP NetWeaver 7.01 ABAP Trial Version

    Dear Colleagues,
    I have installed new SAP Neteweaver 7.01, i could not able to run the pdf forms normal as well interctive forms.
    i tried by running the test programs like fp_test_00 getting the folloing error message
    Test Program: Version Information (for Analysis Only)      
    USAGE ERROR                                                                               
    ERROR CODE    :          2                                 
    ERROR MESSAGE : ADS                                        
    Invalid HTTP connection: ADS 
    fp_test_ia_01 execution.. error invalid http connection:ads
    on execution of FP_CHECK_DESTINATION_SERVICE    : usage error:ads
    Pleae help me how to configure the ads services to run interactive forms.
    Thanks,
    Mahesh.Gattu
    Edited by: Maheshkumar gattu on Nov 27, 2008 12:02 PM

    Hi Blag,
    can you please provide me the details, from where i should get NSP Java  and procudure to Run on minisap.netweaver 7.01 abap trial version.
    please any one guide me how to configures ADS on minisap 7.01
    Thanks,
    Mahesh.gattu
    Edited by: Maheshkumar gattu on Nov 28, 2008 1:22 PM

  • New User - SAP NetWeaver 7.0 - ABAP Trial Version

    Our company as developed software link from our application to the SAP Plant Maintenance (PM) module. 
    To simply the discussion, please assume that the link only creates a PM Notification.  Currently this is done via RFC to IQS4_CREATE_NOTIFICATION.
    One of our biggest challenges in developing the link for our Oil Refinery customers is the fact that we do not run SAP in our development office.  This makes it very difficult to maintain the link because we need to rely on our customer’s systems to test any changes we make.
    In the past, we have made several attempts to purchase a developer license to SAP but could not determine the correct sales avenue.  We ended up talking to sales people who told us that we needed to spend $50,000.
    Recently, I have installed SAP NetWeaver 7.0 - ABAP Trial Version.  I have it running and can log into the SAP GUI and I can make remote function calls to the Airport demo that is installed with it.  This environment appears to have everything that I need to develop our link but I can not figure out how to install the PM module.  I am not sure if this is even possible.
    So here are my questions:
    1) Can the PM module be activated/installed in the SAP NetWeaver 7.0 - ABAP Trial Version?
    2) Would this be included if we purchase the SAP NetWeaver, Development Subscription for $2,300/year.

    1. No
    2. yes it has everything

  • New ABAP Trial Version SP11 is available now ...?

    any one help me for download ABAP trail version SP11 bcos i downloaded part 1 and now i try to download part 2 file,but i am not able to download file (now i got message inavailable product.)
    kindly help me for download file(part 2).
    kathir.

    SAP has removed the ABAP Trial from their FTP...
    ftp://ftp.sap.com/pub/sdn/devkits/netweaver/abap
    A download is currently not possible. Only the SAPGUI is available for download

  • Installing SAP NW 7.01 ABAP Trial Version for dummies

    Hello sappers...
    Sorry if you thought this was a guide for dummies, though it could turn out to be if I get some help - I'm the dummy!
    Not wanting to be left out, I too have had a host of issues trying to install this, over several days now... it feels like bashing your head against a brickwall.  After staying up till 4am last night, then wiping my laptop and reinstalling Windows AGAIN to start from scratch this morning, and encountering the cranio-mural interface again, I feel like a crash test dummy!
    I am installing on a new installation of Windows Vista Home Basic, I have a gig of RAM and plenty of hard drive space.
    Forgive me if this is an ignorant question, but do I need to install the Loopback adaptor if I'm connected to the internet?  If it's to generate an IP address, surely my computer has one.  Note networking is not my strong point (though I'm an ok programmer - one project manager even gave me 4 out of 10!) - please be kind!  Anyway, I have tried with and without this on my various attempts.
    ANYWAY.... the sorry saga goes like this...
    I seem to be able to install Max DB OR SAP NW 7.01 ABAP Trial Version u2013> NSP, but not both at the same time - I may have done once, and it seemed to work once, I even managed to sign on - then it wouldnt work in the morning - but then that was on Windows XP Pro on my wife's laptop which only has 500 meg of RAM.
    My last attempt was fairly typical - Max DB is showing up in the program menu, but SAP NW 7.01 ABAP Trial Version u2013> NSP is not.
    However, I seem to have managed to start the NSP server ok, using SAP Management console, thanks to a handy tip on this forum about using your Windows OS password when it prompts for credentials.
    When I try to sign on I get 'partner 127.0.0.1:sapdp00 not reached WSAECONNREFUSED: Connection refused - error number 10061, return code -10, system call connect.
    That's one of my better attempts.
    Last night having deleted all the installed files from my C drive, uninstalled everything, tinkered with the registry to remove all relevant entries, I managed to run an installation that skipped out installing MaxDB (it was super quick!), yet did install the SAP NW 7.01 ABAP Trial Version u2013> NSP bits in my program menu - imagine my excitement at being able to start and stop the server, yet with no database it produced red windows on my screen saying 'sorry, you screwed up AGAIN' (or words to that effect).  Trying to sign on produced equally disheartening error messages...
    Am going to give it another try after taking a break, next time WITH loop back adaptor installed...
    Please pardon lack of relevant detail, I didnt note everything I did on every attempt - substituting humour for detail is all that's saving my sanity at this stage...
    Anyone that can help me achieve this will be my friend for ever... I'm a contractor bitten by the recession trying to learn some news skills.... the first one being how to install Netweaver at home...!
    Log text gives
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:51:09 PM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Mar 4, 2009 12:51:09 PM), 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)
    (Mar 4, 2009 12:51:11 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.
    (Mar 4, 2009 12:51:11 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)

    ok, this is the log from my latest attempt...
    > Subprocess starts at 20090312182156
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182159
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182205
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -R C:\sapdb\NSP\db dbm_version
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    VERSION    = 7.7.06
    BUILD      = DBMServer 7.7.06   Build 007-123-197-046
    OS         = WIN32
    INSTROOT   = C:\sapdb\NSP\db
    LOGON      = True
    CODE       = UTF8
    SWAP       = full
    UNICODE    = YES
    INSTANCE   = (unknown)
    SYSNAME    = Windows
    MASKING    = YES
    REPLYTREATMENT = none,zlib,auto
    SDBDBM_IPCLOCATION = C:\sapdb\data\wrk
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182210
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182212
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182213
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182213
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182228
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'
    > Subprocess starts at 20090312182303
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182304
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182304
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182305
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182306
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182316
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'

  • 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

Maybe you are looking for