IDES SCM 7.0

Friends,
If SCM 7.0 IDES is available for installation.
please tell me how to get this.
Any one of you using this?
sree

Sree,
Yes, SCM 7.0 IDES is available. 
https://websmp103.sap-ag.de/~sapidb/011000358700000699742010E/IDES_SCM70.htm
Customers and partners can obtain the appropriate the DVDs at http://service.sap.com/swcat
Also the product can be downloaded at http://service.sap.com/swdc
Best Regards,
DB49

Similar Messages

  • IDES SCM - ERP hardware requirements

    Hi everybody,
    I want to install a IDES version of ERP+SCM solutions in a laptop.
    the requeriments for this are described in notes: Note 1243319 - IDES SCM 5.1- Note 1244548 - IDES ERP 6.0 ECC 6.0 SR3.
    Anyone have experience with this installations?
    What are the hardware requirements? no minimum requeriments, i want to know optimum reqs.
    Thanks in advance-.
    RZ

    hi zain,
      you can get these docs in
      http://service.sap.com/installation
    Regards
    Alfred

  • SAP SCM 2007 liveCache 7.7.0 Windows Server on x64 64bit  ERROR

    Hi All,
    OS : windows 2003 server 64 bit,
    DB : Oracle 10g
    APP : IDES SCM 2007
    Our Requirment is need to Install SCM 2007 with LiveCache, APO.
    to Install SCM 2007.. We must need to have 2 DATABASES and 2 SID
    1. One Oracle or SQL Database for SCM    (one SID)
    2. 2nd for ONly MaxDB Database for LiveCache         (Another SID)
    Can you please advice me.... here are the steps I done as of now.
    oracle 10g Installation completed.
    SCM IDES 2007 Installation Complted.
       (At the time SCM Installtion its prompt me for SID's for 2 times..
       I given Both SID Same (One for [SID-SCM]) and (Another for Live Cache[SID-SCM]) Then the Installation is successfully completed. but now when I run LC 10 is not working...
    Name and Server : IE6 - XXXXXX
    DBMRFC Funcation : DBM_CONNECT
    ERROR : DBM ERROR
    Return Code : -4
    Error Message : database instance not found.
    to over come from this issues do we need to Installl LIVECACHE SERVER SERVER ?
    1. if we need to install livecache server.. I need to go for only for MAXDB.
    2. In the MAXDB Instance I have to give the Instance name same as Live cache server SID ?
    3. IF we need to Install livechache server, do we need to use SID same as SCM or different one?
    4. SCM IDES and Live Cache is running one the same machine.
    5. After this LiveCache server.. we need to Install livecache client also install... if the SCM IDES and Livecache running on same BOX and SAME OS.
    can you help me on this.

    Hello,
    -> As SAP customer you have the option to create the OSS ticket to the component BC-DB-LVC to get SAP support.
    ->
    "1. if we need to install livecache server.. I need to go for only for MAXDB."
    You need to install the liveCache server of the 7.7 version, as you are installing SCM 2007 with LiveCache, APO.
    Please follow the liveCache server installation guide.
    "2. In the MAXDB Instance I have to give the Instance name same as Live cache server SID ?"
    How many MAXDB/liveCache database instances are you planning to install on the liveCache server?
    "3. IF we need to Install livechache server, do we need to use SID same as SCM or different one?"
    The liveCache SID for the SCM system need to be unique on the liveCache server, you have only one database instance MAXDB/liveCache with this name, also you checked the restrictions for the names at
    http://maxdb.sap.com/doc/7_7/default.htm -> Glossary ->Database Name -> Conventions for Database Names
    "4. SCM IDES and Live Cache is running one the same machine."
    You could run SCM IDES and Live Cache on the same machine.
    "5. After this LiveCache server.. we need to Install livecache client also install... if the SCM IDES and Livecache running on same BOX and SAME OS."
    If the liveCache instance and application server are running on the same machine, you don't need to install the liveCache client software.
    Please review the SAP notes::
    822239     FAQ: MaxDB Interfaces
    822271     FAQ: SAP MaxDB client software
    -> Please update with output of the following commands:
         dbmcli -s inst_enum
         dbmcli -s db_enum
         sdbregview -l
         xinstinfo IE6
    -> For SAP liveCache documentation see the SAP note 767598.
         The documentation available at www.sdn.sap.com/irj/sdn/livecache
    Thank you and best regards, Natalia Khlopina

  • Developing SCM Plugin for JDev9i... Deadlock

    Hi!
    I'm currentlly developing a SCM plugin for JDev9i with the option to use MS Visual Source Safe. I've experienced problems with hanging for a while. I'm using the oracle.ide.scm packages bundled with JDev, and I think I've found where the hangup is caused.
    There's a class called oracle.ide.scm.util.SCMProcess which is a process wrapper around another class called oracle.ide.scm.util.SCMShellRunner. The process will recieve output text from standard out and standard error. These outputs must be caught and displayed as they are given to the system. If they are not displayed, JDev will go into deadlock it seams.
    These classes have their equals respectivelly in java.lang.Process and java.lang.Runtime. I've used these classes to run a command from disk and they work if you properlly handle the output. The problem with this way of doing things is that these classes does not report back to the scm systems and can cause unexpected results from the other interfaces and classes in the oracle.ide.scm...
    Does anybody have any experience in coding plugins of this kind? Have you experienced the same problem and have you found a way around it?
    This does not work as it should:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    while(!p.isFinished()) {
    System.err.println(p.getErrorText());
    System.out.println(p.getOutputText());

    Hi.
    The SCMShellRunner and SCMProcess classes are utilities which you
    may find useful in implementing your SCM support; you can still
    use java.lang.Runtime and java.lang.Process if you prefer.
    However, we strongly recommend that you use SCMShellRunner because:
    - On windows systems, the external process is launched in the
    context of a shell.
    - The output and error streams of the external process are
    monitored separate threads to prevent blocking issues because of
    buffer overruns.
    - A native workaround is used to prevent console windows popping
    up every time external processes are launched under Windows.
    Not sure what could be causing the deadlock, but I did notice in
    your code snippet that you are attempting to print output from the
    process before it is finished.
    The 'error text' and 'output text' will become available only
    when the process has successfully terminated, so I guess you're
    seeing an awful lot of "null" in your debug window.
    Also, I would suggest using SCMProcess.waitFor() to block until
    the process has completed; it will not be so greedy with CPU.
    Try something like the following:
    SCMShellRunner rt = SCMShellRunner.getInstance();
    SCMProcess p = rt.run(cmd, envArr);
    p.waitFor();
    if (p.getExitCode().intValue() != 0)
    // throw SCM exception.
    System.err.println(p.getErrorText()); // should be non-null
    System.out.println(p.getOutputText()); // should be non-null
    Thanks,
    Paul. JDev SCM

  • SCM Connection

    Hello Guru's
    One of my client asked me a question can we connect a Non-IDES R/3 system to IDES SCM system.
    and How many r/3 system can we connect to one SCM system.
    I know it was a bit Different question, but I just want to know the answer.
    Thanks
    Satya

    Hi satya,
    1) Non-sap systems can be integrated with SCM systems
    2) One or more sap system can be integrated with an SCM system but the reverse way I am not sure.
    Regards
    R. Senthil mareeswaran.

  • Help! Exception met in writing VSS extention with SCM APIs!

    I now write a very simple VSS extention(extends SCMSimpleClient directly), it's OK to add and checkout, but as soon as the checkin operation is triggered, an exception will be thrown.
    The exception stack trace is as follow:
    java.lang.NullPointerException
    void oracle.ide.scm.util.SCMSimpleClient$SimpleCheckinOperation.executeImpl(java.util.Iterator, oracle.ide.scm.SCMOptions)
    SCMSimpleClient.java:957
    void oracle.ide.scm.util.SCMSimpleClient$SimpleMultiFileOperation.execute(java.util.Iterator, oracle.ide.scm.SCMOptions)
    SCMSimpleClient.java:848
    void oracle.ideimpl.scm.impl.Committer.commit(java.util.Iterator, oracle.ide.scm.share.listdialog.Options)
    Committer.java:63
    void oracle.ide.scm.share.listdialog.ListDialog.commitImpl(oracle.ide.controls.progress.ProgressWatcher)
    ListDialog.java:589
    void oracle.ide.scm.share.listdialog.ListDialog.access$1000771(oracle.ide.scm.share.listdialog.ListDialog, oracle.ide.controls.progress.ProgressWatcher)
    ListDialog.java:79
    void oracle.ide.scm.share.listdialog.ListDialog$CommitRunnable.run()
    ListDialog.java:693
    void java.lang.Thread.run()
    Thread.java:484
    It seems that oracle.ide.scm.SCMOptions scmOptions is null, what and how should I do to prevent that?
    Thanks a million!

    Hi, Brian, I have read many of your logs these days, I know you are very busy, it's so nice that you can reply me such trival questions. Thanks.
    Yes, I have overrided that method, as follow:
    protected boolean getUseCommentsSpi() {       
    return true;
    I try to add a Option panel for VSS, by doing like this:
    public class VSSOptionCustomizer extends SCMOptionsCustomizerAdapter {
    public Component getComponent(){
    JPanel panel = new JPanel("test");
    m_checkbox = new JCheckBox("test");
    m_checkbox.setSelected(true);
    panel.add( m_checkbox );
    return panel;
    but the check box didnot display on the panel. Does anything more need to be done? I fail to find any related document.
    Thank you so much for your kind help and great patience!

  • Assigning of logical systems

    Hi Friends,
    Here we have IDES ECC DIMP 6.00, IDES NW BI,  and IDES SCM 5.0.
    My requirement is, need to connect IDES NW BI,  and IDES SCM 5.0. to IDES ECC DIMP 6.00.
    In IDES ECC DIMP 6.00 I have connected APO logical system. In clients setup we can assign only one
    logiacl ssytem.  Now how to connect the IDES NW BI logical sytem.
    If I am worng correct me and please participate in resolving this issue.
    Thanks in advance.
    Regards,
    Kumar

    I hope you have resolved this query at your end

  • Exception when opening migrating From Jdev9.02 to 9.03

    I am getting the following exception when migrating my project from Jdeveloper 9.02 to 9.031 version.
    Below is the Exception Stack trace
    java.lang.NullPointerException
         void oracle.ideimpl.scm.impl.BufferWatcher.handleWatchEvent()
              BufferWatcher.java:135
         java.util.List oracle.ideimpl.scm.env.OperationRuntimeImpl.performImpl(oracle.ide.scm.SCMOperation, java.util.List, boolean)
              OperationRuntimeImpl.java:207
         void oracle.ideimpl.scm.impl.ActionController.handleEventImpl(oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
              ActionController.java:604
         void oracle.ideimpl.scm.impl.ActionController.access$2000071(oracle.ideimpl.scm.impl.ActionController, oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
              ActionController.java:68
         void oracle.ideimpl.scm.impl.ActionController$1.run()
              ActionController.java:181
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.run()
              OperationThread.java:212
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.access$2000071(oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable)
              OperationThread.java:184
         void oracle.ideimpl.scm.impl.OperationThread.run()
              OperationThread.java:157

    Hi,
    How did you upgrade JDeveloper? You should install new releases of JDeveloper into a new, empty directory, not over the top of any existing installation. I'm not sure if this is the cause of your problem, but we've seen many other issues in the past due to this.
    Thanks,
    Brian
    JDev Team

  • Strange Error when checking a project into repository!

    Hello,
    I have a project that I checked out of repository, and when I try to check it back in I get an error that I have never seen before. It happened when it is going through the files to list for a check in. I get an error msg box that says, " An unexpected error has occurred. Click details for information that may be useful when diagnosing the problem"
    At that pint if I hit cancel it will keep popping up and I have to kill jdev in my task manager. Here are the details in of the error msg:
    Please help =-)
    Brette
    java.lang.NullPointerException
         boolean oracle.jbo.dt.jdevx.deploy.JbdProfileNode.load()
         java.util.Iterator oracle.jbo.dt.jdevx.deploy.JbdProfileNode.getChildren()
         void oracle.ideimpl.scm.impl.ActionController.addSelection(oracle.ide.model.Element, java.util.List, boolean)
         void oracle.ideimpl.scm.impl.ActionController.addSelection(oracle.ide.model.Element, java.util.List, boolean)
         java.util.List oracle.ideimpl.scm.impl.ActionController.buildSelection(oracle.ide.model.Element[], boolean)
         void oracle.ideimpl.scm.impl.ActionController.handleEventImpl(oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
         void oracle.ideimpl.scm.impl.ActionController.access$2000071(oracle.ideimpl.scm.impl.ActionController, oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
         void oracle.ideimpl.scm.impl.ActionController$1.run()
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.run()
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.access$2000071(oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable)
         void oracle.ideimpl.scm.impl.OperationThread.run()

    Hi Brette-
    There appears to be some sort of problem with the deployment profile in your project. If you select the deployment profile and
    right click on it to get the context menu, can you edit the settings on it? Can you use it to deploy? If the deployment profie has been
    corrupted, one possibility would be that you might try is to delete the deployment profile and recreate it and see if you can check
    that file in ok.
    Ray

  • JDev9.0.3.1038: Two problems...

    Hi.
    I resentlly upgraded JDev9.0.3 preview with JDev9.0.3 Production Release. Well, this is not quite true. I resentlly installed Oracle Developer Suite 9.0.2, replaced JDev9.0.2 with JDev9.0.3Preview and replaced again with JDev9.0.3 Production Release. Right off I discovered two problems:
    Firstly (Minor problem): Deployment of projects to simple jars. The deployer does it's job nicelly, but gets this exception:
    java.io.IOException: invalid header field
    void java.util.jar.Attributes.read(java.util.jar.Manifest$FastInputStream, byte[])
    Attributes.java:354
    void java.util.jar.Manifest.read(java.io.InputStream)
    Manifest.java:161
    void oracle.jdevimpl.deploy.JarUtil.mergeManifest(java.net.URL)
    JarUtil.java:282
    void oracle.jdeveloper.deploy.jar.ArchiveOptions.applyOptionsTo(oracle.jdevimpl.deploy.JarUtil)
    ArchiveOptions.java:146
    oracle.jdevimpl.deploy.JarUtil oracle.jdevimpl.deploy.ProfileDeployer.createJarUtil(oracle.jdevimpl.deploy.DeployShell, oracle.jdeveloper.deploy.jar.JarPackaging)
    ProfileDeployer.java:227
    void oracle.jdevimpl.deploy.jar.ArchivePreviewer.deploy(oracle.jdevimpl.deploy.DeployShell)
    ArchivePreviewer.java:50
    oracle.jdevimpl.deploy.ArchivePreviewPacket oracle.jdevimpl.deploy.jar.ArchivePreviewer.getPreviewPacket(oracle.jdevimpl.deploy.DeployShell)
    ArchivePreviewer.java:142
    oracle.jdevimpl.deploy.JarUtil oracle.jdevimpl.deploy.jar.ArchiveDeployer.getJarUtil(oracle.jdevimpl.deploy.DeployShell)
    ArchiveDeployer.java:88
    void oracle.jdevimpl.deploy.jar.ArchiveDeployer.deploy(oracle.jdevimpl.deploy.DeployShell)
    ArchiveDeployer.java:48
    void oracle.jdevimpl.deploy.ModulePackager.deploy(oracle.jdevimpl.deploy.DeployShell)
    ModulePackager.java:144
    void oracle.jdevimpl.deploy.DynamicDeployer.deploy(oracle.jdevimpl.deploy.DeployShell)
    DynamicDeployer.java:53
    void oracle.jdevimpl.deploy.DynamicDeployer.deploy(oracle.jdevimpl.deploy.DeployShell)
    DynamicDeployer.java:53
    void oracle.jdevimpl.deploy.J2eeProfileDt$CleanupTransientProfilesDeployer.deploy(oracle.jdevimpl.deploy.DeployShell)
    J2eeProfileDt.java:122
    void oracle.jdevimpl.deploy.FinalDeployer.deploy(oracle.jdevimpl.deploy.DeployShell)
    FinalDeployer.java:44
    void oracle.jdevimpl.deploy.AsyncDeployer$1.runImpl()
    AsyncDeployer.java:63
    void oracle.jdevimpl.deploy.AsyncDeployer$1.run()
    AsyncDeployer.java:49
    Second: My SCM Client jar (which worked somewhat nicelly +/-) will no longer run. It's a self developet scm client using your oracle.ide.scm API. And it's not just the client which will not run, JDev as a whole freezes during initialization. The red progress bar goes all the way up to the second to last dot, and then takes a vacation. The thread dump from JDevs console looks like this:
    Full thread dump OJVM Client VM (9.0.3.738 o):
    "AWT-EventQueue-0" prio: 6 state: waiting
    void oracle.jbo.dt.ui.wizards.wiztemplate.dt.WizardDefNodeRecognizer.registerWithEditor()
    WizardDefNodeRecognizer.java:68
    void oracle.jbo.dt.ui.wizards.wiztemplate.dt.WizardDefNodeRecognizer.register()
    WizardDefNodeRecognizer.java:60
    void oracle.jbo.dt.ui.wizards.wiztemplate.dt.WizardDefNodeInitializer.run()
    WizardDefNodeRecognizer.java:133
    void java.awt.event.InvocationEvent.dispatch()
    InvocationEvent.java:154
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    EventQueue.java:337
    boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
    EventDispatchThread.java:131
    void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
    EventDispatchThread.java:98
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    EventDispatchThread.java:93
    void java.awt.EventDispatchThread.run()
    EventDispatchThread.java:85
    "AWT-Windows" prio: 6 state: runnable
    void sun.awt.windows.WToolkit.eventLoop()
    native code
    void sun.awt.windows.WToolkit.run()
    WToolkit.java:188
    void java.lang.Thread.run()
    Thread.java:484
    "Screen Updater" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    sun.awt.ScreenUpdaterEntry sun.awt.ScreenUpdater.nextEntry()
    ScreenUpdater.java:76
    void sun.awt.ScreenUpdater.run()
    ScreenUpdater.java:95
    "Thread-1" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.util.TimerThread.mainLoop()
    Timer.java:406
    void java.util.TimerThread.run()
    Timer.java:385
    "Thread-7" prio: 5 state: waiting
    void java.lang.Thread.sleep(long)
    native code
    void oracle.ide.util.MonitorThread$1.run()
    MonitorThread.java:118
    "Version Operation Thread" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void oracle.ideimpl.scm.impl.OperationThread.run()
    OperationThread.java:171
    "SunToolkit.PostEventQueue-0" prio: 6 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void sun.awt.PostEventQueue.run()
    SunToolkit.java:491
    "Finalizer" prio: 8 state: waiting
    void java.lang.Object.wait(long)
    native code
    java.lang.ref.Reference java.lang.ref.ReferenceQueue.remove(long)
    ReferenceQueue.java:108
    java.lang.ref.Reference java.lang.ref.ReferenceQueue.remove()
    ReferenceQueue.java:123
    void java.lang.ref.Finalizer$FinalizerThread.run()
    Finalizer.java:162
    "main" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.awt.EventQueue.invokeAndWait(java.lang.Runnable)
    EventQueue.java:547
    void javax.swing.SwingUtilities.invokeAndWait(java.lang.Runnable)
    SwingUtilities.java:1146
    void oracle.ide.log.AbstractLogPage._addPage(oracle.ide.log.AbstractLogPage)
    AbstractLogPage.java:241
    void oracle.ide.log.AbstractLogPage.<init>(oracle.ide.layout.ViewId, javax.swing.Icon, boolean)
    AbstractLogPage.java:64
    void oracle.ide.log.MessagePage.<init>(oracle.ide.layout.ViewId, javax.swing.Icon, boolean)
    MessagePage.java:121
    void oracle.ide.log.MessagePage.<init>(oracle.ide.layout.ViewId, javax.swing.Icon)
    MessagePage.java:102
    void oracle.ide.log.MessagePage.<init>(oracle.ide.layout.ViewId)
    MessagePage.java:93
    void oracle.ide.log.MessagePage.<init>()
    MessagePage.java:85
    void novus.scm.vss.util.VSSSystem$1.<init>()
    VSSSystem.java:27
    void novus.scm.vss.util.VSSSystem.<clinit>()
    VSSSystem.java:23
    novus.scm.vss.VSSProperties novus.scm.vss.util.VSSRunner._$7760()
    VSSRunner.java:74
    void novus.scm.vss.util.VSSRunner.<init>()
    VSSRunner.java:34
    void novus.scm.vss.util.VSSManager.<init>()
    VSSManager.java:99
    void novus.scm.vss.VSSMultiFileOperation.<clinit>()
    VSSMultiFileOperation.java:43
    void novus.scm.vss.VSSClient.initialize()
    VSSClient.java:70
    boolean oracle.ide.AddinManager.initializeAddin(oracle.ide.AddinManager$AddinDep, boolean)
    AddinManager.java:1064
    void oracle.ide.AddinManager.initializeAddins(java.lang.String, boolean)
    AddinManager.java:974
    void oracle.ide.AddinManager.initProductAndUserAddins()
    AddinManager.java:490
    void oracle.ide.Ide.initProductAndUserAddins()
    Ide.java:1014
    void oracle.ide.Ide.startupImpl(oracle.ide.IdeArgs)
    Ide.java:1657
    void oracle.ide.Ide.startup(oracle.ide.IdeArgs)
    Ide.java:1349
    void oracle.ideimpl.IdeMain.main(java.lang.String[])
    IdeMain.java:36
    "Reference Handler" prio: 10 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.lang.ref.Reference$ReferenceHandler.run()
    Reference.java:110
    "Signal Dispatcher" prio: 5 state: idle
    Am I doing something wrong?
    Please reply to : mailto:[email protected]

    Hi,
    For the first problem: can you post the manifest file you're including in your JAR file? It looks like something isn't groking it properly.I have two manifest files inside the jar since you switched from a properties file type in 9.0.2 to an xml style manifest file in 9.0.3. I've included them both below:
    AddinCount: 1
    Addin0: novus.scm.vss.VSSClient
    and
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <extensions>
    <feature>
    <group name="Visual SourceSafe">
    <extension>
    <addin>novus.scm.vss.VSSClient</addin>
    <dependency_addin>oracle.ideimpl.scm.VersionManager</dependency_addin>
    </extension>
    </group>
    </feature>
    </extensions>
    For the second problem: there's no obvious reason in the WizardDefNodeRecognizer.java code why it's waiting on the AWT event thread as indicated in the stack dump you provided: this is kind of weird. If you disable BC4J (via the tools->preferences->extension manager), does the problem go away, or does it freeze at another point during startup? I'm not sure how else to investigate this without the .jar file to test.This actually solves the problem. The plugin loads and runs like a charm.
    Another suggestion, which might work around the problem at least, is to defer initializing your SCM client's log page to the prepareClient() method. In fact, we (the SCM team) recommend doing this anyway (this is what we do in CVS, Clearcase and Oracle SCM), since this will prevent your client doing unnecessary initialization until the user actually activates your SCM system.I will try this. You should add this information into the javadoc, so that other developers can follow the standard you've set.
    Thanks,
    Brian Duff ([email protected])
    JDev Team (SCM) Thanx

  • Serious merge error

    I am doing this from within Jdeveloper 9034 with a 9i SCM version 4.0.12.91.9. Strict locking is not enabled. A file is checked out by user A. User B checks the same one out, modifies it, and checks it in. When user A checks this file in, he is prompted to perform a merge. He selects Manual Merge, then Save. An error comes back:
    Failed to download from the Oracle9i SCM repository.
    Stack trace 1:oracle.jdevimpl.scm.oraclescm.RSCException: Failed to download from the Oracle9i SCM repository
         java.util.Vector oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, int)
              RSCFileService.java:592
         oracle.repos.services.RID oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, boolean, boolean)
              RSCFileService.java:662
         void oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(java.lang.String)
              RSCFileService.java:684
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.mergeOnCheckIn(java.lang.String)
              RSCReposClientAPI.java:1427
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.checkInFiles(java.util.Iterator, oracle.ide.scm.SCMOptions)
              RSCReposClientAPI.java:1538
         void oracle.jdevimpl.scm.oraclescm.op.CheckInOp.execute(java.util.Iterator, oracle.ide.scm.SCMOptions)
              CheckInOp.java:121
         void oracle.ideimpl.scm.impl.Committer.commit(java.util.Iterator, oracle.ide.scm.share.listdialog.Options)
              Committer.java:66
         void oracle.ide.scm.share.listdialog.ListDialog.commitImpl(oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:592
         void oracle.ide.scm.share.listdialog.ListDialog.access$1000771(oracle.ide.scm.share.listdialog.ListDialog, oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:79
         void oracle.ide.scm.share.listdialog.ListDialog$CommitRunnable.run()
              ListDialog.java:696
         void java.lang.Thread.run()
              Thread.java:484Stack Trace 2:oracle.repos.services.file.FileServiceException
         void oracle.repos.services.file.ReposFileInputStream.<init>(java.sql.Connection, oracle.repos.services.RBlob, long, long, long, java.sql.Timestamp, java.lang.String)
              ReposFileInputStream.java:196
         void oracle.repos.services.file.FileServiceImpl.downloadFile(oracle.repos.services.file.FileServiceNfo, java.io.File)
              FileServiceImpl.java:2032
         void oracle.repos.services.file.FileServiceImpl.syncBothChanged(oracle.repos.services.file.FileServiceNfo, java.io.File, oracle.repos.services.file.rvi.RviChildEntry)
              FileServiceImpl.java:1123
         boolean oracle.repos.services.file.FileServiceImpl.smartSync(oracle.repos.services.file.FileServiceNfo, java.io.File, oracle.repos.services.file.rvi.RviChildEntry)
              FileServiceImpl.java:1109
         boolean oracle.repos.services.file.FileServiceImpl.syncFiles(java.lang.String[], java.util.Hashtable, oracle.repos.services.file.rvi.RviFile, oracle.repos.services.file.FileServiceNfo)
              FileServiceImpl.java:795
         void oracle.repos.services.file.FileServiceImpl.synchronize(oracle.repos.services.file.FileServiceNfo, java.util.Hashtable, java.lang.String[])
              FileServiceImpl.java:338
         java.util.Vector oracle.repos.services.file.FileService.synchronize(java.lang.String, oracle.repos.services.GID, oracle.repos.services.GID, int)
              FileService.java:1216
         java.util.Vector oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, int)
              RSCFileService.java:586
         oracle.repos.services.RID oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, boolean, boolean)
              RSCFileService.java:662
         void oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(java.lang.String)
              RSCFileService.java:684
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.mergeOnCheckIn(java.lang.String)
              RSCReposClientAPI.java:1427
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.checkInFiles(java.util.Iterator, oracle.ide.scm.SCMOptions)
              RSCReposClientAPI.java:1538
         void oracle.jdevimpl.scm.oraclescm.op.CheckInOp.execute(java.util.Iterator, oracle.ide.scm.SCMOptions)
              CheckInOp.java:121
         void oracle.ideimpl.scm.impl.Committer.commit(java.util.Iterator, oracle.ide.scm.share.listdialog.Options)
              Committer.java:66
         void oracle.ide.scm.share.listdialog.ListDialog.commitImpl(oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:592
         void oracle.ide.scm.share.listdialog.ListDialog.access$1000771(oracle.ide.scm.share.listdialog.ListDialog, oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:79
         void oracle.ide.scm.share.listdialog.ListDialog$CommitRunnable.run()Stack Trace 2:oracle.repos.services.file.FileServiceException
         void oracle.repos.services.file.ReposFileInputStream.<init>(java.sql.Connection, oracle.repos.services.RBlob, long, long, long, java.sql.Timestamp, java.lang.String)
              ReposFileInputStream.java:196
         void oracle.repos.services.file.FileServiceImpl.downloadFile(oracle.repos.services.file.FileServiceNfo, java.io.File)
              FileServiceImpl.java:2032
         void oracle.repos.services.file.FileServiceImpl.syncBothChanged(oracle.repos.services.file.FileServiceNfo, java.io.File, oracle.repos.services.file.rvi.RviChildEntry)
              FileServiceImpl.java:1123
         boolean oracle.repos.services.file.FileServiceImpl.smartSync(oracle.repos.services.file.FileServiceNfo, java.io.File, oracle.repos.services.file.rvi.RviChildEntry)
              FileServiceImpl.java:1109
         boolean oracle.repos.services.file.FileServiceImpl.syncFiles(java.lang.String[], java.util.Hashtable, oracle.repos.services.file.rvi.RviFile, oracle.repos.services.file.FileServiceNfo)
              FileServiceImpl.java:795
         void oracle.repos.services.file.FileServiceImpl.synchronize(oracle.repos.services.file.FileServiceNfo, java.util.Hashtable, java.lang.String[])
              FileServiceImpl.java:338
         java.util.Vector oracle.repos.services.file.FileService.synchronize(java.lang.String, oracle.repos.services.GID, oracle.repos.services.GID, int)
              FileService.java:1216
         java.util.Vector oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, int)
              RSCFileService.java:586
         oracle.repos.services.RID oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(oracle.repos.services.GID, boolean, boolean)
              RSCFileService.java:662
         void oracle.jdevimpl.scm.oraclescm.api.RSCFileService.downloadFile(java.lang.String)
              RSCFileService.java:684
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.mergeOnCheckIn(java.lang.String)
              RSCReposClientAPI.java:1427
         void oracle.jdevimpl.scm.oraclescm.api.RSCReposClientAPI.checkInFiles(java.util.Iterator, oracle.ide.scm.SCMOptions)
              RSCReposClientAPI.java:1538
         void oracle.jdevimpl.scm.oraclescm.op.CheckInOp.execute(java.util.Iterator, oracle.ide.scm.SCMOptions)
              CheckInOp.java:121
         void oracle.ideimpl.scm.impl.Committer.commit(java.util.Iterator, oracle.ide.scm.share.listdialog.Options)
              Committer.java:66
         void oracle.ide.scm.share.listdialog.ListDialog.commitImpl(oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:592
         void oracle.ide.scm.share.listdialog.ListDialog.access$1000771(oracle.ide.scm.share.listdialog.ListDialog, oracle.ide.controls.progress.ProgressWatcher)
              ListDialog.java:79
         void oracle.ide.scm.share.listdialog.ListDialog$CommitRunnable.run()
              ListDialog.java:696
         void java.lang.Thread.run()
              Thread.java:484The most disturbing factor is that User A loses all changes to this file! A bug? Is there anything I can look for in fixing this problem?

    As well as the questions in the link Jeff posted, exactly what is inside your MOV files, and which version of Quicktime do you have installed?
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    For Mac http://mediainspector.massanti.com/

  • Clearcase fails on struts-config.xml

    Clearcase LT 5.0 worked for this file in jdev 9.0.3 for a few days. Now it failed in jdev every time I do source control operations from source control option. I tryed all kinds of things and could not fix it including a new clearcase view and new jdev workspace. Every time it shows an error in error dialog as following:
    java.lang.NullPointerException
         boolean oracle.jdevimpl.jotimpl.JotWorkAreaImpl.isValidPossibleClass(java.lang.String)
              JotWorkAreaImpl.java:232
         oracle.jdeveloper.jot.JotClass oracle.jdevimpl.jotimpl.JotWorkAreaImpl.getClass(java.lang.String, int)
              JotWorkAreaImpl.java:125
         oracle.jdeveloper.jot.JotClass oracle.jdevimpl.jotimpl.JotManagerImpl.getClass(java.lang.String, int)
              JotManagerImpl.java:77
         java.net.URL oracle.jdevimpl.web.struts.ActionNode.getURL()
              ActionNode.java:248
         boolean oracle.ideimpl.scm.impl.ElementUtils.isOperable(oracle.ide.model.Element)
              ElementUtils.java:157
         void oracle.ideimpl.scm.impl.ActionController.addSelection(oracle.ide.model.Element, java.util.List, boolean)
              ActionController.java:463
         void oracle.ideimpl.scm.impl.ActionController.addSelection(oracle.ide.model.Element, java.util.List, boolean)
              ActionController.java:481
         java.util.List oracle.ideimpl.scm.impl.ActionController.buildSelection(oracle.ide.model.Element[], boolean)
              ActionController.java:442
         void oracle.ideimpl.scm.impl.ActionController.handleEventImpl(oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
              ActionController.java:592
         void oracle.ideimpl.scm.impl.ActionController.access$2000071(oracle.ideimpl.scm.impl.ActionController, oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
              ActionController.java:68
         void oracle.ideimpl.scm.impl.ActionController$1.run()
              ActionController.java:181
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.run()
              OperationThread.java:212
         void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.access$2000071(oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable)
              OperationThread.java:184
         void oracle.ideimpl.scm.impl.OperationThread.run()
              OperationThread.java:157
    Please help.

    "Struts diagram support has to be enabled or disabled at the extension level, this means that when JDeveloper is running with the support disabled, all Struts configurations in the IDE will be shown without diagrams."
    Please refer to
    http://www.oracle.com/technology/products/jdev/tips/mills/struts_diagram.html

  • Planning object structure ATP_ALL: "Error occured during activation"

    Hi,
    I'm working with pl object structure ATP_ALL in the IDES (SCM 5.0) system. Problem is I get an error saying "Error occured during activation" when I try to activate it.
    Reason I was trying to activate it is because I first deactivated it. The reason for that was that it did not work for product allocations in GATP. But somehow it cannot be activated again...
    I have checked all objects in the pl object structure using tr code RSD1; they are all active. I have also program  /sapapo/ts_d_objects_copy to make sure that all objects are activated. Trying again I still get the same error.
    Any ideas?
    Best regards,
    Ozgur

    atoub24 wrote:
    Does anybody else get this? My facetime worked perfectly fine before and all of a sudden I started to get this message. Ive tried logging in from a different facetime account and it tells me the same thing. It won't let me make a new account, it just takes me to a white screen. Any suggestions. Thanks and Happy Holidays.
    Welcome to Discussions, atoub24
    FaceTime need be activated only once. You should not need to change the account info once FaceTime is working.
    Restarting your iPod may eliminate the error message: http://support.apple.com/kb/HT1430
    If not, see http://www.apple.com/support/ipodtouch/facetime/
    If nothing resolves the problem, take the iPod back to your retailer for service or replacement.
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.5); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.5)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • SCMStreamMonitor is buggy...

    Hi.
    I'm trying to catch a specific type of error from MS Visual Source Safe.
    When running the ss.exe file with certain commands, an input prompt may appear asking for user input.
    The JDev 9.0.3 SCM API provides SCMStreamMonitor and SCMPatternStreamMonitor that's supposedlly should catch this event and process some action accordinglly. This does not happen.
    Up til now I would have to run the option -I- (Ignore Input) which cancels all operations if any user input is prompted for.
    I've added an errorMonitor to the SCMShellRunner which specifies if any messages sent to standard error contains the pattern "(Y/N)", the monitor should present a dialog to the user with the two options as buttons, so that the user can select the appropriate option himself.
    But it seams the monitor is unable to catch the pattern in time and the SCM system goes into a lock. The only way to exit the action is by hardcoding a time out (which would have consequences for large operations through the system), or opening the task-manager and closing all processes connected to the running ss.exe.
    Is the monitor from your API too late, or am I going about this the wrong way? Here's what I do:
    public class VSSRunner {
    private SCMShellRunner runner = new SCMShellRunner();
    public void run(String cmd) throws SCMException {
    this.runner.addErrorMonitor(new VSSActionPrompt() );
    this.runner.setCommand(cmd);
    this.runner.setUseNativeShell(true);
    this.runner.setOutputBuffered(true);
    this.runner.setDirectory(this.getDirectory());
    SCMProcess process = this.runner.exec();
    process.waitFor();
    if (process.getExitCode().intValue() != 0) {
    process.destroy();
    process = null;
    throw new SCMFileSystemException(process.getErrorText());
    process.destroy();
    process = null;
    this.runner.clearMonitors();
    public class VSSActionPrompt extends SCMPatternStreamMonitor {
    public VSSActionPrompt() {
    super( "(Y/N)" );
    protected void patternMatched( SCMProcess process ) throws SCMStreamMonitorException {
    final JFrame frame = new JFrame("Error: ");
    Object[] options = {"Yes", "No"};
    int value = JOptionPane.showOptionDialog(frame, process.getErrorText(), "Error", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options[1]);
    if (value == JOptionPane.YES_OPTION) {
    response = "Y";
    } else if (value == JOptionPane.NO_OPTION) {
    response = "N";
    } else if (value == JOptionPane.CLOSED_OPTION) {
    response = "N";
    process.sendInputData( response );

    Hi Xystein.
    Your implementation looks pretty good to me. Here are a few
    things to try, though they are fairly obvious:
    1) Check that your pattern "(Y/N)" occurs in output. I guess
    you've done this already.Yes I have.
    2) Check that the prompt is indeed written to standard error
    and not standard out.This is of course checked out too.
    3) Queue your Swing-related code in patternMatched() on the
    event dispatch thread using SwingUtilities.I've tried an invokelater routine, but it seems to have no effect.
    If none of the above works, can you provide us with a thread
    dump from when the system locks up (Ctrl-Break)?
    Thanks,
    Paul.
    JDeveloper Team (SCM) What has happened up til now:
    1) I've asked the addin to undo checkout of a file that has been modified since checkout.
    2) The SCMDialogSpecification object has appeared and options has been committed.
    3) The command has been run through ss.exe and the process freezes on SCMProcess.waitfor()
    - in the background ss.exe does give output to standard error containing the pattern in question "(Y/N)".
    4) The progress watcher has appeared even though this is an operation on a single file.
    - The addin freezes here, but user is allowed one more action, to press cancel.
    5) Cancel has been pressed and the system seems to rollback, but nothing happens.
    - On the taskmanagers process list, ss.exe appears as a running process.
    6) The addin freezes and responds to nothing until I end the ss.exe process from the taskmanager.
    This thread dump is from before I close the ss.exe process:
    Full thread dump OJVM Client VM (9.0.3.713 o):
    "AWT-EventQueue-0" prio: 6 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    java.awt.AWTEvent java.awt.EventQueue.getNextEvent()
    EventQueue.java:260
    boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
    EventDispatchThread.java:106
    void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
    EventDispatchThread.java:98
    void java.awt.Dialog.show()
    Dialog.java:380
    void java.awt.Component.show(boolean)
    Component.java:946
    void java.awt.Component.setVisible(boolean)
    Component.java:903
    void oracle.ide.controls.progress.AbstractProgressDialog.showDialog(java.awt.Component, java.lang.String, java.lang.Object)
    AbstractProgressDialog.java:478
    void oracle.ide.controls.progress.AbstractProgressDialog.showDialog(java.awt.Component, java.lang.String)
    AbstractProgressDialog.java:249
    boolean oracle.ide.scm.share.listdialog.ListDialog.commit()
    ListDialog.java:485
    boolean oracle.ide.scm.share.listdialog.ListDialog.access$1000671(oracle.ide.scm.share.listdialog.ListDialog)
    ListDialog.java:79
    void oracle.ide.scm.share.listdialog.ListDialog$CommitListener.vetoableChange(java.beans.PropertyChangeEvent)
    ListDialog.java:653
    void java.beans.VetoableChangeSupport.fireVetoableChange(java.beans.PropertyChangeEvent)
    VetoableChangeSupport.java:225
    void java.beans.VetoableChangeSupport.fireVetoableChange(java.lang.String, java.lang.Object, java.lang.Object)
    VetoableChangeSupport.java:142
    void oracle.bali.ewt.dialog.JEWTDialog.fireVetoableChange(java.lang.String, java.lang.Object, java.lang.Object)
    void oracle.bali.ewt.dialog.JEWTDialog.dismissDialog(boolean)
    void oracle.bali.ewt.dialog.JEWTDialog$UIListener.actionPerformed(java.awt.event.ActionEvent)
    void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
    AbstractButton.java:1450
    void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
    AbstractButton.java:1504
    void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
    DefaultButtonModel.java:378
    void javax.swing.DefaultButtonModel.setPressed(boolean)
    DefaultButtonModel.java:250
    void javax.swing.plaf.basic.BasicButtonListener.mouseReleased(java.awt.event.MouseEvent)
    BasicButtonListener.java:216
    void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
    Component.java:3715
    void java.awt.Component.processEvent(java.awt.AWTEvent)
    Component.java:3544
    void java.awt.Container.processEvent(java.awt.AWTEvent)
    Container.java:1164
    void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
    Component.java:2593
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    Container.java:1213
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    Component.java:2497
    void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
    Container.java:2451
    boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
    Container.java:2216
    boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
    Container.java:2125
    void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
    Container.java:1200
    void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
    Window.java:922
    void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
    Component.java:2497
    void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
    EventQueue.java:339
    boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
    EventDispatchThread.java:131
    void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
    EventDispatchThread.java:98
    void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
    EventDispatchThread.java:93
    void java.awt.EventDispatchThread.run()
    EventDispatchThread.java:85
    "TimerQueue" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void javax.swing.TimerQueue.run()
    TimerQueue.java:233
    void java.lang.Thread.run()
    Thread.java:484
    "AWT-Windows" prio: 6 state: runnable
    void sun.awt.windows.WToolkit.eventLoop()
    native code
    void sun.awt.windows.WToolkit.run()
    WToolkit.java:188
    void java.lang.Thread.run()
    Thread.java:484
    "Thread-46" prio: 6 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Thread.join(long)
    Thread.java:934
    void java.lang.Thread.join()
    Thread.java:987
    oracle.ide.scm.util.runner.SCMProcess oracle.ide.scm.util.runner.SCMProcessImpl.waitFor()
    SCMProcessImpl.java:239
    void novus.scm.vss.util.VSSRunner._$6819(java.lang.String)
    VSSRunner.java:120
    void novus.scm.vss.util.VSSRunner.<init>(java.lang.String)
    VSSRunner.java:56
    void novus.scm.vss.VSSMultiFileOperation.execute(java.util.Iterator, oracle.ide.scm.SCMOptions)
    VSSMultiFileOperation.java:163
    void oracle.ideimpl.scm.impl.Committer.commit(java.util.Iterator, oracle.ide.scm.share.listdialog.Options)
    Committer.java:63
    void oracle.ide.scm.share.listdialog.ListDialog.commitImpl(oracle.ide.controls.progress.ProgressWatcher)
    ListDialog.java:586
    void oracle.ide.scm.share.listdialog.ListDialog.access$1000771(oracle.ide.scm.share.listdialog.ListDialog, oracle.ide.controls.progress.ProgressWatcher)
    ListDialog.java:79
    void oracle.ide.scm.share.listdialog.ListDialog$CommitRunnable.run()
    ListDialog.java:690
    void java.lang.Thread.run()
    Thread.java:484
    "SunToolkit.PostEventQueue-0" prio: 6 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void sun.awt.PostEventQueue.run()
    SunToolkit.java:491
    "Thread-4" prio: 5 state: waiting
    void java.lang.Thread.sleep(long)
    native code
    void oracle.ide.util.MonitorThread$1.run()
    MonitorThread.java:118
    "Navigator Overlay Updater" prio: 1 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void oracle.ideimpl.navigator.NodeOverlayManagerImpl$OverlayThread.run()
    NodeOverlayManagerImpl.java:505
    "Thread-1" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.util.TimerThread.mainLoop()
    Timer.java:406
    void java.util.TimerThread.run()
    Timer.java:385
    "Version Operation Thread" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.awt.Dialog.show()
    Dialog.java:389
    void java.awt.Component.show(boolean)
    Component.java:946
    void java.awt.Component.setVisible(boolean)
    Component.java:903
    void oracle.ide.scm.share.listdialog.ListDialog.showDialog(java.util.List, oracle.ide.scm.share.listdialog.ListCommitter)
    ListDialog.java:361
    void oracle.ideimpl.scm.env.OperationRuntimeImpl.tryFileLister(oracle.ideimpl.scm.impl.Committer, oracle.ide.scm.op.SCMFileOperation, oracle.ide.scm.SCMDialogSpecification, java.util.List, boolean)
    OperationRuntimeImpl.java:437
    java.util.List oracle.ideimpl.scm.env.OperationRuntimeImpl.performImpl2(oracle.ide.scm.SCMOperation, java.util.List, boolean)
    OperationRuntimeImpl.java:318
    java.util.List oracle.ideimpl.scm.env.OperationRuntimeImpl.performImpl(oracle.ide.scm.SCMOperation, java.util.List, boolean)
    OperationRuntimeImpl.java:192
    void oracle.ideimpl.scm.impl.ActionController.handleEventImpl(oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
    ActionController.java:604
    void oracle.ideimpl.scm.impl.ActionController.access$2000071(oracle.ideimpl.scm.impl.ActionController, oracle.ide.scm.SCMOperation, oracle.ide.IdeAction, oracle.ide.addin.Context)
    ActionController.java:68
    void oracle.ideimpl.scm.impl.ActionController$1.run()
    ActionController.java:181
    void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.run()
    OperationThread.java:209
    void oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable.access$2000071(oracle.ideimpl.scm.impl.OperationThread$ThreadRunnable)
    OperationThread.java:181
    void oracle.ideimpl.scm.impl.OperationThread.run()
    OperationThread.java:157
    "main" prio: 5 state: idle
    "Thread-50" prio: 6 state: runnable
    int java.io.FileInputStream.readBytes(byte[], int, int)
    native code
    int java.io.FileInputStream.read(byte[], int, int)
    FileInputStream.java:183
    void java.io.BufferedInputStream.fill()
    BufferedInputStream.java:186
    int java.io.BufferedInputStream.read()
    BufferedInputStream.java:204
    int java.io.FilterInputStream.read()
    FilterInputStream.java:69
    int java.io.PushbackInputStream.read()
    PushbackInputStream.java:123
    void oracle.ide.scm.util.runner.SCMProcessImpl$StreamPumper.run()
    SCMProcessImpl.java:435
    "Thread-51" prio: 6 state: runnable
    int java.io.FileInputStream.read()
    native code
    int java.io.FilterInputStream.read()
    FilterInputStream.java:69
    int java.io.PushbackInputStream.read()
    PushbackInputStream.java:123
    void oracle.ide.scm.util.runner.SCMProcessImpl$StreamPumper.run()
    SCMProcessImpl.java:435
    "Thread-52" prio: 6 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Thread.join(long)
    Thread.java:934
    void java.lang.Thread.join()
    Thread.java:987
    void oracle.ide.scm.util.runner.SCMProcessImpl$1.run()
    SCMProcessImpl.java:185
    "Screen Updater" prio: 5 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    sun.awt.ScreenUpdaterEntry sun.awt.ScreenUpdater.nextEntry()
    ScreenUpdater.java:76
    void sun.awt.ScreenUpdater.run()
    ScreenUpdater.java:95
    "Signal Dispatcher" prio: 5 state: idle
    "Finalizer" prio: 8 state: waiting
    void java.lang.Object.wait(long)
    native code
    java.lang.ref.Reference java.lang.ref.ReferenceQueue.remove(long)
    ReferenceQueue.java:108
    java.lang.ref.Reference java.lang.ref.ReferenceQueue.remove()
    ReferenceQueue.java:123
    void java.lang.ref.Finalizer$FinalizerThread.run()
    Finalizer.java:162
    "Reference Handler" prio: 10 state: waiting
    void java.lang.Object.wait(long)
    native code
    void java.lang.Object.wait()
    Object.java:420
    void java.lang.ref.Reference$ReferenceHandler.run()
    Reference.java:110

  • Livecache Adminstration not found

    Dear All
    I have installed SCM 5.0 IDES in our 64bit system successfully. After this i have installed SAP livecache as per the guide SAP NW04S SR2 Standalone Engine SAP Livecache techonlogy.: Windows. Since i am installing the SAP livecache on the same system where i had installed SCM IDES 5.0 i selected Livecache server option and i have installed successfully. after installtion i checked with LC10 command i could see the green signal. I checked asd per the IDES SCM 5.0 note and proceeded. Now i want to monitor the Livecache thro the DBM tool but when i try to do it it does not show the present livecahe instance but it shows normal options like Add,create etc. usually it should detect the present LC instance. While installing SCM i had selected the livecahe intsnace id : LCi and the control user as default.now when i check the user group in the manage in the windows option i could not the LC user. what to do
    OS : windows 2003
    LC id : LCI
    regards
    bala

    Hi
    sdbregview -l
    SAP Utilities       c:/sapdb/programs      7.6.00.29     64 bit    valid
    Server Utilities    c:/sapdb/programs      7.6.00.29     64 bit    valid
    DB Analyzer         c:/sapdb/programs      7.6.00.29     64 bit    valid
    APO LC APPS         c:/sapdb/lci/db/sap    5.00.007      64 bit    valid
    Redist Python       c:/sapdb/programs      7.6.00.29     64 bit    valid
    Base                c:/sapdb/programs      7.6.00.29     64 bit    valid
    JDBC                c:/sapdb/programs      7.6.00.24               valid
    Messages            c:/sapdb/programs      MSG 0.3347              valid
    ODBC                c:/sapdb/programs      7.6.00.29     64 bit    valid
    Database Kernel     c:/sapdb/lci/db        7.6.00.29     64 bit    valid
    Loader              c:/sapdb/programs      7.6.00.29     64 bit    valid
    SQLDBC              c:/sapdb/programs      7.6.00.29     64 bit    valid
    SQLDBC 7600         c:/sapdb/programs      7.6.00.29     64 bit    valid
    xinstinfo
    IndepData           : d:\sapdb\data
    IndepPrograms       : c:\sapdb\programs
    dbmcli -s inst_enum
    OK
    7.6.00.29    c:\sapdb\lci\db
    dbmcli -s db_enum
    OK
    LCI     c:\sapdb\lci\db                         7.6.00.29       test    offline
    LCI     c:\sapdb\lci\db                         7.6.00.29       slow    offline
    LCI     c:\sapdb\lci\db                         7.6.00.29       quick   offline
    LCI     c:\sapdb\lci\db                         7.6.00.29       fast    running
    Yes the XServer is running
    when i try to start frm the command promt it shows already running
    x_server start
    18641 ERROR: XSERVER is already running!
    i have not installed the DBM GUI in my PC.
    When i executed in LC10->livecache Monitoring-tools-Database ManagerDBM GUI) it shows the following error
    from my PC i got this blow error
    Error Calling Database Manager (GUI)
    Message no. LVC400
    whether i should install the sapgui in the server and test it
    yes i have run the DBIGUI 7.6 on the server but it does not detect the already available Livecache instance LCI
    but it shows as ADD/CREATE and etc and when i try add the LCI it show error : -4 database instance not found
    I could not see the livecache listed when i try to add
    what to do
    regards
    bala

Maybe you are looking for