After Restoring/Backup File System XI Java Instances are not up!

Hello all,
We are facing problem in restoring the SAP XI System, after taking backup of the system the java instances in SAP XI System are not starting again. ABAP connections are fine.
Can anyone provide suggestions/solutions in order to restore the XI System back.
The system information is as follows.
System Component: SAP NetWeaver 2004s, PI 7.0
Operating System: SunOS 5.9, SunOS 5.10
Database: ORACLE 9.2.0.
Regards,
Ketan Patel

I would correct Oracle version is 10.2.0
I would also like to reframe my problem.
XI server(both abap and Web) was working fine. Every weekend we take full backup(file system+DB)(UFS) of server. After taking backup server got up and we were able to login through abap but java web page was not openning. We did some troubleshooting it didn't work and finaly we restored the backup and somehow it worked. Next week after backup again same problem arose. We again restored latest backup but this time problem still exists.
Regards,
Ketan

Similar Messages

  • After Restoring/Backup of File System XI Java Instances are not up!

    Hello all,
    We are facing problem in restoring the SAP XI System, after taking backup of the system the <b>java instances</b> in SAP XI System are not starting again. ABAP connections are fine.
    Can anyone provide suggestions/solutions in order to restore the XI System back.
    The system information is as follows.
    System Component:     SAP NetWeaver 2004s, <b>PI 7.0</b>
    Operating System:     SunOS 5.9, SunOS 5.10
    Database:          ORACLE 9.2.0.
    Regards,
    Ketan Patel

    If it´s REALLY a PI 7.0 (SAP_BASIS 700 and WebAS Java 7.00) then it´s not compatible. WebAS 7.00 needs Oracle 10g (http://service.sap.com/pam)
    Also see
    http://service.sap.com/nw2004s
    --> Availibility
    --> SAP NetWeaver 7.0 (2004s) PAM
    If you open the Powerpoint, you will see that Oracle 9 is not listed. I wonder, how you got that installed.
    Neverless, if you recover a Java instance, both filesystem and database content (of the Java schema) must be in sync, means, you need to restore both, database (schema) and filesystem, that have been backed up at the same time.
    Check Java Backup and Restore :
    Restoring the System
           1.      Shut down the system.
           2.      Install a new AS Java system using SAPInst, or restore the file system from the offline backups that you created.
           3.      Import the database backup using the relevant tools provided by the database vendor.
           4.      Overwrite the SAP system directory /usr/sap/.
           5.      Start the system (see Starting and Stopping SAP NetWeaver ABAP and Java.)
    The J2EE Engine is restored with the last backup.
    Markus

  • Why after referenced dll files to my project they are not on my release directory when i build the project ?

    This is a screenshot of my visual studio csharp the References and properties part of the dll's:
    You can see on the right the 3 problem files are the directx dll files.
    When my brother is running the program he get exception say one or more of the dll files is not found.
    I sent him the 3 dll files he tried to put them from where he was running the program he also tried to put them at the directory they are in my place: C:\Temp\radarscan\dlls\DLL'S\Microsoft.DirectX.DLL
    He created this directory and put them there but it didn't help.
    I was sure once i referenced the dll files they are in my program no need to have them. And at least to have them in the directory where you running the program from but it's not working.
    What i want is that my brother and anyone else that will run the program will not need the dll files on his pc and if he does need them so to have them in the directory where you are running the program from will be enough. How can i solve it ?

    Still not working. Tried Samir solution but same problem my brother on his computer getting exception:
    This is the code the line where the exception happen 142:
    private void ScanClouds_Load(object sender, EventArgs e)
    Boolean bl = InitializeDirectX();
    if (bl == false)
    MessageBox.Show("Error initializing directX!");
    Application.Exit();
    And in the method init:
    private Boolean InitializeDirectX()
    DispMode = Manager.Adapters[Manager.Adapters.Default.Adapter].CurrentDisplayMode;
    D3Dpp = new PresentParameters();
    D3Dpp.BackBufferFormat = DispMode.Format;
    D3Dpp.PresentFlag = PresentFlag.LockableBackBuffer;
    D3Dpp.SwapEffect = SwapEffect.Discard;
    D3Dpp.PresentationInterval = PresentInterval.One; //wait for vertical sync. Synchronizes the painting with
    //monitor refresh rate for smoooth animation
    D3Dpp.Windowed = true; //the application has borders
    try
    D3Ddev = new Device(Manager.Adapters.Default.Adapter, DeviceType.Hardware, pictureBox1.Handle,
    CreateFlags.SoftwareVertexProcessing, D3Dpp);
    D3Ddev.VertexFormat = CustomVertex.PositionColored.Format;
    D3Ddev.RenderState.Lighting = false;
    D3Ddev.RenderState.CullMode = Cull.CounterClockwise;
    //load imagesBmp to panelTexture
    //panelTexture = Texture.FromBitmap(D3Ddev, imagesBmp, Usage.Dynamic, Pool.Default)
    backTexture = TextureLoader.FromStream(D3Ddev, mymem);
    //scannerTexture = TextureLoader.FromFile(D3Ddev, @"D:\Buttons\Radar\radar.png");
    scannedCloudsTexture = new Texture(D3Ddev, 512, 512, 1, Usage.Dynamic, Format.A8R8G8B8, Pool.Default);
    //sprite is used to draw the texture
    D3Dsprite = new Sprite(D3Ddev);
    return true;
    catch
    return false;
    The 3 dll files are: Microsoft.DirectX.Direct3D.DLL, Microsoft.DirectX.Direct3DX.DLL, Microsoft.DirectX.DLL
    The question is why he is getting this exception ? Realy it dosent see/find the dll files ? Or maybe his machine not supporting this directx files ? Strange.
    Another thing when i put my mouse on the hard disk on the dll files i see a baloon tip say the:
    File description: Microsoft Managed Direct3D Debug 
    Maybe the problem is that the dll files of the directx belong to the debug directory but i make my program to be build in the release directory ? 
    In any case i can't find any solution yet. This is the exception message:
    System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.DirectX.Direct3DX.dll' or one of its dependencies. The specified module could not be found.
    File name: 'Microsoft.DirectX.Direct3DX.dll'
       at mws.ScanningClouds.InitializeDirectX()
       at mws.ScanningClouds.ScanClouds_Load(Object sender, EventArgs e) in d:\C-Sharp\Download File\Downloading-File-Project-Version-012\Downloading File\ScanningClouds.cs:line 142
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

  • After restoring backup new macbook with time machine Firefox will not start. says missing profile

    after restoring backup on new macbook with time machine Firefox will n to start. It says it is missing profile although profile exists and profile manager will not start. Also reinstalling does not help. Direct after starting Firefox it says profile is missing and then quits Firefox. Please help edit

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    * https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Restore backup file

    i already backup my file in D before i restore from initial backup used onekey recovery..
    but .. i want to restore backup file, when i already select backup file on D and click start, notice out tell me
    " the images file is not valid. please select a valid images file"
    why this happen?
    please help me how to solve this problem...
    thank you...

    hi elmo5367,
    this "D" is it an external harddrive or is it a partition you made in your unit's harddrive or is "D" referring to an optical disc?
    could you give to us the MTM of your unit?To locate MTM -
    http://support.lenovo.com/en_US/FindProductNumber.page#find
    at the same time, do provide a screenshot of the error.
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • My ipod touch will not restore backup files, it gets to 4 mins then say error occurred (-1),I have restarted my pc but no joy.

    My ipod touch will not restore backup files, it gets to 4 mins then say error occurred (-1),I have restarted my pc but no joy.

    I would next try restoring from backup.

  • Device dead, need to restore backup files from Palm 515 desktop software to Centro desktop software. Can it be done??

    Ok, here's the story:  My palm515 died about a year ago and since then I've been operating exclusively from my desktop software, until I recently bought a Palm Centro.  Instructions said to hotsync to device, install new Centro Software, then hotsync back from device onto the desktop program.  Problem is, I don't have a device to hotsync to because it's dead!  I have backups of desktop, so I tried installing Centro Software per instructions.  Centro Software said that it couldn't overwrite the old program, that I would manually have to uninstall it.  Ok.  But when I tried to go back into my old desktop software, it wouldn't even execute, like the Centro software had already begun to delete it.  So I reinstalled the old 515 software thinking I wanted to at least do another triple-dog-check backup to two different locations, maybe even print stuff out in case it woudn't restore to the new software.  Worst case scenario I have to type everything back in but at least I still have it.  But now i can't figure out how to restore backup files to the 515 software!  It keeps looking for .ada files but the backup files are .bak and it won't recognize them.  How the heck do you restore a backup on this thing!  OR, can I just install the new Centro software and restore the files from there.
    Somebody PLEASE tell me how this can be done.  My entire life, my business, all my clients, my appointments, my phone numbers, addresses, my records for my taxes, EVERYTHING is in there!
    thanks,
    meg
    Post relates to: Centro (Verizon)

    Assuming you are not running Vista, and that you have copied the User folder with the .dat and .bak files to a safe location outside the Palm folder, completely uninstall the Access Desktop that came with your Centro and download and install 4.1.4e from Palm's download page.
    If you can get the m515 data in there by copying the User folder or Importing Data and sync the Centro you should be fine. Once it all appears where it should (Desktop and Centro) you can delete the User folder copy you copied for the process.
    Post relates to: Palm TX

  • To restore backup files? ? ? ?

    does anyone in this universe know to restore backup file........??

    Itunes....select your device when docked....right click...choose which backup...go.

  • After restore backup from time machine, all thumbnails in photos are blank. How to fix ?

    After restore backup from time machine, all thumbnails in photos are blank. How to fix ?
    I'm using Yosemite 10.10.3 and Photos. i have tried repair database, but no success .

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • After restoration of files via time capsule my status changed to "Guest" and I can't find the pass word for changing it back to Registered user. Any Help?

    after restoration of files via time capsule my status changed to "Guest" and I can't find the pass word for changing it back to Registered user. Any Help?

    Hey mate I had this same problem exept instead of my recording disappearing my Chorus that went for 8 bars extended out to 20 bars lol and I used auto tune on it and it sounds like t-pain on a very bad day so it sounds like it does a few things when it comes up that error

  • In Log-shipping what is load delay period on secondary server - Skipping log backup file since load delay period has not expired ....

    During logshipping, job on secondary server is ran successfully BUT give this information
    "Skipping log backup file since load delay period has not expired ...."
    What is this "Load delay period" ? Can we configure this somehow, somewhere ?
    NOTE : The value on "Restore Transasction Log tab", Delay Restoring backups at least = Default (zero minutes)
    Thanks
    Think BIG but Positive, may be GLOBAL better UNIVERSAL.

    How to get the LSBackup, LSCopy, and LSRestore jobs back in sync...
    Last I posted the issue was that my trn backups were not being copied from Primary to Secondary. 
    I found upon further inspection of the LS related tables  in MSDB the following likely candidates for adjustment:
    1) dbo.log_shipping_monitor_secondary, column  last_copied_file 
    change last copied file column to something older than the file that is stuck. For example, the value in the table was 
    E:\SQLLogShip\myDB_20140527150001.trn
    I changed last_copied_file to E:\SQLLogShip\myDB_20140525235000.trn. Note that this is just a made up file name that is a few minutes before the actual file that I would like to restore (myDB_2014525235428.trn). 4 mins and 28 seconds before, to
    be exact.
    LSCOPY runs and voila! now it is copied from primary to secondary. That appears to be the only change needed to get the copy going again.
    2) For LSRestore, see the MSDB table dbo.log_shipping_monitor_secondary, change
    last_restored_file
    again I used the made up file E:\SQLLogShip\myDB_20140525235000.trn
    LSRESTORE runs and my just copied myDB_2014525235428.trn is restored
    ** note that
    dbo.log_shipping_secondary_databases also has a last_restored_file column - this did not seem to have any effect, though I see that it updates after completing the above and LSRestore has run successfully, so now it is correct as well
    3) LSBackup job is still not running, the job still has a last run date in the future. Could just leave it and eventually it will come right, but I made a fairly significant time change, plus it's all an experiment....back to MSDB.
    look at dbo.sysjobs, get the job_id of your LSBackup job
    edit dbo.sysjobschedules - change next_run_date  next_run_time as needed to a datetime before the current time, or when you would like the job to start running. 
    I wouldn't be so cavalier with data that was important, but that's the benefit of being in Test, and it appears that these time comparisons are very rudimentary - a value in the relevant log shipping table and the name of the trn file. That said, if you
    were facing a problem of this nature due to lost trn files, corrupted, or some similar scenario, this wouldn't fix your problem, though it _might_ allow you to continue? But in my case I know I have all the trn files, it's just the time that changed, in this
    case on my Primary server, and thus the names of the trn logs got out sync.

  • JAVA servers are not starting

    Hi SAP Gurus,
    some days back i did system refresh from prod. now ABAP is running but only java servers are not starting. other nodes dispatcher & SDM running. please suggest.
    here is dev_server1 file
    =============================================
    -> arg[ 36]: -Djstartup.whoami=server
    -> arg[ 37]: -Djstartup.debuggable=no
    -> arg[ 38]: -DSAPINFO=BQN_51_server
    -> arg[ 39]: -DSAPSTART=1
    -> arg[ 40]: -DCONNECT_PORT=64990
    -> arg[ 41]: -DSAPSYSTEM=51
    -> arg[ 42]: -DSAPSYSTEMNAME=BQN
    -> arg[ 43]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 44]: -DSAPPROFILE=/usr/sap/BQN/SYS/profile/BQN_DVEBMGS51_cpcsapv1
    -> arg[ 45]: -DFRFC_FALLBACK=ON
    -> arg[ 46]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 47]: -DSAPSTARTUP=1
    -> arg[ 48]: -DSAPSYSTEM=51
    -> arg[ 49]: -DSAPSYSTEMNAME=BQN
    -> arg[ 50]: -DSAPMYNAME=cpcsapv1_BQN_51
    -> arg[ 51]: -DSAPDBHOST=cpcsapv1
    -> arg[ 52]: -Dj2ee.dbhost=cpcsapv1
    [Thr  4] Fri Feb  3 14:28:34 2012
    [Thr  4] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server1]
    [Thr 27] Fri Feb  3 14:28:36 2012
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 27] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 27] JLaunchISetClusterId: set cluster id 515639851
    [Thr 27] Fri Feb  3 14:28:44 2012
    [Thr 27] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 27] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Fri Feb  3 14:29:13 2012
    40.606: [GC 40.606: [ParNew: 87040K->5145K(130560K), 0.0272228 secs] 87040K->5145K(1005056K), 0.0273939 secs]
    Fri Feb  3 14:30:59 2012
    147.504: [GC 147.505: [ParNew: 92185K->4232K(130560K), 0.0099921 secs] 92185K->4232K(1005056K), 0.0101364 secs]
    Fri Feb  3 14:31:32 2012
    180.020: [GC 180.020: [ParNew: 91272K->11482K(130560K), 0.0398227 secs] 91272K->11482K(1005056K), 0.0400287 secs]
    Fri Feb  3 14:31:35 2012
    182.991: [GC 182.992: [ParNew: 98522K->16449K(130560K), 0.0520708 secs] 98522K->16449K(1005056K), 0.0522291 secs]
    Fri Feb  3 14:31:37 2012
    184.671: [GC 184.671: [ParNew: 103489K->16840K(130560K), 0.0362919 secs] 103489K->16840K(1005056K), 0.0364886 secs]
    Fri Feb  3 14:31:38 2012
    185.955: [GC 185.955: [ParNew: 103880K->17465K(130560K), 0.1179448 secs] 103880K->17465K(1005056K), 0.1181308 secs]
    Fri Feb  3 14:31:39 2012
    187.030: [GC 187.030: [ParNew: 104505K->19470K(130560K), 0.0490249 secs] 104505K->19470K(1005056K), 0.0492104 secs]
    Fri Feb  3 14:31:40 2012
    187.892: [GC 187.892: [ParNew: 106510K->20973K(130560K), 0.0462993 secs] 106510K->20973K(1005056K), 0.0464782 secs]
    Fri Feb  3 14:31:41 2012
    188.624: [GC 188.625: [ParNew: 108013K->22480K(130560K), 0.0549972 secs] 108013K->22480K(1005056K), 0.0551496 secs]
    Fri Feb  3 14:31:42 2012
    189.855: [GC 189.856: [ParNew: 109520K->26140K(130560K), 0.0483116 secs] 109520K->26140K(1005056K), 0.0485971 secs]
    [Thr 139] Fri Feb  3 14:31:47 2012
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 139] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.engine.Compress
    Fri Feb  3 14:31:48 2012
    196.478: [GC 196.479: [ParNew
    Fri Feb  3 14:31:49 2012
    : 113180K->34002K(130560K), 0.0845910 secs] 113180K->34002K(1005056K), 0.0848079 secs]
    Fri Feb  3 14:32:14 2012
    221.647: [GC 221.647: [ParNew: 121042K->43127K(130560K), 0.0901828 secs] 121042K->43127K(1005056K), 0.0904040 secs]
    Fri Feb  3 14:32:15 2012
    223.343: [GC 223.343: [ParNew: 130143K->37620K(130560K), 0.0733509 secs] 130143K->46470K(1005056K), 0.0735802 secs]
    Fri Feb  3 14:32:16 2012
    224.069: [GC 224.069: [ParNew: 124591K->40179K(130560K), 0.0747273 secs] 133442K->49029K(1005056K), 0.0749214 secs]
    Fri Feb  3 14:32:17 2012
    224.682: [GC 224.683: [ParNew: 127211K->40700K(130560K), 0.0815027 secs] 136062K->52675K(1005056K), 0.0816996 secs]
    225.187: [GC 225.187: [ParNew: 127724K->40534K(130560K), 0.0587785 secs] 139699K->54340K(1005056K), 0.0589684 secs]
    [Thr 130] Fri Feb  3 14:35:11 2012
    [Thr 130] JHVM_RegisterNatives: registering methods in com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 149] Fri Feb  3 14:35:12 2012
    [Thr 149] ***LOG S98=> STISearchConv, no conv (14387978) [r3cpic_mt.c  6137]
    [Thr 149]
    [Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode
    [Thr 149] *  ERROR       no conversation found with id 14387978
    [Thr 149] *
    TIME        Fri Feb  3 14:35:12 2012
    [Thr 149] *  RELEASE     701
    [Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode
    [Thr 149] *  VERSION     3
    [Thr 149] *  RC          473
    [Thr 149] *  MODULE      r3cpic_mt.c
    [Thr 149] *  LINE        6138
    [Thr 149] *  COUNTER     1
    [Thr 149] *
    [Thr 149] *****************************************************************************
    [Thr 149]
    **[Thr 149] *  LOCATION    CPIC (TCP/IP) on local host with Unicode**
    **[Thr 149] *  ERROR       illegal parameter value ( function=SAPCMTIMEOUT2 /**_
    ***              parameter=conversationID / value=14387978 )**_
    **[Thr 149] ***
    ***  TIME        Fri Feb  3 14:35:12 2012**
    **[Thr 149] *  RELEASE     701**
    **[Thr 149] *  COMPONENT   CPIC (TCP/IP) with Unicode**
    **[Thr 149] *  VERSION     3**
    **[Thr 149] *  RC          769**
    **[Thr 149] *  MODULE      r3cpicmt.c**_
    **[Thr 149] *  LINE        7354**
    **[Thr 149] *  COUNTER     2**
    **[Thr 149] ***
    **[Thr 149] *******************************************************************************
    [Thr 27] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    399.717: [GC 399.717: [ParNew: 127574K->43520K(130560K), 0.0996730 secs] 141380K->60028K(1005056K), 0.0999462 secs]
    Fri Feb  3 14:35:15 2012
    402.992: [GC 402.993: [ParNew: 130425K->39664K(130560K), 0.0697386 secs] 146933K->65055K(1005056K), 0.0699946 secs]
    Fri Feb  3 14:35:18 2012
    406.083: [GC 406.083: [ParNew: 126695K->36855K(130560K), 0.0698643 secs] 152086K->67926K(1005056K), 0.0701081 secs]
    Fri Feb  3 14:35:19 2012
    407.337: [GC 407.338: [ParNew: 123895K->36788K(130560K), 0.0644911 secs] 154966K->67859K(1005056K), 0.0646924 secs]
    Fri Feb  3 14:35:20 2012
    Excluding compile:  com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingImpl::initializeRelations
    Fri Feb  3 14:35:21 2012
    409.075: [GC 409.075: [ParNew: 123700K->38997K(130560K), 0.0669356 secs] 154771K->70069K(1005056K), 0.0671589 secs]
    Fri Feb  3 14:35:24 2012
    411.813: [GC 411.814: [ParNew: 126037K->41099K(130560K), 0.0865503 secs] 157109K->72170K(1005056K), 0.0867652 secs]
    ==============================================================

    Hi,
    From the logs, looks like the Java is not able to connect to the ABAP via the RFC.
    ERROR no conversation found with id 14387978
    Check the SAPJSF user which is required for communication between ABAP and Java stacks. Check for roles and if it is locked. Also you could try a server restart, which may reset the conversation IDs.
    Regards,
    Srikishan

  • After install Windows 10, the texts in Skype are not very neat, with low definition

    After  install Windows 10, the texts in Skype are not very neat, with low definition. This has happend just with Skype. Do you know how I can fix it?

    I HAVE FOUND A FIX! Searching through the support blogs paid off in a big way. A minor registry edit is all it took and my drive is working like new! Here's the fix. My system is Windows 10 64-bit.  Resolution 5: Create a registry subkey
    Note To use this method, you must be logged on to Windows as an administrator. If you need help verifying that you are an administrator, go tohttp://support.microsoft.com/gp/admin
    Important Follow the steps in this section carefully. Serious problems might occur if you modify the registry incorrectly. Before you modify it, back up the registry for restoration in case problems occur.
    To create the registry subkey, follow these steps:
        Press the Windows logo key + R to open the Run box. (or right-click on windows icon in lower left corner)
        Type regedit in the Run box, then press Enter. If you are prompted for an administrator password or for a confirmation, type the password, or click Allow
        In the navigation pane, locate the following registry subkey:
        HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\atapi
        Right-click atapi, point to New, then click Key.
        Type Controller0, and then press Enter.
        Right-click Controller0, point to New, and then click DWORD(32-bit) Value .
        Type EnumDevice1, and then press Enter.
        Right-click EnumDevice1, click Modify....
        Type 1 in the Value data box, and then click OK.
        Exit Registry Editor.

  • Backend System with Release 701 are not supported

    SRM 5.0
    Extended Classic Scenario
    CCM 2.0
    When updating the vendors in SRM system using TC - BBPUPDVD getting the below error message :-
    Backend System with Release 701 are not supported
    Have checked in table - BBP_BACKEND_DEST, the backend entry is properly maintained.
    Can any one advice.
    Regards,
    Jayoti
    Edited by: SAP jayoti on Dec 7, 2010 1:11 PM

    The problem is resolved for vendor relication after applying the below notes 1313972 and 1372175.
    ECC sandbox seems to be in 701 release. When the backend system ECC is in release 701, vendor replication fails with the error message that 'Backend system release 701 not supported'. We need to apply notes 1313972 and 1372175 to fix this issue. I have applied them in Sandbox and the issue is resolved now.

  • BBPGETVD throwing an error -Backend system with release 701 are not support

    Experts,
    After changing the Backend connection from  R3 4.6c to ECC6 sysem in our BBPCRM4.0,
    the transaction "BBPGETVD" is not working, which is throwing an error as
    "Backend system with release 701 are not supported".
    Already we have applied some of the notes (822883 &862290)
    Thanks
    Ahamed

    Are you able to replicate other data like plants, product categories from the same backend system or are you facing the same error?
    Also please check the logical system and see if they are assigned to the client correctly. (in SPRO settings)
    Thanks,
    Prashanth

Maybe you are looking for

  • Dv4-1123us heat

    Since I got this laptop it has a heating problem. It gets really really hot underneath it where the hard disk and the wireless card are located (and also on the top at the left hand side of the toutch pad). I have always used it elevated (at the begi

  • ITunes and Windows 7 64 Bit

    Each time I start iTunes, I get the following message "iTunes was not properly installed.If you wish to import or burn CDs, you need to reinstall iTunes." I have re-installed iTunes twice and I still get this message - it is driving me bonkers!

  • PDF Maker adding text in header and footer

    As I convert documents from MS Word to .pdf, I am experiencing a problem with what looks like additional text being placed in front of a field, which references a bookmark in my Word document. The additional code is showing up in header and footers o

  • How do I know if a number is saved on my iPhone 4?

    Hi, I just transferred to an iPhone 4, and my old phone is the ancient iPhone 2G. But, I found out that I like the 2G better than the iPhone 4 SINCE in the 2G, (running 3.1.3) when I type a number in the keypad and it`s saved on my contacts, a small

  • ID objects in NWDS

    Hi All, Can we build the similar components of ID as present in traditional swing tool using NWDS , or else is it better to built components of both ESR and ID  in Swing tool.