SLD request stops server0

Hi all. We have installed a Netweaver SR3 with all usage types and currently Post Installing it for the PI usage type. Our problem occurs when we are performing the steps in the SLD (setting up technical and business systems etc.) We make a request to login to the SLD and after a few seconds the page halts and it will either remain blank or the error message says that a request has been made but the server0 has been stopped or isn't up.
This also happens if it does manage to login but if you then try to access any of the other pages within the SLD, server0 in the MMC restarts.
Any ideas what this might be caused by. And if possible can someone direct us to a guide that defines how the SLD works and with troubleshooting this and server0.
Many thanks.
JW.

Hi!
As said above, please check the trace and output files for server0 in the work directory - especially OutOfMemory errors would be a strong indication that your memory is not set up correctly.
Kind regards,
Jörg

Similar Messages

  • Enhancement request: Stop marking private enum constructor as not used

    Example:
    public enum MyEnum
      FOO("some value"),
      BAR("some other value");
      private String myValue;
      private MyEnum(String myValue)
        assert myValue!= null;
        this.myValue = myValue;
      public String value()
        return myValue;
    }~ Simon

    This is the expected behavior. If a private constructor is not called with in the class or enum it is marked as unused.
    --Ric                                                                                                                                                                                                                                                                   

  • Enhancement request: Stop marking private singleton constructor as not used

    Example:
    public class Singleton
      private static Singleton instance = new Singleton();
      private Singleton()
    }Thanks,
    ~ Simon

    I tried this in JDev 11g tech preview two and no errors or warnings are flagged:
    package x;
    public class Singleton {
      private static Singleton instance = new Singleton();
      private Singleton()
      public static Singleton getInstance() {
          return instance;
    }

  • Request: Stop synchronizing completed tasks

    I want an option to not sync completed Outlook tasks in Ovi Suite, only the open ones.

    I just got my Nokia phone and have discovered the same problem. Even though ask it to only sync +/- 1 month I still get a massive list of completed tasks from over a year ago. Does Nokia have a fix for this???

  • Request: Stop synching completed tasks

    Completed Tasks are still stored in Outlook. Ovi Suite synchronizes maybe a couple of 100 completed tasks from ages ago and there's no way to tell it _not_ to synchronize completed tasks. My Nokia 6110 takes several seconds until it displays the tasks. FYI PC Suite had the option to not sync completed tasks.
    Ovi Suite 2.2.0.245 (and all previous versions)

    I just got my Nokia phone and have discovered the same problem. Even though ask it to only sync +/- 1 month I still get a massive list of completed tasks from over a year ago. Does Nokia have a fix for this???

  • Urgent! EP7 does not talk to its local SLD

    We have configured EP7's Visual Admin SLD data supplier and the data transfer
    is successful. However we have some strange situations:
    1) even the local SLD is stopped, "check SLD connection" at webdynpro is still a
    "success";
    2) when the local SLD is running, "create Jco connection" and "main Jco
    connection" will give 500 internal error.
    We suspect that this EP7 is pointing to other SLD. But on the "SLD data
    supplier" in Visual Admin. we make sure it is pointing to the local host.
    Please share you experience. I'll give points.

    Hi,
       Check the logs in defaultTrace.trc in \usr\sap\J2E\JC00\j2ee\cluster\server0\log and dev_jrfc.trc in \usr\sap\J2E\JC00\j2ee\cluster\server0 (Please verify the path). Also check the last part in this document for different trace file locations for JCO problems.
    http://help.sap.com/saphelp_nw70/helpdata/en/f6/daea401675752ae10000000a155106/frameset.htm
    Regards,
    Vijai

  • Request.getParameter comes blank on some browser, while works on other

    Hi,
    Need urgent help to rectify thie problem
    I am accessing a application hosted on Weblogic8 SP2 as WAR file
    In this application I am able to login and search result and go to home page of one the search results.
    But on some other machine on same IE6 or Firefox the forward from search results to Home page stops in a URL which is being used in middle to forward.
    URL (also used in JSP pasted below) is created in action class called by search result link.
    This is how it is impleted.....
    I have a replicated link with unique Id on Search result page which forward me to this JSP
    <head>
    <SCRIPT language="JavaScript">
    function submitform()
    var urlString = "<%=request.getAttribute("urlString")%>";
    document.form1.action =urlString;
    document.form1.submit();
    </SCRIPT>
    </head>
    <body onload="submitform();">
    <form name = "form1" method = "POST">
    <input type = "hidden" name="myVariable" value="myValue"></input>
    <input type = "hidden" name="empID" value="<%=request.getAttribute("empID")%>"></input>
    <input type = "hidden" name="ownerName" value="<%=request.getSession().getAttribute("ownerName").toString()%>"></input>
    </form>
    </body>
    </html>
    Once this JSP is submitted this URL has to call a action class to validate some session attribute and the hidden value in JSP above named as "myVariable" which is checked for some "myValue". So it will then Forward to Home Page.
    On some machines IE6 or FireFox this is working as expected and logs show correct results all through.
    But some other machines with same Browser, the "myVariable" value in action class is coming blank and so request stops at the URL submit in above JSP. However no errors or Exceptions are thrown.
    Please help in this issue if some one can suggest any solution or way to dig up more on this.
    Also if I havent explained clearly by chance, then pls give me another chance to explain more.
    Thanks a lot for all your efforts.

    Hi,
    Thanks for reply,
    Nop our WAR do not have any filter. and We used IE 6 and FireFox 2 on both machines. We also saw the Options for both browser and matched these for both machines. They were same.
    The javascript we used was to submit the form on click of a Href. but it do not use any JSP element. We had just set a value in <input type="hidden"...
    and this value we fetch in Java class by saying request.getParameter("name");

  • New Socket takes too long / how to stop a Thread ?

    Hello to everyone,
    I have a problem that I have been hunting this ol' Sun website all day for a suitable answer, and have found people who have asked this same question and not gotten answers. Finally, with but a shred of hope left, I post...
    My really short version:
    A call to the Socket(InetAddress,int) constructor can take a very long time before it times out. How to limit the wait?
    My really detailed version:
    I have a GUI for which the user enters comm parameters, then the program does some I/O while the user waits (but there is a Cancel button for the Impatient), then the results are displayed. Here is quick pseudocode (which, by the way, worked great before there were Sockets in this program -- only serial ports):
    Main (GUI) thread:
         --> reset the stop request flag
         --> calls workerThread.start(), then brings up a Cancel dialog with a Cancel button (thus going to sleep)
         --> (awake by dialog closing -- dialog may have been closed by workerThread or by user)
         --> set stop request flag that worker thread checks (in case he's still alive)
         --> call workerThread.interrupt() (in case he's alive but asleep for some reason (???))
         --> call workerThread.join() to wait for worker thread to be dead (nothing to wait for if he's dead already)
         --> display worker thread's result data or "Cancelled..." information, whichever worker thread has set
    Worker thread:
         --> yield (to give main thread a chance to get the Cancel Dialog showing)
         --> do job, checking (every few code lines) that stop request flag is not set
         --> if stop request, stop and set cancelled flag for Main thread to handle
         --> if finish with no stop request, set result data for Main thread to handle
         --> take down Cancel Dialog (does nothing if not still up, takes down and wakes main thread if still up)
    THE PROBLEM: Worker thread's job involves doing IO, and it may need to instantiate a new Socket. If it is attempting to instantiate Socket with bad arguments, it can get stuck... The port int is hardcoded by the program, but the IPAddress must be typed by user.
    If the arguments to Socket(InetAddress, int) constructor contain a valid-but-not-in-use IP address, the worker thread will get stuck in the Socket constructor for a LONG time (I observed 1m:38s). There is nothing the Main thread can do to stop this wait?
    EVEN WORSE: If the user clicks the Cancel Button during this time, the dialog goes away soon/immediately, but then the GUI appears to be hanging (single-threaded look) until the long wait is over (after which the "Cancelled..." info is displayed).
    MY QUESTION: Is there nothing the Main thread can do to stop this wait?
    Your answers will be sincerely appreciated. Despite my hopeless attitude (see above), the folks at this forum really have yet to let me down ...
    /Mel

    http://developer.java.sun.com/developer/technicalArticles/Networking/timeouts/

  • Problem during import of 121 transport requests to productive system

    Hello
    We have problem during import of transport requests to productive system. Import of 121 transport requests stopped very soon in phase "N" (in TRBAT I have only one entry and in  TRJOB  as well).
    In sm50 there is an BGD running under user DDIC in client 000 now for 14453 seconds (program SAPLSDB2). This should be import.
    In SM37 I can see it as  job "RDDGEN0L" with  repport"RDDGENBB". Based on some literature it should perform "Converting all structure changes generated by the import and recorded in table TBATG, other than the structure changes to matchcode objects." Very interesting  that TBATG has only four entries related to 2 indexes in table "DFKKOPK" , one in table "DFKKREP06" and one" ENQU" for EFKKEXC". (only this last one has not status error)
    For fist two indexes I know they are not present  as objects "LIMU""INDX" in any transport request beeing imported.
    Also on productive system there is no"VOL" and "ZOL"indexes for table "DFKKOPK"(instead they are created on test system ie. not transported from development to test system)
    Last command for that process is "CREATE INDEX "DFKKOPK~HKO" ON "DFKKOPK" ("MANDT", "HKONT", "OPBEL") PCTFREE 10 INITRANS 002 TABLESPACE PSA
    PTR3 STORAGE (INITIAL 0000000016 K NEXT 0000000016 K MINEXTENTS 0000000001 MAXEXTENTS UNLIMITED PCTINCREAS"
    There is enaught space on disk and in tablespaces (it is an oracle/HPux server).
    Does anyone knows workaroun to solve production

    are you importing these transport requests simultaneously into production?
    I would suggest you try doing in smaller groups of 5 or 10 and then see whether you are able to import the requests
    Rohit

  • Error during installation of a new SLD

    Hello people,
    During installation of a new SLD I got different kind of errors in the Log. Does anyone has a suggestion what to do?
    <b>#79</b> 09/10/2007 14:04:01.536 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ImportHandler: Finished full import into namespace sld/active: More...
    <b>#78</b> 09/10/2007 14:04:01.528 [Thread-74] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 46 ms)
    <b>#24</b> 09/10/2007 13:34:57.879 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#23</b> 09/10/2007 13:34:23.46 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#22</b> 09/10/2007 13:33:46.802 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#21</b> 09/10/2007 13:33:15.571 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#20</b> 09/10/2007 13:32:49.979 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#19</b> 09/10/2007 13:32:20.687 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#18</b> 09/10/2007 13:31:50.255 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#17</b> 09/10/2007 13:31:26.370 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#16</b> 09/10/2007 13:30:58.647 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#15</b> 09/10/2007 13:30:28.281 [Thread-74] INFO com.sap.lcr.pers.delta.importing.ObjectLoader: The following errors occurred during the import: More...
    <b>#14</b> 09/10/2007 13:15:05.378 [Thread-74] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 113 ms)
    <b>#13</b> 09/10/2007 12:55:39.244 [SAPEngine_Application_Thread[impl:3]_27] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 40 ms)
    <b>#12</b> 09/10/2007 12:54:35.280 [SAPEngine_Application_Thread[impl:3]_17] WARNING com.sap.lcr.jsp.importWarning: The following warning has been reported by import precondition checks, user decision required:  More...
    <b>#11</b> 09/10/2007 12:54:35.270 [SAPEngine_Application_Thread[impl:3]_17] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 39 ms)
    <b>#10</b> 09/10/2007 12:48:12.210 [Thread-72] INFO com.sap.lcr.pers.delta.importing.ImportHandler: Finished full import into namespace sld/active: More...
    <b>#9</b> 09/10/2007 12:48:12.189 [Thread-72] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 46 ms)
    <b>#8</b> 09/10/2007 12:19:40.871 [Thread-72] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 89 ms)
    <b>#7</b> 09/10/2007 12:19:29.549 [SAPEngine_Application_Thread[impl:3]_37] WARNING com.sap.lcr.jsp.importWarning: The following warning has been reported by import precondition checks, user decision required:  More...
    <b>#6</b> 09/10/2007 12:19:29.400 [SAPEngine_Application_Thread[impl:3]_37] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 377 ms)
    <b>#5</b> 09/10/2007 12:17:44.796 [SAPEngine_Application_Thread[impl:3]_17] WARNING com.sap.lcr.jsp.importWarning: The following warning has been reported by import precondition checks, user decision required:  More...
    <b>#4</b> 09/10/2007 12:17:44.698 [SAPEngine_Application_Thread[impl:3]_17] INFO com.sap.lcr.pers.jdbc.JdbcPersistence: Deleted namespace: sld/import/temp0 (Duration: 1,929 ms)
    <b>#3</b> 09/10/2007 12:14:48.156 [SAPEngine_Application_Thread[impl:3]_0] INFO com.sap.sld.api.builder.app.DefineHostedSystem: JDI system SLD jct11 on T11 on dbt11-se written to SLD at jct11:53300.
    <b>#2</b> 09/10/2007 12:14:47.392 [SAPEngine_Application_Thread[impl:3]_0] INFO com.sap.lcr.start.StartDirector: SLD application started successfully.
    <b>#1</b> 09/10/2007 12:14:35.244 [SAPEngine_Application_Thread[impl:3]_25] INFO com.sap.lcr.start.StartDirector: SLD application stopped successfully.
    <b>#0</b> 09/10/2007 08:41:05.852 [SAPEngine_Application_Thread[impl:3]_6] INFO com.sap.lcr.start.StartDirector: SLD application started successfully.
    Kind regards,
    Kamran<b></b>
    Message was edited by:
            Kamran Vakili

    Adding more mystery to the distribution kit error discussed above.  I have found that the kit installs successfully on Win 7 x64 machines as well as WinXp x32  machines.  However, the installation error message still exists on Win 7 x32 machines.  On one of these Win 7 x32 machines the error message infers that there is a .dll file  that cannot be found, with no mention or hint as to the file's name.   Again, any tips would be appreciated.

  • Production SLD in solution manager

    Hi,
    I have small doubt regarding SLD (System Landscape Directory) in Solution Manager.
    We have an Production SLD in Solution Manager dual stack system, and our Production System (Portals, BI, ERP, PI) was configured to Production SLD in Solution Manger.
    We are planning to apply patches for our live production Solution Manager System, I know that SLD will stop while doing the Patches on Solution Manager and this will make our production systems stop working.
    Therefore I need to know the correct way around this to allow us to patches for our Solution Manager system.
    Thanks and Regards
    Pavan Morishetty.

    Joshi,
    Thanks for your quick reply.
    But in our company we don't want to change our Production SLD from Solman system to any other System (eg. PI, Portal).
    If you any other suggestion please update me for applying the patches in Solman System.
    Thanks and Regards
    Pavan

  • SLD change

    Hello,
    We need to change SLD layout from what is depicted on the left side on the picture below to the solution depicted on the right side.
    The reason for this is that services in SAP Landscape that depend on SLD are stopped during Solution Manager maintenance/restart. I read SLD documentation and based on it I proposed solution (right side of picture) that will allow continuous availability of services in SAP Landscape during Solution Manager maintenance/restart.
    I do not have experience with SLD so I would like to know what do you think about this solution.
    Also, what would be correct steps to make this transition? I would say I should have to install central SLD first and then sync it with local SLD on Solution Manager, then redirect data suppliers of systems in SAP Landscape to central SLD. Later I can add backup SLD and sync it with central SLD. Can cutoff from Local SLD be done in such way or should I stop local SLD until I redirect data suppliers?
    Regards,
    Sasha

    Hi Sasha,
    I'm in the middle of doing this exact thing myself right now, for the same reasons you outline.  I'm separating our central SLD from Solution Manager.  I'm not finished yet, about halfway through the process, but from what I've read and what I've achieved so far, I think you have the gist of it.  Your outline looks reasonable to me.  I don't think you need to actually maintain a local SLD on Solution Manager anymore once you have migrated all the content and repointed all the data suppliers to your new central SLD.  You can configure LMDB to synchronize from a remote SLD, so once that last step is done, I think you can just 'abandon' the old local SLD on SolMan entirely.
    So, here is what I've done so far:
    Install new AS Java (version 7.4 SR1)Temporarily register it in existing 'old' SLD
    Update AS Java to sps7
    Enable SSL, create administrative usersConfiguring the Use of SSL on the AS Java - Network and Transport Layer Security - SAP Library
    Initially configure new SLD
    Post-Installation Checklist - Configuring, Working with and Administering System Landscape Directory - SAP Library
    Configuring System Landscape Directory - AS Java Configuration - SAP LibraryThis included this step, and using it to configure the "System Landscape Directory" functional unit only:Java Functional Unit Configuration - SAP NetWeaver Library: Function-Oriented View - SAP Library
    Migrate content from old SLD to new SLD (this is the step I'm in the middle of right now)
    Demo: The Full Automatic Sync Feature in the SLD of SAP NetWeaver 7.1
    SLD and LMDB Topology: Replacing the Source SLD for the LMDB
    Once the initial unidirectional content sync is complete, the next steps will be:
    Enable bidirectional content sync
    Configure LMDB to sync with new SLD
    Configure data suppliers to sync to new SLD
    Disable bidirectional content sync
    This method can be used to setup your backup SLD later as well, except you don't have to reconfigure LMDB or data suppliers, just install and set up the content sync.  In that circumstance, you may want to explore using a Virtual IP address as well.
    Regards,
    Matt

  • SLD Server can not start

    Dear Experts,<br>
    I need your help...<br>
    <br>
    I installed ABAP+Java stack (ECC6.0 and SAP J2EE Engine/7.00 PatchLevel 109886.44).<br>
    When I view http://myserver01:50000/sld, I saw that the SLD server is stoped and I can not start it even I click "Start Sever button", system gave me error message "Failed to send start signal for complete cluster, SLD may still be stopped on other cluster nodes.".<br>
    <br>
    I checked the log in Administration tab, the log said:<br>
    ===========================================<br>
    #4 12/20/2009 19:40:06.390 [SAPEngine_Application_Thread[impl:3]_6] FATAL com.sap.lcr.start.StartDirector: SLD start failure, unable to activate the SLD CIMOM. Check the log of the persistence medium for any errors. If the error is reproducible, please send a message to SAP. More...<br>
    #3 12/20/2009 19:40:06.375 [SAPEngine_Application_Thread[impl:3]_6] FATAL <br>com.sap.lcr.objmgr.core.TransactionContainerChangeBuffer: Storing changes to cache failed. Please restart the application to reinitialize the cache.(Error: CIM_ERR_FAILED: Failed to initialize cluster notification sender.) More...<br>
    #2 12/20/2009 19:40:06.375 [SAPEngine_Application_Thread[impl:3]_6] ERROR com.sap.lcr.cimsrv.ClusterNotificationSender$JMSSender: Failed to initialize cluster notification sender. Please check your JNDI service and JMS provider for errors. More...<br>
    #1 12/20/2009 19:40:06.31 [SAPEngine_Application_Thread[impl:3]_6] FATAL com.sap.lcr.cimsrv.CIMOMServlet: SLD initialization failure, can not set up cluster-wide event notification. Please check your JMS provider for errors. More...<br>
    #0 12/20/2009 19:40:06.31 [SAPEngine_Application_Thread[impl:3]_6] ERROR com.sap.lcr.cimsrv.ClusterNotificationListener: Failed to initialize cluster notification. Please check your JNDI service and JMS provider for errors. More... <br>
    ===========================================<br>
    <br>
    Could any one  tell me how to start up the SLD? <br>
    More information: When I click Administration>details>Data, I saw:<br>
    ==================<br>
    Nothing Available<br>
    Model Version (sld/active):     No model loaded<br>
    SAP CR Content Version (sld/active):     (SLD server stopped)<br>
    ==================<br>
    But when I checked the location of E:\usr\sap\EC6\SYS\global\sld\model, I can see cimsap.zip and CR_Content.zip files there.<br>
    <br>
    <br>
    <br>
    Further more, I was a little bit confused about the SLD HTTP Port, that is during the installation parameter setting phase (SAP Sytem-> Central SLD), I choose SLD destination as "Register in existing central SLD(default)", and set SLD port to "8089", SLD Data Supplier User as "SLDDSUSER", but I can not find user "SLDDSUSER" in ABAP SU01, it's very strange. when I tried to view http://myserver01:8089/sld, it said "Page can not be found", could you tell me what's the difference between these two URL: Http://myserver01:8089/sld and http://myserver01:50000/sld?<br>
    <br>
    There are totally two questions(one problem and one question) of mine, any suggestions is welcome and it's surely that I will follow up and close this thread for the effective solutions.
    <br>
    Thank you very much in advance.<br>
    <br>
    Best regards,<br>
    Nick<br>
    <br>
    Edited by: Li Nick on Dec 20, 2009 5:33 PM
    Edited by: Li Nick on Dec 20, 2009 5:34 PM

    Hi Nick,
    1. Is SLD a pure java component that ABAP system should connect it through gateway port (JCo or something else..) and Java engine connect it directly with HTTP/HTTPS?
    Above statment is right
    2. So, the mechanism of Solution manager to manage all the systems is also based on SLD? Can we monitor all the system landscape without Solution manager, just SLD instead?
    SLD is central repositoy to store system data present in landscape , Solution manager is used to monitor all the system using SLD also.
    We can't montior system by just using SLD.
    3. The functionality of the Visual Administrator->Cluster->Server->Services->SLD Data Supplier is to provide user inforamtion of the system that will be registered info. onto the SLD server, not configuring the SLD Server? (SLD is configured through Webpage port 50000 and to-be registered server is configured through Visual Administrator?
    SLD Data Supplier is a area in As java system where you provide the information of existing SLD system ( the Exisiting SLD mean where SLD services is running )
    SLD is purely java component
    user SLDDSUSER belongs to the "TO-BE Registered" system, not the SLD server, am I understanding right?
    SLDDSUSER belong to SLD server
    so, the event of "Trigger SLD data transfer" is to send system information to the SLD Server
    Yes.
    Thanks
    Anil

  • How to start SLD server

    Hi
    can any one help on this error when click on check SLD iam getting the following error.
    SLD Used By Applications: Not OK
      Configuration: OK
      Applications on this AS Java system use the SLD at http://172.19.199.89:50100/sld/cimom/sld
      Status: CIM_ERR_FAILED: SLD is stopped.
    Thanks
    Sastry

    To start SLD Server follow the below steps
    Start Visual Administrator.
    To start it
    1)     Go to Server Installed path i.e. usr\sap\<systemid>\<systeminstance>\J2ee\admin
    2)Choose go.bat and start it.
    3)Under Global Server Configuration, choose <Serverid>.
    choose CIM Client Generation Settings and give Host Name, Port Number, User Name and Password.
    4)You can test the SLD is configured properly or not. Just click CIM Client Test.
    5)Save the settings and close Visual Administrator.
    6)Restart the server
    regards
    Anil
    reward points if useful

  • Import requests in an virtual System

    Hello Colleagues!!
    We are having an problem with requests stopped in virtual system within our landscape.
    What name of job or report that import the  request in an virtual system?
    But there aren't  job monitor for virtual systems.
    Thanks
    Best Regards

    Hello,
    This is the first time I hear about IMPORT into a Virtual system.
    Not sure how we can import any transport into a virtual system (which doesn't exist yet). I am not sure if it is possible though.
    Thanks

Maybe you are looking for

  • Win2k reboots after i manually create the tnslistener service

    Guys do let me if the solution 4 d below described problem. lsnrctl exe allows me to create a tns listener service and even the clients can connect once that service is up and running, problem starts when i reboot the win 2k server that has a databas

  • Latest wine issues[SOLVED]

    did an upgrade yesterday and wine was updated. wine-1.1.14-1 now I get this error: wine client error:0: version mismatch 380/381. Your wineserver binary was not upgraded correctly, or you have an older one somewhere in your PATH. Or maybe the wrong w

  • Safari 5.0 - Disable local file restrictions Option not found under Develop Menu

    Hi All, My system specs are as follows : Platform : Linux OS : lubuntu OS Version : 13.10 Saucy Salamander Browser : Safari 5.0 I need to open a html file in Safari before which I need to enable this option - "Disable local file restrictions" under D

  • Oracle User Not Excess

    i have oracle 10g on linux...today for some prob. my linux server is hangup... then after restrt it... all my oracle user (Which i have Created) was block..i can not loginto my created user using sql plus... where as sys and system user are open...WH

  • How can I undelete, recover, or restore my web/browser history? HELP PLEASE PLEASE

    I accidentally deleted my history and I did not write down the urls i visited and I need those sites for school. please please.