[BUG?] af:table table empty after descending sort and remove

Hi,
I think i found a bug.
I have an af:table binded to an arraylist in a backingbean. This List consist of an object that represents two strings (value 1 and 2).
Now when the table is loaded and I sort descending on one of the columns. After sorting i'll try to remove a row. The correct row is published to the bean with an af:setPropertyListener and removed from the arraylist. But when the table is rendered again there are no values in the table. But the arraylist still has all remaining values which will be shown after a sort again.
Fun fact: it only happens when sorting descending.
Anyone got an idea?
The code:
jspx:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1">
      <af:form id="f1">
        <af:panelStretchLayout topHeight="50px" id="psl1">
          <f:facet name="top">
            <af:panelHeader text="Table with Data Values" id="ph1">
              <f:facet name="context"/>
              <f:facet name="menuBar"/>
              <f:facet name="toolbar"/>
              <f:facet name="legend"/>
              <f:facet name="info"/>
            </af:panelHeader>
          </f:facet>
          <f:facet name="center">
            <af:panelCollection id="pc1">
              <f:facet name="menus"/>
              <f:facet name="toolbar"/>
              <f:facet name="statusbar"/>
              <af:table value="#{dataHandler.dataList}" var="row"
                        binding="#{dataHandler.rt}"
                        rowBandingInterval="0" id="t1">
                <af:column sortable="true"  headerText="Value1" align="start"
                           id="c1" sortProperty="value1">
                  <af:inputText value="#{row.value1}" id="it1"/>
                </af:column>
                <af:column sortable="true" headerText="Value2" align="start"
                           id="c2" sortProperty="value2">
                  <af:inputText value="#{row.value2}" id="it2"/>
                </af:column>
                <af:column sortable="false" headerText="Actions"
                           id="c3" >
                  <af:commandLink id="verwijderRij" text="Verwijder" >
                      <af:setPropertyListener from="#{row}" to="#{dataHandler.verwijderRij}" type="action"/>
                      </af:commandLink>
                </af:column>
              </af:table>
            </af:panelCollection>
            <!-- id="af_one_column_header_stretched"  -->
          </f:facet>
        </af:panelStretchLayout>
      </af:form>
    </af:document>
  </f:view>
</jsp:root>the backing beans:
package nl.ibr.view;
public class MyDataObject {
  private String value1;
  private String value2;
    public MyDataObject(String value1, String value2) {
        super();
        this.value1 = value1;
        this.value2 = value2;
    public void setValue1(String value1) {
        this.value1 = value1;
    public String getValue1() {
        return value1;
    public void setValue2(String value2) {
        this.value2 = value2;
    public String getValue2() {
        return value2;
package nl.ibr.view;
import java.util.ArrayList;
import java.util.List;
import oracle.adf.view.rich.component.rich.data.RichTable;
public class DataHandler {
    private List<MyDataObject> dataList = new ArrayList<MyDataObject>();
    private RichTable rt;
    public DataHandler() {
      dataList.add(new MyDataObject("1","2"));
      dataList.add(new MyDataObject("3","7"));
      dataList.add(new MyDataObject("4","8"));
      dataList.add(new MyDataObject("5","9"));
    public void setDataList(List<MyDataObject> dataList) {
        this.dataList = dataList;
    public List<MyDataObject> getDataList() {
        return dataList;
    public void setVerwijderRij(Object row) {
      System.out.println("Listsize before delete: " + dataList.size());
      System.out.println("Delete row"  + row);
      dataList.remove(row);
      System.out.println("Listsize after delete: " + dataList.size());
      rt.setValue(dataList);
      System.out.println("Done delete method");
    public void setRt(RichTable rt) {
        this.rt = rt;
    public RichTable getRt() {
        return rt;
}Jdev version information:
About
Oracle JDeveloper 11g Release 1 11.1.1.4.0
Studio Edition Version 11.1.1.4.0
Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
Copyright © 1997, 2011 Oracle and/or its affiliates. All rights reserved.
IDE Version: 11.1.1.4.37.59.23
Product ID: oracle.jdeveloper
Product Version: 11.1.1.4.37.59.23
Version
Component     Version
=========     =======
ADF Business Components     11.1.1.59.23
Java(TM) Platform     1.6.0_21
Oracle IDE     11.1.1.4.37.59.23
SOA Composite Editor     11.1.1.4.0.56.82
Versioning Support     11.1.1.4.37.59.23
Properties
Name     Value
====     =====
awt.toolkit     sun.awt.windows.WToolkit
ceditor.java.parse.large     1500
ceditor.java.parse.small     300
class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
class.load.log.level     CONFIG
class.transfer     delegate
compiler.vmargs     -Xmx512m
EDITOR_J2SE_VERSION     1.5
feedbackmanager.disable     false
file.encoding     Cp1252
file.encoding.pkg     sun.io
file.separator     \
http.agent     Mozilla/5.0 (Java 1.6.0_21; Windows XP 5.1 x86; en_US) ICEbrowser/v6_1_3
http.nonProxyHosts     62.58.52.167|*.local|10.100.6.*|*.randstadrmdnext.nl|*.randstadrentreenext.nl|*.rsg|localhost|localhost.localdomain|127.0.0.1|::1|dp-60520.noa.nl.rsg|dp-60520
http.proxyHost     proxy.noa.nl.rsg
http.proxyPort     8080
https.nonProxyHosts     62.58.52.167|*.local|10.100.6.*|*.randstadrmdnext.nl|*.randstadrentreenext.nl|*.rsg|localhost|localhost.localdomain|127.0.0.1|::1|dp-60520.noa.nl.rsg|dp-60520
https.proxyHost     proxy.noa.nl.rsg
https.proxyPort     8080
ice.browser.forcegc     false
ice.pilots.html4.ignoreNonGenericFonts     true
ice.pilots.html4.tileOptThreshold     0
ide.bootstrap.start     2915472833421
ide.build     JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
ide.conf     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin\jdev.conf
ide.config_pathname     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin\jdev.conf
ide.debugbuild     false
ide.devbuild     false
ide.editions     oracle.studio, oracle.j2ee, oracle.jdeveloper
ide.extension.role.search.path     jdev/roles
ide.extension.search.path     jdev/extensions:sqldeveloper/extensions
ide.feedbackmanager.customer     false
ide.firstrun     false
ide.java.maxversion     1.7
ide.java.minversion     1.6.0_04
ide.launcherProcessId     1596
ide.main.class     oracle.ide.boot.IdeLauncher
ide.max.jar.handles     500
ide.old.user.country     NL
ide.old.user.language     nl
ide.patches.dir     jdev/lib/patches
ide.pref.dir     C:\Documents and Settings\ho01023\Application Data\JDeveloper
ide.pref.dir.base     C:\Documents and Settings\ho01023\Application Data
ide.product     oracle.jdeveloper
ide.shell.enableFileTypeAssociation     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdeveloper.exe
ide.splash.screen     splash.gif
ide.startingArg0     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdeveloper.exe
ide.startingcwd     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper
ide.throttleLocale     true
ide.user.dir     C:\Documents and Settings\ho01023\Application Data\JDeveloper
ide.user.dir.var     JDEV_USER_HOME,JDEV_USER_DIR
ide.work.dir     \\\JDeveloper
ide.work.dir.base     \\CP-1000VS03\HOME104\HO01023
ilog.propagatesPropertyEditors     false
inJUIDesigntime     true
insight.suppresshidden     true
INSIGHT_OMIT_HIDDEN     true
java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
java.awt.printerjob     sun.awt.windows.WPrinterJob
java.class.path     ..\..\ide\lib\ide-boot.jar
java.class.version     50.0
java.endorsed.dirs     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\endorsed
java.ext.dirs     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
java.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre
java.io.tmpdir     C:\DOCUME~1\ho01023\LOCALS~1\Temp\
java.library.path     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\Apps\Oracle\Middleware_11_1_1_1_0\jdk160_11\bin;D:\Apps\apache-maven-2.0.9\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Windows Imaging\;C:\Program Files\jZip;D:\Apps\TortoiseSVN\bin;D:\Apps\SlikSvn\bin\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\Tealeaf;
java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
java.naming.factory.url.pkgs     weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
java.protocol.handler.pkgs     oracle.fabric.common.uddiurl.handler|oracle.jdevimpl.handler|weblogic.net
java.runtime.name     Java(TM) SE Runtime Environment
java.runtime.version     1.6.0_21-b51
java.specification.name     Java Platform API Specification
java.specification.vendor     Sun Microsystems Inc.
java.specification.version     1.6
java.vendor     Sun Microsystems Inc.
java.vendor.url     http://java.sun.com/
java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
java.version     1.6.0_21
java.vm.info     mixed mode
java.vm.name     Java HotSpot(TM) Client VM
java.vm.specification.name     Java Virtual Machine Specification
java.vm.specification.vendor     Sun Microsystems Inc.
java.vm.specification.version     1.0
java.vm.vendor     Sun Microsystems Inc.
java.vm.version     17.0-b17
javax.rmi.CORBA.PortableRemoteObjectClass     weblogic.iiop.PortableRemoteObjectDelegateImpl
javax.rmi.CORBA.UtilClass     weblogic.iiop.UtilDelegateImpl
javax.xml.parsers.DocumentBuilderFactory     oracle.xml.jaxp.JXDocumentBuilderFactory
jbo.debugoutput     silent
jbo.showdebugwarningbanner     false
jps.authz     NULL
line.separator     \r\n
oracle.adfm.usemds     false
oracle.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\
oracle.j2ee.extension.status     enabled
oracle.jbo.usemds     false
oracle.jdbc.Trace     true
oracle.jdeveloper.webservice.hidePropertyOverride     false
oracle.jdeveloper.webservice.showAllOwsmPolicyTypes     false
oracle.mds.internal.config.override.emptystore     true
oracle.security.jps.config     /C:/Documents and Settings/ho01023/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/config/fmwconfig/jps-config-jse.xml
oracle.soap.transport.noHTTPClient     true
oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
oracle.xdkjava.compatibility.version     9.0.4
org.omg.CORBA.ORBClass     weblogic.corba.orb.ORB
org.omg.CORBA.ORBSingletonClass     weblogic.corba.orb.ORB
os.arch     x86
os.name     Windows XP
os.version     5.1
path.separator     ;
reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
sun.arch.data.model     32
sun.awt.disablegrab     true
sun.awt.keepWorkingSetOnMinimize     true
sun.boot.class.path     ../lib/lwawt.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\resources.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\rt.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\sunrsasign.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\jsse.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\jce.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\charsets.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\classes
sun.boot.library.path     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\bin
sun.cpu.endian     little
sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
sun.desktop     windows
sun.io.unicode.encoding     UnicodeLittle
sun.java2d.noddraw     true
sun.jnu.encoding     Cp1252
sun.management.compiler     HotSpot Client Compiler
sun.os.patch.level     Service Pack 3
svnkit.sax.useDefault     true
user.country     US
user.dir     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin
user.home     C:\Documents and Settings\ho01023
user.language     en
user.name     ho01023
user.timezone     Europe/Berlin
user.variant     
wasp.location     ../../uddi
weblogic.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\wlserver_10.3\server
weblogic.security.SSL.ignoreHostnameVerification     true
weblogic.security.TrustKeyStore     DemoTrust
windows.shell.font.languages     en
Extensions
Name     Identifier     Version     Status
====     ==========     =======     ======
ADF Business Components     oracle.BC4J     11.1.1.4.37.59.23     Loaded
ADF Business Components Dependency     oracle.bc4j.dependency     11.1.1.4.37.59.23     Loaded
ADF Business Components Deployment     oracle.bc4jdt.deploy     11.1.1.4.37.59.23     Loaded
ADF Business Components Modeler     oracle.adfbcdt.modeler     11.1.1.4.37.59.23     Loaded
ADF Business Components Syscat     oracle.bc4j.syscat     0     Loaded
ADF Business Components Tester     oracle.bc4j.tester     11.1.1.4.37.59.23     Loaded
ADF Common Audit     oracle.adf.common.audit     0     Loaded
ADF Context Debugger     oracle.adf.share.debug     11.1.1.4.37.59.23     Loaded
ADF Controller Configuration Design Time     oracle.adf.controller.config.dt     11.1.1.4.37.59.23     Loaded
ADF Data Visualizations Design Time Tests     oracle.dvt.dt     11.1.1.4.37.59.23     Loaded
ADF Debugger     oracle.adf.debug     11.1.1.4.37.59.23     Loaded
ADF Debugger Diagram Support     oracle.adf.debug.diagram     11.1.1.4.37.59.23     Loaded
ADF Desktop Integration Design Time     oracle.adfdt.desktopintegration     11.1.1.4.37.59.23     Loaded
ADF Faces Cache     oracle.webcache     11.1.1.4.37.59.23     Loaded
ADF Faces Data Visualization Tools Help     oracle.dvt-faces-doc     11.1.1.0.0     Loaded
ADF Faces Databinding Design Time     oracle.adf-faces-databinding-dt     11.1.1.4.37.59.23     Loaded
ADF Faces Design Time     oracle.adf-faces-dt     11.1.1.4.37.59.23     Loaded
ADF Faces Design Time Migration     oracle.adffacesdt.migration     11.1.1.4.37.59.23     Loaded
ADF Faces Runtime Help     oracle.adf-faces-rt-doc     11.1.1.0.0     Loaded
ADF Faces Skin Design Time     oracle.adf-faces-skin-dt     11.1.1.4.37.59.23     Loaded
ADF JMX Data Control Designtime     oracle.adf.jmxdc     11.1.1.4.37.59.23     Loaded
ADF Java Server Faces Diagram     oracle.adf.jsf.diagram     11.1.1.4.37.59.23     Loaded
ADF Library Design Time     oracle.jdeveloper.adflibrary     11.1.1.4.37.59.23     Loaded
ADF Lifecycle Design Time     oracle.adf.lifecycle.dt     11.1.1.4.37.59.23     Loaded
ADF Management Pages     oracle.adf.management     11.1.1.4.37.59.23     Loaded
ADF Menu Model Design-Time     oracle.adfmenudt     11.1.1.4.37.59.23     Loaded
ADF Page Flow Design Time     oracle.adf.pageflow.dt     11.1.1.4.37.59.23     Loaded
ADF Page Flow Design Time Extras     oracle.adf.pageflow.dt.extras     11.1.1.4.37.59.23     Loaded
ADF Page Template DT     oracle.adf-faces-templating-dt     11.1.1.4.37.59.23     Loaded
ADF Region Design Time     oracle.adf-faces-region-dt     11.1.1.4.37.59.23     Loaded
ADF Struts Page Flow Modeler     oracle.struts.adf     11.1.1.4.37.59.23     Loaded
ADF Struts and Model One Databinding     oracle.adf.struts.and.model.one.databinding.dt     11.1.1.4.37.59.23     Loaded
ADF Swing     oracle.adfdt.swingcore     11.1.1.4.37.59.23     Loaded
ADF View Debugging Design Time     adf.view.debugging.dt     11.1.1.4.37.59.23     Loaded
ADFv Common Databinding     oracle.adf-view-databinding-dt     11.1.1.4.37.59.23     Loaded
Ant     oracle.ant     11.1.1.4.37.59.23     Loaded
Application Server Manager     oracle.jdeveloper.asnav     11.1.1.4.37.59.23     Loaded
Application State - Application Navigator     oracle.ideimpl.appstate.appnav     11.1.1.4.37.59.23     Loaded
Application State - Editors     oracle.ide.appstate.editors     11.1.1.4.37.59.23     Loaded
Application State Manager     oracle.ide.appstate     11.1.1.4.37.59.23     Loaded
Archive Compare     oracle.jdeveloper.archive-compare     11.1.1.4.37.59.23     Loaded
BAM     oracle.bam     11.1.1     Loaded
BI Beans Graph     oracle.bibeans     11.1.1.4.37.59.23     Loaded
BM metamodel framework     oracle.bm.meta     11.1.1.4.37.59.23     Loaded
Bug Reporter     oracle.jdeveloper.bugfiler     11.1.1.4.37.59.23     Loaded
Business Modelers     oracle.bm     11.1.1.4.37.59.23     Loaded
Check For Updates     oracle.ide.webupdate     11.1.1.4.37.59.23     Loaded
Code Editor     oracle.ide.ceditor     11.1.1.4.37.59.23     Loaded
Command Line Formatting Support     oracle.jdeveloper.ojformat     11.1.1.4.37.59.23     Loaded
Command Line Make/Rebuild Support     oracle.jdevimpl.oj-compiler     11.1.1.4.37.59.23     Loaded
Common Controller Design-Time     oracle.controller.dt     11.1.1.4.37.59.23     Loaded
Common Page Flow Design-Time     oracle.pageflow.dt     11.1.1.4.37.59.23     Loaded
Component Palette     oracle.ide.palette1     11.1.1.4.37.59.23     Loaded
Controller to ADF Bindings Bridge     oracle.controller.bindings.dt     11.1.1.4.37.59.23     Loaded
Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.4.37.59.23     Loaded
Database Features (JDeveloper)     oracle.jdeveloper.db     11.1.1.4.37.59.23     Loaded
Database Features (SQLDeveloper in JDeveloper)     oracle.jdeveloper.db.navigator     11.1.1.4.37.59.23     Loaded
Database Modeler     oracle.dbmodeler     11.1.1.4.37.59.23     Loaded
Database Modeler Migration     oracle.dbmodeler.migrate     11.1.1.4.37.59.23     Loaded
Database Object Dependency API Support     oracle.jdeveloper.db.dependency     11.1.1.4.37.59.23     Loaded
Database Object Explorers     oracle.ide.db.explorer     11.1.1.4.37.59.23     Loaded
Database Object Transfer Framework     oracle.jdeveloper.db.transfer     11.1.1.4.37.59.23     Loaded
Database UI     oracle.ide.db     11.1.1.4.37.59.23     Loaded
Design Time Resource Bundle Variable Resolver     oracle.jdeveloper.resourcebundle.resolver.dt     11.1.1.4.37.59.23     Loaded
Diagram Framework     oracle.diagram     11.1.1.4.37.59.23     Loaded
Diagram Framework Toplink extensions     oracle.diagram.toplink     11.1.1.4.37.59.23     Loaded
Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.4.37.59.23     Loaded
Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.4.37.59.23     Loaded
Diagram to XMLEF Bridge     oracle.diagram.xmlef     11.1.1.4.37.59.23     Loaded
Diff/Merge     oracle.ide.diffmerge     11.1.1.4.37.59.23     Loaded
EJB     oracle.ejb     11.1.1.4.37.59.23     Loaded
EJB Modeler     oracle.ejbmodeler     11.1.1.4.37.59.23     Loaded
Editor Tint     oracle.ide.ceditor-tint     11.1.1.4.37.59.23     Loaded
Editor Tint (Java)     oracle.jdeveloper.ceditor-tint-java     11.1.1.4.37.59.23     Loaded
Extended IDE Platform     oracle.javacore     11.1.1.4.37.59.23     Loaded
Extension Designtime Core     oracle.jdeveloper.extensiondt.core     11.1.1.4.37.59.23     Loaded
Extension Designtime UI     oracle.jdeveloper.extensiondt.ui     11.1.1.4.37.59.23     Loaded
External Tools     oracle.ide.externaltools     11.1.1.4.37.59.23     Loaded
Feedback     oracle.ide.feedback     11.1.1.4.37.59.23     Loaded
File Support     oracle.ide.files     11.1.1.4.37.59.23     Loaded
Fusion Application Overview Definition     oracle.ide.appoverview.fusion.definition     11.1.1.4.37.59.23     Loaded
Fusion Web Application (ADF) Template     oracle.adf.webapp.template     11.1.1.4.37.59.23     Loaded
Go to File     oracle.ide.gotofile     11.1.1.4.37.59.23     Loaded
Go to Java Type     oracle.jdeveloper.gotojava     11.1.1.4.37.59.23     Loaded
HTML     oracle.html     11.1.1.4.37.59.23     Loaded
Help System     oracle.ide.help     11.1.1.4.37.59.23     Loaded
History Support     oracle.jdeveloper.history     11.1.1.4.37.59.23     Loaded
IDE Reports Extension     oracle.ide.report     11.1.1.4.37.59.23     Loaded
Import/Export Support     oracle.ide.importexport     11.1.1.4.37.59.23     Loaded
Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.4.37.59.23     Loaded
J2EE     oracle.j2ee     11.1.1.4.37.59.23     Loaded
J2EE     oracle.j2ee.webapp.ve     11.1.1.4.37.59.23     Loaded
J2EE     oracle.j2ee.webapp.ve.facelets     11.1.1.4.37.59.23     Loaded
J2EE CSS     oracle.css     11.1.1.4.37.59.23     Loaded
J2EE Faces Config     oracle.j2ee.facesconfig     11.1.1.4.37.59.23     Loaded
J2EE Web App     oracle.j2ee.webapp     11.1.1.4.37.59.23     Loaded
J2EE-ADRS     oracle.j2ee.adrs     11.1.1.4.37.59.23     Loaded
J2ee extension help     oracle.j2ee.help     11.1.1.0.0     Loaded
JDeveloper     oracle.jdeveloper     11.1.1.4.37.59.23     Loaded
JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.4.37.59.23     Loaded
JGoodies Forms     oracle.jdeveloper.jgoodies     11.1.1.4.37.59.23     Loaded
JPublisher     oracle.jdeveloper.db.jpub     11.1.1.4.37.59.23     Loaded
JSON Language support     oracle.jdeveloper.json     11.1.1.4.37.59.23     Loaded
JUnit Integration     oracle.jdeveloper.junit     11.1.1.4.37.59.23     Loaded
JViews Registration Addin     oracle.diagram.registration     11.1.1.4.37.59.23     Loaded
Java Annotation Inspector     oracle.jdeveloper.annotation.inspector     11.1.1.4.37.59.23     Loaded
Java Breadcrumbs     oracle.jdeveloper.ceditor-breadcrumbs-java     11.1.1.4.37.59.23     Loaded
Java Class Modeler     oracle.javamodeler     11.1.1.4.37.59.23     Loaded
Java Modeler Toplink extensions     oracle.javamodeler.toplink     11.1.1.4.37.59.23     Loaded
Java Server Faces Page Flow Modeler     oracle.jsfmod     11.1.1.4.37.59.23     Loaded
Java Structure Compare     oracle.jdeveloper.java-compare     11.1.1.4.37.59.23     Loaded
Java Type Search     oracle.jdeveloper.searchbar.java     11.1.1.4.37.59.23     Loaded
Java extension help     oracle.java.help     11.1.1.0.0     Loaded
JavaBeans, Swing, and AWT     oracle.swingawt     11.1.1.4.37.59.23     Loaded
JavaScript Language Support     oracle.ide.javascript     11.1.1.4.37.59.23     Loaded
Jdeveloper UI Editor     oracle.jdeveloper.uieditor     11.1.1.4.37.59.23     Loaded
Jdeveloper XML Extension     oracle.jdeveloper.xml     11.1.1.4.37.59.23     Loaded
Legacy Controller Design-Time     oracle.controller.bm.dt     11.1.1.4.37.59.23     Loaded
Legacy Preferences integration for BM     oracle.modeler.bm.prefs     11.1.1.4.37.59.23     Loaded
Log Window     oracle.ide.log     11.1.1.4.37.59.23     Loaded
MDS Extension     oracle.mds     11.1.1.4.37.59.23     Loaded
MOF Ide Integration     oracle.mof.ide     11.1.1.4.37.59.23     Loaded
MOF Modeler Integration     oracle.modeler.mof     11.1.1.4.37.59.23     Loaded
Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.4.37.59.23     Loaded
Modeler Framework     oracle.modeler     11.1.1.4.37.59.23     Loaded
Modeler Framework Common Layer     oracle.modeler.common     11.1.1.4.37.59.23     Loaded
Modelling migration from BM     oracle.modeler.bm.migrate     11.1.1.4.37.59.23     Loaded
Navigator     oracle.ide.navigator     11.1.1.4.37.59.23     Loaded
Nightly Indexing support     oracle.ideimpl.indexing-rt     11.1.1.4.37.59.23     Loaded
OAR/MAR/SAR Deployment Support Extension     oracle.deploy.orapp     11.1.1.4.37.59.23     Loaded
OWSM Policy Manager Installer     oracle.jdeveloper.webservice.wsmpm.installer     11.1.1.4.37.59.23     Loaded
Object Gallery     oracle.ide.gallery     11.1.1.4.37.59.23     Loaded
Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.64.46     Loaded
Offline Database     oracle.jdeveloper.offlinedb     11.1.1.4.37.59.23     Loaded
Offline Database Import/Generate     oracle.jdeveloper.offlinedb.transfer     11.1.1.4.37.59.23     Loaded
Offline Database Reports Extension     oracle.jdeveloper.offlinedb.report     11.1.1.4.37.59.23     Loaded
Offline Database SXML     oracle.jdeveloper.offlinedb.sxml     11.1.1.4.37.59.23     Loaded
Offline Database User Properties     oracle.jdeveloper.offlinedb.userprops     11.1.1.4.37.59.23     Loaded
Offline Database User Properties SXML     oracle.jdeveloper.offlinedb.userprops.sxml     11.1.1.4.37.59.23     Loaded
Oracle BPEL 1.1 Designer     oracle.bpel.v1.designer     11.1.1.4.0.56.82     Loaded
Oracle BPEL 1.1 Designer Plugins     oracle.bpel.v1.designer.plugins     11.1.1.4.0.56.82     Loaded
Oracle BPEL 2.0 Designer     oracle.bpel.v2.designer     11.1.1.4.0.56.82     Loaded
Oracle BPEL 2.0 Designer Plugins     oracle.bpel.v2.designer.plugins     11.1.1.4.0.56.82     Loaded
Oracle BPEL Designer Shared Code     oracle.bpel.designer.shared     11.1.1.4.0.56.82     Loaded
Oracle BPM DVM     oracle.bpm.dvm     11.1.1.4.0.56.82     Loaded
Oracle BPM XREF     oracle.bpm.xref     11.1.1.4.0.56.82     Loaded
Oracle Business Rules Designer     oracle.bpm.rules     11.1.1.4.0.56.82     Loaded
Oracle Database Browser     oracle.sqldeveloper.thirdparty.browsers     11.1.1.64.46     Loaded
Oracle Enterprise Repository Editor     oracle.jdeveloper.oereditor     11.1.1.4.37.59.23     Loaded
Oracle Events Designer     oracle.bpm.events     11.1.1.4.0.56.82     Loaded
Oracle Fabric Plugins     oracle.sca.modeler.plugins     11.1.1.4.0.56.82     Loaded
Oracle Human Task Designer     oracle.bpm.workflow     11.1.1.4.0.56.82     Loaded
Oracle IDE     oracle.ide     11.1.1.4.37.59.23     Loaded
Oracle JDevloper Deployment Core Module     oracle.deploy.core     11.1.1.4.37.59.23     Loaded
Oracle MDS Design time     oracle.mds.dt     11.1.1.4.37.59.23     Loaded
Oracle Mobile ADF     oracle.wireless.dt     11.1.1.4.37.59.23     Loaded
Oracle Page Templates     oracle.adf-page-template-samples     11.1.1.4.37.59.23     Loaded
Oracle SOA Composite Editor     oracle.sca.modeler     11.1.1.4.0.56.82     Loaded
Oracle SOA Mediator     oracle.sca.mediator     11.1.1.4.0.56.82     Loaded
Oracle SQL Developer     oracle.sqldeveloper     11.1.1.64.46     Loaded
Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.64.46     Loaded
Oracle SQL Developer Worksheet     oracle.sqldeveloper.worksheet     11.1.1.64.46     Loaded
Oracle User Messaging Service Client Extension     oracle.ums.jdev     11.1.1.4.0     Loaded
Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.64.46     Loaded
PL/SQL Debugger     oracle.jdeveloper.db.debug.plsql     11.1.1.4.37.59.23     Loaded
PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.4.37.59.23     Loaded
Peek     oracle.ide.peek     11.1.1.4.37.59.23     Loaded
Persistent Storage     oracle.ide.persistence     11.1.1.4.37.59.23     Loaded
Profiler     oracle.jdeveloper.profiler     11.1.1.4.37.59.23     Loaded
Properties File Support     oracle.jdeveloper.props     11.1.1.4.37.59.23     Loaded
Property Inspector     oracle.ide.inspector     11.1.1.4.37.59.23     Loaded
Quick Start Features for Web Applications     quickstart.webapp.dt     11.1.1.4.37.59.23     Loaded
QuickDiff     oracle.ide.quickdiff     11.1.1.4.37.59.23     Loaded
REST Web Services     oracle.jdeveloper.webservice.rest     11.1.1.4.37.59.23     Loaded
Refactoring     oracle.jdeveloper.refactoring     11.1.1.4.37.59.23     Loaded
Replace With     oracle.ide.replace     11.1.1.4.37.59.23     Loaded
Reports Extension     oracle.javatools.report     11.1.1.4.37.59.23     Loaded
Resource Bundle Support     oracle.ide.resourcebundle     11.1.1.4.37.59.23     Loaded
Resource Bundle Support for Properties Files     oracle.jdeveloper.resourcebundle.props     11.1.1.4.37.59.23     Loaded
Resource Catalog Application Server Adapter     oracle.jdeveloper.asadapter     11.1.1.4.37.59.23     Loaded
Resource Catalog DB UI extension     oracle.jdeveloper.db.rcadapter.ui     11.1.1.4.37.59.23     Loaded
Resource Catalog Database Adapter     oracle.jdeveloper.rcdbadapter     11.1.1.4.37.59.23     Loaded
Resource Catalog WSIL Adapter     oracle.jdeveloper.rcwsiladapter     11.1.1.4.37.59.23     Loaded
Resource Lookup     oracle.jdeveloper.rclookup     11.1.1.4.37.59.23     Loaded
Runner     oracle.ide.runner     11.1.1.4.37.59.23     Loaded
SQL*Plus Integration     oracle.jdeveloper.db.sqlplus     11.1.1.4.37.59.23     Loaded
SQLJ     oracle.jdeveloper.sqlj     11.1.1.4.37.59.23     Loaded
Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
SearchBar Commands     oracle.ide.searchbar.commands     11.1.1.4.37.59.23     Loaded
Searchbar Preferences     oracle.ide.searchbar.preferences     11.1.1.4.37.59.23     Loaded
Snippet Window     oracle.sqldeveloper.snippet     11.1.1.64.46     Loaded
Struts Page Flow Modeler     oracle.struts     11.1.1.4.37.59.23     Loaded
Studio     oracle.studio     11.1.1.4.37.59.23     Loaded
Studio extension help     oracle.studio.help     11.1.1.0.0     Loaded
Template     oracle.ide.ceditor-template     11.1.1.4.37.59.23     Loaded
TopLink     oracle.toplink     11.1.1.4.37.59.23     Loaded
Trinidad Databinding Design Time     oracle.trinidad-databinding-dt     11.1.1.4.37.59.23     Loaded
Trinidad Design Time     oracle.trinidad-dt     11.1.1.4.37.59.23     Loaded
UDDI Resource Catalogue Provider     oracle.jdevimpl.uddiadapter     11.1.1.4.37.59.23     Loaded
UML XMI     oracle.uml.v2.xmi     11.1.1.4.37.59.23     Loaded
UML v2     oracle.uml.v2     11.1.1.4.37.59.23     Loaded
UML v2 Activity Modeler     oracle.uml.v2.activity     11.1.1.4.37.59.23     Loaded
UML v2 Class Diagram     oracle.uml.v2.clazz     11.1.1.4.37.59.23     Loaded
UML v2 Migration     oracle.uml.v2.migrate     11.1.1.4.37.59.23     Loaded
UML v2 Sequence Diagram     oracle.uml.v2.sequence     11.1.1.4.37.59.23     Loaded
UML v2 Transformation to Java     oracle.uml.v2.umljava     11.1.1.4.37.59.23     Loaded
UML v2 Use Case Diagram     oracle.uml.v2.usecase     11.1.1.4.37.59.23     Loaded
UML2 Modelers Common Classes     oracle.uml.v2.modeler     11.1.1.4.37.59.23     Loaded
URL Connection Designtime     oracle.jdevimpl.urlconn     0     Loaded
VHV     oracle.ide.vhv     11.1.1.4.37.59.23     Loaded
Versioning Support     oracle.jdeveloper.vcs     11.1.1.4.37.59.23     Loaded
Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.4.37.59.23     Loaded
Virtual File System     oracle.ide.vfs     11.1.1.4.37.59.23     Loaded
WSDL Chooser     oracle.jdeveloper.wsdllookup     11.1.1.0.0     Loaded
WSDL web services extension     oracle.jdevimpl.wsdl     11.1.1.4.37.59.23     Loaded
Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.4.37.59.23     Loaded
Web Services     oracle.jdeveloper.webservice     11.1.1.4.37.59.23     Loaded
WebDAV Connection Support     oracle.jdeveloper.webdav2     11.1.1.4.37.59.23     Loaded
WebStart     oracle.j2ee.webstart     11.1.1.0.0     Loaded
XML Compare     oracle.jdeveloper.xml-compare     11.1.1.4.37.59.23     Loaded
XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.4.37.59.23     Loaded
XML Editing Framework Java Integration     oracle.jdeveloper.xmlef     11.1.1.4.37.59.23     Loaded
XSL Mapper     oracle.bpm.mapper     11.1.1.4.0.56.82     Loaded
adf-deploy-dt     oracle.adfdt.common.deploy     11.1.1.4.37.59.23     Loaded
adf-deploy-dt-mds     oracle.adfdt.common.deploy.mds     11.1.1.4.37.59.23     Loaded
adf-installer-ide     adf.installer.dt     11.1.1.4.37.59.23     Loaded
adf-logging-dt     oracle.adf.logging.dt     11.1.1.4.37.59.23     Loaded
adf-model-debugger-dt     oracle.adf-model-debugger-dt     11.1.1.4.37.59.23     Loaded
adf-model-sqldc-ide     oracle.adfm.sqldc     11.1.1.4.37.59.23     Loaded
adf-model-tools     oracle.adf.model.tools     11.1.1.4.37.59.23     Loaded
adf-security-policy-dt     oracle.adfdtinternal.adf-security-policy-dt     11.1.1.4.37.59.23     Loaded
adf-share-audit     oracle.adf-share-audit     11.1.1.4.37.59.23     Loaded
adf-share-deploy-dt     oracle.adf.share.deploy.dt     11.1.1.4.37.59.23     Loaded
adf-share-dt     oracle.adf.share.dt     11.1.1.4.37.59.23     Loaded
adfm-business-editor-deploy     oracle.adf.businesseditor.deploy     11.1.1.4.37.59.23     Loaded
adfm-business-editor-ide     oracle.adf.model.businesseditor     11.1.1.4.37.59.23     Loaded
adfm-business-editor-settings-ide     oracle.adfm.businesseditor.settings     11.1.1.4.37.59.23     Loaded
adfmcoredt-xdf     oracle.adfm.xdf     11.1.1.4.37.59.23     Loaded
adfquerylovdt     oracle.adf-faces-query-and-lov-dt     11.1.1.4.37.59.23     Loaded
appoverview     oracle.ide.appoverview     11.1.1.4.37.59.23     Loaded
asnav-weblogic     oracle.jdeveloper.asnav.weblogic     11.1.1.4.37.59.23     Loaded
audit     oracle.ide.audit     11.1.1.4.37.59.23     Loaded
audit-core     oracle.ide.audit.core     11

Hi Harry (and others),
I have seen similar behavior. It seems like the client side rendering for some reason has a hard time processing the collection model wrapping the ArrayList in this particular case. The table renders empty. After sorting in ascending order, the rows are all back (visible) again.
Is anyone aware of issues with the rich table based directly on ArrayList (in combination with a changing set of values and/or sorting)? (seems like a corner case but is still not uncommon). Is there any indication that wrapping the ArrayList in a CollectionModel ourselves might be required?
Harry: do you know whether this issue is introduced with PS3 (11.1.1.4) or already existed in previous releases?
kind regards,
Lucas

Similar Messages

  • I cant play any videos all of a sudden after avg detected and removed a malware....

    after avg detected and removed a malware, i cant
    watch any videos... i click on a video and it tells
    me i need to downlod the latest version of flashplayer....i d
    o all that and try a video again and it tells me over and over the same thing!!!!
    i downloaded firefox and it works fine...i dont want to go around the probl
    em...i want to fix it!

    Since you mention Firefox, I assume that the original problem is with Internet Explorer?
    If so, check if that malware has the "kill-bit" set for Flash Player: http://forums.adobe.com/message/3432049#3432049
    If you find that this "kill-bit" is set in your registry, don't remove it manually (unless you are very confident editing the registry); post back here, and someone will post an easy way to remove that "kill-bit".

  • Reporting Services Error after Interactive sorting and drill down in pps

    Hi 
    i have a report  that has a drill down option that shows all workgroups within a specific  parent group and an interactive sorting ass well on both columns  parent group &  workgroup 
    This is displayed  in pps combined with a SharePoint
    ---the problem is that after sorting the parent group column by name   i then press the drill through icon  (+) next to it hopping to see all workgroups related to each parent group
      - but instead 
    i receive this Reporting Services Error  :
    The value for parameter 'SortItem' is not specified. It is either missing from the function call, or it is set to null. (rsMissingParameter) Get
    Online Help       
    If I don't press the sorting and just drill through it works fine. the sorting itself also works fine. 
    any suggestions ?
     

    Hi Hyaron,
    I am unable to reproduce the issue in my test environment. How did you add the drilldown feature? Were you doing that by setting visibility of the column or of the group? Please ensure to add the drilldown functionality by set the visibility of the workgroup
    from the Grouping Pane in the Report Designer.
    How did you add the Interactive Sorting on the headers of the two columns? Based on the drilldown functionality, the Interactive Sorting on the second column doesn’t work. So, you can move the Interactive Sorting on the second column. When configuring the
    Interactive sorting on the first column, you should set the parent group to sort, and sort by the field that the parent group groups by.
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Community Support

  • BUG AIR Webkit : referrer empty after a redirect

    Hi all,
    I've noticed a bug with AIR 1.5.1 : the document.referrer is empty just after a HTTP redirection (status code 302).
    As a consequence, the referer for the final page is "http://adobe.com/apollo".
    I don't known if it's due to the Webkit port done by the AIR team or else a bug in the Webkit trunk.
    How can I make it fixed?
    Regards,
    jp

    This bug is not related to Flex (I don't use Flex). It's reproduced with only the AIR SDK 1.5.1 (that containins webkit version 34190). It's a pure AIR html application. Where can I post this AIR/webkit bug?

  • Importing from After Effects - Curves and Remove Grain

    I did some color grading in After Effects, I applied two Color Corrections: 1) "Curves" and 2) "Remove Grain".
    However when I exported to into a Premiere Pro Project and then imported it as a project into CS5.5, it said "The preset used by one or more sequences in the project  requires third party components that could not be located...."
    Then it said
    "Video Filter missing:  AE.ADBE CurvesCustom
    Video Filter missing:  AE.VISINF Grain Removal"
    Where can I get these?
    PS: I have the original boxed FULL VERSION of CS5.5 Master Collection.

    shooternz, I guess it's quite clear what  ectobuilder50 is talking about.
    He created a composition within AE, applied some filters on footage and then exported this composition as Pr Pro project.
    Then he tried to open that project in Pr Pro and got this:
    ectobuilder50, I'd recommend you to use Adobe Dynamic Link instead.
    Create a composition within AE and apply any filters and/or presets you like, then just save AE project.
    Create a brand new or open existing Pr Pro project, then use File -> Adobe Dynamic Link -> Import After Effect Composition... if you are on Windows or smth like this if you are on Mac:

  • Uninstall firefox after trying add and remove akso Mozilla,s instructions

    I am using Mozilla Firefox version !8.0(x86 en gb on windows Xp) I wish to un-install Mozilla Firefox. I tried the usual "Add and Remove" from Control Panel, this did not work which in its self is odd. I then tried the Mozilla site and followed those instructions which failed also.It makes me feel uncomfortable that removing a program is made so difficult
    Please advise
    Mike R

    Seeing a couple of errors in the system log is not that unusual, but the number you are seeing is indicating a real problem.
    Did you double-click any of the errors in System Events? It would open a pop-up and give more detailed information on the error and usually has a link to the Microsoft help website concerning that specific error. It is likely the "msi" error is significant, as that is a Microsoft installer file (often used for uninstall also). It seems that either Control Panel is messing up or the msi process is crashing for some reason. The information in that error may contain the answer. If there are error numbers, you could do a search for that error number.
    When you say you "re-formatted" your computer, what exactly do you mean? Did you re-install Windows?
    SparkTrust PC Cleaner could possibly be the culprit. Security software, by design, watches for processes that try to make changes to your computer. Along with cleaning, it also claims to "optimize" the registry, which can lead to big trouble if a critical key is removed by accident. I use Registry Mechanic, but with any cleaner, I never allow it to make changes until I have a chance to examine each proposed change. The first "automatic" registry cleaner I used 15 years ago did severe damage to my machine. Windows became unbootable because of registry damage. I ended up having to re-install Windows from scratch.
    PC Cleaner should not have disabled System Restore. If you haven't made any large installs or changes, System Restore simply may not have created a restore point. But there should have been at least the original when you installed Windows. To verify the settings, right click on "My Computer" and choose "Properties". There should be a System Restore tab where you can verify the allowed size and whether or not it is active.
    It is generally a good idea to manually tell System Restore to create a restore point on occasion, on a day when everything is working as it should.
    Is there a way to temporarily disable SparkTrust? It might be possible it sees the uninstall action as some kind of malware and won't allow it to run. That is simply a guess, but it is generally good policy to disable active security software during an installation (of trusted software), as the security software may interfere with the processes.
    I really don't believe Firefox is the culprit here. I think there is a problem with Windows. I have been using Firefox for well over a decade and have never had an uninstall problem.
    If you can copy and paste error details for the event log, I may be able to learn more.

  • How do you sort and remove DUPLICATE BOOKMARKS?

    when i import bookmarks from another browser it creates duplicates . how do i identify & remove them?

    Go to the '''''[https://addons.mozilla.org/en-US/firefox/ Mozilla Add-ons Web Page]''''' {web link}
    (There’s a lot of good stuff here) and search for what you want.
    Check these out;
    '''[https://addons.mozilla.org/en-US/firefox/addon/bookmarks-checker/?src=collection&collection_id=33bf10fa-666d-45a2-9bc9-491ce21671c6 Bookmarks Checker - check for bad links]''' {web link}
    Check favorites for broken or bad links. It checks for bad links and displays a report if it finds
    something. Check for 404 links, timeout links.
    '''[https://addons.mozilla.org/en-US/firefox/addon/bookmark-duplicate-cleaner/?src=external-Add-ons_Manager_Context_Menu-extension Bookmark Duplicate Cleaner]''' {web link}
    Scans for bookmark duplicates and allows you to delete them

  • Windows 7: After re-installing and removing, FireFox won't work

    Hello,
    I have recently been having problems getting FireFox to work. It was working perfectly fine yesterday, and now today it's not. I have been getting errors:
    "The procedure entry point SAMCLI.NetUserGetInfo could not be located in the dynamic link library NETAPI32.dll."
    And followed by:
    "Couldn't load XPCOM."
    Sometimes the second error only shows up, but mainly it's just these. I've deleted the FireFox folder out of my Program Files and re-installed. Didn't work. I've tried multiple FireFox versions:
    -Regular Firefox
    -FireFox Beta
    -Nightly
    I've done just about everything, and still no luck. My friend recommended I ask here for assistance. I would appreciate any help!

    Try to install Firefox in a different program program folder via a custom install.
    You can also try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.

  • I installed Yealt and after unistalling it and removing ti from my computer, I still have a search bar tab in mozialla and I can't get rid of it.

    The yealt website said I could remove it from the add-ons manager, but it is not showing up in the add-ons manager, even when I run a search for it.

    The rest worked perfectly, thank you :)

  • Lost sound on iMac after plugging in and removing headphones

    Hello, I have a 2006 24 inch Intel Core 2 Duo iMac. It generally works just fine. I run the latest version of Lion.
    However a new problem has started.
    Let's say I am listening to music through the iMac's speaker. That works fine. I then plug my iPhone earphone in or Boss headphones in to the iMac and I get no sound through the headphones.
    I then pull the 1/8th plug out and I now no longer get sound through the speakers.
    The volume is up, it isn't on mute, etc but I get no sound through the speakers or devices plugged into the headphones.
    In the sound syste preferences, the output is set to Internal Speakers, the output volume is set at half and it isn't muted.
    The only way to get the sound back is to restart the machine.
    HELP!
    Thanks
    Andrew

    I don't know if this answers your question at all but I use a program called SoundSource to manager my inputs for the speakers and mic volume when I'm using Skype. This might be something you can use if you're having issues with the volume controls. It stays in the menu bar of the OS and I don't know what I'd do without it.

  • RW_SERVER_JOB_QUEUE  table empty after running the report in 11g

    Hello,
    I set up Job StatusRepository in our environment ( Fusion Middleware 11.1.1.4 Win 2008 x32) as explained in Oracle Support note "How to Setup jobStatusRepository Feature in Reports 11g? [ID 858200.1]"
    The table RW_SERVER_JOB_QUEUE is always empty after running the report.
    I have checked another note "RW_SERVER_JOB_QUEUE table is empty [ID 1200613.1]" but the user who is running the report is the same as the user who " the user name where you run $ORACLE_HOME\reports\admin\sql\rw_server.sql script" so there is no grant problem to write to this table.
    Here is the excerpt of rwserver.conf file:
    <demo:jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <demo:property value="csf:reports:repo" name="dbpassword"/>
    <demo:property value="blvdev" name="dbconn"/>
    <demo:property value="pdmain" name="dbuser"/>
    </demo:jobStatusRepository>
    I n log file there is an error:
    Apr 11, 2012 10:29:13 AM oracle.security.jps.internal.credstore.ssp.CsfWalletManager openWallet
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    Have anybody had the same issue in 11g?
    Thanks,
    Alex

    Here is the solution I found and I would like to share if anybody is interested :
    Check the following Oracle Support Notes:
    ALERT - After Applying Patchset 11.1.1.4, Fusion Middleware Control Inserts "demo:" Tags in Conf Files of Reports Server- ENVID Section Stops Working [ID 1298701.1]
         After applying patchset 11.1.1.4 to Reports Server, any configuration changes through Fusion Middleware Control inserts "demo:" tags in the beginning of each line in conf file of Report Server.
         The behaviour is described in the following bug :
         Bug:11784251 MBEAN BROWSER ADDS A DEMO TAG IN RWSERVER.CONF AT EACH LINE
    So you I removed all demo tags in rwserver.conf
    <jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property value="csf:reports:jobrepo" name="dbpassword"/>
    <property value="repteam.us.oracle.com" name="dbconn"/>
    <property value="jobrep11g" name="dbuser"/>
    </jobStatusRepository>
    Regarding : PKI-02002 error:
    Error PKI-02002: Unable to open the wallet. Check password When Starting a Reports Server [ID 1316651.1]
    Temporary file cannot be created in temporary directory.
    After checking the wallet I simply changed the following lines
         <variable id="TEMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
         <variable id="TMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
    to
         <variable id="TEMP" value="C:\TEMP"/>
         <variable id="TMP" value="C:\TEMP"/>
    because the folder C:\Users\oracle\AppData\Local\Temp\2 was not created.
    Regards,
    Alex
    Edited by: user12019587 on 11-Apr-2012 2:50 PM

  • Java process table empty after upgrade solution manager 7.1 Sp10

    Hi Experts,
    I have installed solution manager 7.1 SP3 and completed the SP10 patch upgrade using SUM tool. The upgrade was completed successfully. After upgrade igswd was red. Then i copied the Igs files in kernel files. Now ABAP instance and Igs is working now but JAVA is not coming up. JAVA process table also empty. Can any one help me to solve this issue. Attached the error for reference.
    trc file: "dev_disp", trc level: 1, release: "721"
    sysno      00
    sid        VSM
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    201
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\VKCSOL\sapmnt\VSM\SYS\profile\VSM_DVEBMGS00_VKCSOL
    pid        5448
    kernel runs with dp version 138000(ext=120000) (@(#) DPLIB-INT-VERSION-138000-UC)
    length of sys_adm_ext is 592 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 5448) [dpxxdisp.c   1316]
      shared lib "dw_xml.dll" version 201 successfully loaded
      shared lib "dw_xtc.dll" version 201 successfully loaded
      shared lib "dw_stl.dll" version 201 successfully loaded
      shared lib "dw_gui.dll" version 201 successfully loaded
      shared lib "dw_mdm.dll" version 201 successfully loaded
      shared lib "dw_rndrt.dll" version 201 successfully loaded
      shared lib "dw_abp.dll" version 201 successfully loaded
      shared lib "dw_sym.dll" version 201 successfully loaded
      shared lib "dw_aci.dll" version 201 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Tue Apr 01 19:02:09 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 6 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6479]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    display_tcp_ip: 0
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >VKCSOL_VSM_00                           <
    DpShMCreate: sizeof(wp_adm) 42864 (2256)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2160)
    DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000DDE0050, size: 7174832)
    DpShMCreate: allocated sys_adm at 000000000DDE0060
    DpShMCreate: allocated wp_adm_list at 000000000DDE30B0
    DpShMCreate: allocated wp_adm at 000000000DDE32A0
    DpShMCreate: allocated tm_adm_list at 000000000DDEDA20
    DpShMCreate: allocated tm_adm at 000000000DDEDA70
    DpShMCreate: allocated wp_ca_adm at 000000000E330980
    DpShMCreate: allocated appc_ca_adm at 000000000E340390
    DpShMCreate: allocated comm_adm at 000000000E34FDA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000E4A1C40
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 000000000E4A1CF0
    DpShMCreate: allocated j2ee_adm at 000000000E4A1D30
    DpShMCreate: allocated ca_info at 000000000E4A2CB0
    DpShMCreate: allocated wall_adm at 000000000E4A2D40
    DpCommAttachTable: attached comm table (header=000000000E34FDA0/ft=000000000E34FDB0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (10 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 16383MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 16384MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 4095 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 192 MB
    mm.dump: set global maximum dump mem to 192 MB
    EsRegisterEmCheck: Register EmGetEsHandles at 000000013FC48640
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5824
      argv[0] = D:\usr\sap\VSM\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\VSM\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=\\VKCSOL\sapmnt\VSM\SYS\profile\VSM_DVEBMGS00_VKCSOL
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=65000
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=VSM
      argv[7] = -DSAPMYNAME=VKCSOL_VSM_00
      argv[8] = -DSAPPROFILE=\\VKCSOL\sapmnt\VSM\SYS\profile\VSM_DVEBMGS00_VKCSOL
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1702]
    ***LOG Q0K=> DpMsAttach, mscon ( VKCSOL) [dpxxdisp.c   12707]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >VKCSOL_VSM_00                           <)
    DpStartStopMsg: start msg sent
    CCMS: Initialized monitoring segment of size 60000000.
    CCMS: Initialized CCMS Headers in the shared monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: AlMsUpload called by wp 1024.
    Tue Apr 01 19:02:10 2014
    01.04.2014 13:32:10.628 PID=5448, TID=5744 SapTimer info. QPC/Windows time mismatch. System suspended, busy, missing ticks. Mismatch QpcTime-WindowsTime:  -168 millisec (max +0). Slept 1000 millisec, Qpc elapsed: +1000 millisec, WindowsUtc elapsed +1168 millisec. SapTime-WindowsUtcTime=-1 seconds. TotalTimeCorrection=+0 millisec, QpcTime-WindowsUtcTime=-1028 millisec (*).
    Tue Apr 01 19:02:11 2014
    CCMS: AlMsUpload successful for D:\usr\sap\VSM\DVEBMGS00\log\ALMTTREE.DAT (2189 MTEs).
    Tue Apr 01 19:02:13 2014
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    Tue Apr 01 19:02:21 2014
    DpModState: change server state from STARTING to ACTIVE
    Tue Apr 01 19:02:23 2014
    ***LOG Q0I=> NiIRead: P=127.0.0.1:61107; L=127.0.0.1:65000: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 5086]
    *** ERROR => NiIRead: SiRecv failed for hdl 33/sock 1008
        (SI_ECONN_BROKEN/10054; I4; ST; P=127.0.0.1:61107; L=127.0.0.1:65000) [nixxi.cpp    5086]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=5824)
    *** ERROR => DpProcKill: kill failed [dpntdisp.c   397]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Regards
    Jose H.

    Hi Ashutosh,
    Thanks for your immediate reply. Please find the log below.
    trc file: "dev_server0", trc level: 1, release: "721"
    node name   : ID3506750
    pid         : 8068
    system name : VSM
    system nr.  : 00
    started at  : Sat Mar 29 13:41:08 2014
    arguments  :
       arg[00] : D:\usr\sap\VSM\DVEBMGS00\exe\jlaunch.exe
       arg[01] : pf=D:\usr\sap\VSM\SYS\profile\VSM_DVEBMGS00_VKCSOL
       arg[02] : -DSAPINFO=VSM_00_server
       arg[03] : pf=D:\usr\sap\VSM\SYS\profile\VSM_DVEBMGS00_VKCSOL
       arg[04] : -DSAPSTART=1
    Used property files
    -> files [00] : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    Bootstrap nodes
    -> [00] bootstrap            : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID3506700  : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID3506750  : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID3506700            : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    -> [01] ID3506750            : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties
    JStartupReadInstanceProperties: read instance properties [D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\instance.properties]
    -> ms host    : VKCSOL
    -> ms port    : 3901
    -> OS libs    : D:\usr\sap\VSM\DVEBMGS00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : safe
    -> run action : UPGRADE
    -> enabled    : yes
    [Thr 19300] Sat Mar 29 13:41:08 2014
    [Thr 19300] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 19300] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 19300] JLaunchInitSignalHandling: signal handling is disabled
    [Thr 4928] WaitSyncSemThread: Thread 4928 started as semaphore monitor thread.
    [Thr 23444] JLaunchRequestFunc: Thread 23444 started as listener thread for np messages.
    [Thr 19300] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=32768;cur=2048)
    [Thr 19300] MPI: dynamic quotas disabled.
    [Thr 19300] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    [Thr 19300] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    [Thr 19300] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    [Thr 19300] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    [Thr 19300] CCMS: CCMS Monitoring Initialization finished, rc=0.
    [Thr 19300] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) - using -Xmx2048m [jstartxx.c   2800]
    [Thr 19300] JStartupICheckFrameworkPackage: can't find framework package D:\usr\sap\VSM\DVEBMGS00\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID3506750]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4
    -> java parameters    : -XX:MaxNewSize=600M -XX:NewSize=600M -XX:MaxPermSize=512M -XX:PermSize=512M -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:TargetSurvivorRatio=90 -XX:SurvivorRatio=4 -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -verbose:gc -XX:SoftRefLRUPolicyMSPerMB=1 -XX:HeapDumpPath=OOM.hprof -XX:+HeapDumpOnOutOfMemoryError -Djco.jarm=1 -Djava.awt.headless=true -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dsun.io.useCanonCaches=false -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Dcom.sap.jvm.scenario=j2ee -XX:+JavaMonitorsInStackTrace -Xbootclasspath/p:D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/connectors/AutoProbeConnector.jar;D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/Agent.jar -Dcom.wily.introscope.agent.agentName=VSM_DVEBMGS00_server0 -Dcom.wily.introscope.agentProfile=D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/IntroscopeAgent.profile -Dstartup.mode=SAFE -Dstartup.action=UPGRADE
    -> java vm version    : 4.1.024 1.6-b04
    -> java vm vendor     : SAP Java Server VM (SAP AG)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> stack size         : 2M
    -> root path          : D:\usr\sap\VSM\DVEBMGS00\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : D:\usr\sap\VSM\DVEBMGS00\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : D:\usr\sap\VSM\DVEBMGS00\exe\jstartup.jar;D:\usr\sap\VSM\DVEBMGS00\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50021
    -> shutdown timeout   : 120 sec.
    [Thr 19300] JLaunchISetDebugMode: set debug mode [no]
    [Thr 9092] JLaunchIStartFunc: Thread 9092 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 2097152 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -XX:MaxNewSize=600M
    -> arg[  4]: -XX:NewSize=600M
    -> arg[  5]: -XX:MaxPermSize=512M
    -> arg[  6]: -XX:PermSize=512M
    -> arg[  7]: -XX:+UseConcMarkSweepGC
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -XX:TargetSurvivorRatio=90
    -> arg[ 10]: -XX:SurvivorRatio=4
    -> arg[ 11]: -XX:+PrintGCDetails
    -> arg[ 12]: -XX:+PrintGCTimeStamps
    -> arg[ 13]: -verbose:gc
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:HeapDumpPath=OOM.hprof
    -> arg[ 16]: -XX:+HeapDumpOnOutOfMemoryError
    -> arg[ 17]: -Djco.jarm=1
    -> arg[ 18]: -Djava.awt.headless=true
    -> arg[ 19]: -Djava.security.policy=./java.policy
    -> arg[ 20]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 21]: -Dsun.io.useCanonCaches=false
    -> arg[ 22]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 23]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 24]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 25]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 26]: -Dcom.sap.jvm.scenario=j2ee
    -> arg[ 27]: -XX:+JavaMonitorsInStackTrace
    -> arg[ 28]: -Xbootclasspath/p:D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/connectors/AutoProbeConnector.jar;D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/Agent.jar
    -> arg[ 29]: -Dcom.wily.introscope.agent.agentName=VSM_DVEBMGS00_server0
    -> arg[ 30]: -Dcom.wily.introscope.agentProfile=D:/usr/sap/DAA/SMDA97/SMDAgent/applications.config/com.sap.smd.agent.application.wily/BytecodeAgent/ISAGENT.8.2.3.5-2011-09-13/wily/IntroscopeAgent.profile
    -> arg[ 31]: -Dstartup.mode=SAFE
    -> arg[ 32]: -Dstartup.action=UPGRADE
    -> arg[ 33]: -Dsys.global.dir=D:\usr\sap\VSM\SYS\global
    -> arg[ 34]: -Dapplication.home=D:\usr\sap\VSM\DVEBMGS00\exe
    -> arg[ 35]: -Djava.class.path=D:\usr\sap\VSM\DVEBMGS00\exe\jstartup.jar;D:\usr\sap\VSM\DVEBMGS00\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 36]: -Djava.library.path=D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\jre\bin\server;D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\jre\bin;D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\bin;D:\usr\sap\VSM\DVEBMGS00\j2ee\os_libs;D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\jre\bin\server;D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\jre\bin;D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\bin;D:\usr\sap\VSM\DVEBMGS00\j2ee\os_libs;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;D:\usr\sap\VSM\DVEBMGS00\exe;D:\usr\sap\VSM\SYS\exe\uc\NTAMD64
    -> arg[ 37]: -Dmemory.manager=2048M
    -> arg[ 38]: -Xmx2048M
    -> arg[ 39]: -Xms2048M
    -> arg[ 40]: -Xss2M
    -> arg[ 41]: -DLoadBalanceRestricted=no
    -> arg[ 42]: -Djstartup.mode=JCONTROL
    -> arg[ 43]: -Djstartup.ownProcessId=8068
    -> arg[ 44]: -Djstartup.ownHardwareId=I0649086862
    -> arg[ 45]: -Djstartup.whoami=server
    -> arg[ 46]: -Djstartup.debuggable=no
    -> arg[ 47]: -Xjvmx
    -> arg[ 48]: -XsapSystem=00
    -> arg[ 49]: -XmonGcCallback
    -> arg[ 50]: -DSAPINFO=VSM_00_server
    -> arg[ 51]: -DSAPSTART=1
    -> arg[ 52]: -DSAPSTARTUP=1
    -> arg[ 53]: -DSAPSYSTEM=00
    -> arg[ 54]: -DSAPSYSTEMNAME=VSM
    -> arg[ 55]: -DSAPMYNAME=VKCSOL_VSM_00
    -> arg[ 56]: -DSAPDBHOST=VKCSOL
    -> arg[ 57]: -Dj2ee.dbhost=VKCSOL
    (CompilerOracle read from file D:\usr\sap\VSM\DVEBMGS00\exe\sapjvm_4\jre\.hotspot_compiler)
    [Thr 9092] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 20084] Sat Mar 29 13:41:10 2014
    [Thr 20084] JHVM_RegisterNatives: com.sap.bc.krn.perf.PerfTimes
    2.781: [GC 2.781: [ParNew: 409600K->2306K(512000K), 0.0126041 secs] 409600K->2306K(1994752K), 0.0127881 secs] [Times: user=0.05 sys=0.00, real=0.01 secs]
    [Thr 20084] Sat Mar 29 13:41:11 2014
    [Thr 20084] JHVM_RegisterNatives: com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 20084] JLaunchISetClusterId: set cluster id 3506750
    [Thr 20084] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 20084] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Sat Mar 29 13:41:23 2014
    15.071: [GC 15.071: [ParNew: 411906K->16315K(512000K), 0.0306641 secs] 411906K->16315K(1994752K), 0.0309011 secs] [Times: user=0.13 sys=0.00, real=0.03 secs]
    Sat Mar 29 13:41:32 2014
    24.118: [GC 24.118: [ParNew: 425915K->29114K(512000K), 0.0363407 secs] 425915K->29114K(1994752K), 0.0365634 secs] [Times: user=0.11 sys=0.02, real=0.04 secs]
    [Thr 18736] Sat Mar 29 13:41:38 2014
    [Thr 18736] JHVM_RegisterNatives: com.sap.mona.api.JMonAPI
    [Thr 18736] CCMS: openMonitoringSegment(): inside static JMON Lib: already connected.
    [Thr 17644] JHVM_RegisterNatives: com.sap.mw.rfc.driver.CpicDriver
    [Thr 19340] JHVM_RegisterNatives: com.sap.security.core.server.vsi.service.jni.VirusScanInterface
    [Thr 7816] Sat Mar 29 13:41:39 2014
    [Thr 7816] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7816] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 25/sock 7884
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17936] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17936] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 17/sock 7888
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    31.816: [GC 31.816: [ParNew[Thr 21936] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 21936] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 1/sock 7856
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 2800] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 2800] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 9/sock 7860
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    : 438714K->67978K(512000K), 0.0626636 secs] 438714K->67978K(1994752K), 0.0628963 secs] [Times: user=0.11 sys=0.08, real=0.06 secs]
    [Thr 7276] Sat Mar 29 13:41:40 2014
    [Thr 7276] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7276] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 7988
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 24572] Sat Mar 29 13:41:42 2014
    [Thr 24572] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24572] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 8132
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 5092] Sat Mar 29 13:41:43 2014
    [Thr 5092] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5092] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 8088
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 20084] JLaunchISetState: change state from [Starting (2)] to [Starting applications (10)]
    [Thr 24276] Sat Mar 29 13:41:44 2014
    [Thr 24276] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24276] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 8480
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 1316] Sat Mar 29 13:41:45 2014
    [Thr 1316] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 1316] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 9292
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 13068] Sat Mar 29 13:41:46 2014
    [Thr 13068] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 13068] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 9736
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 19652] JLaunchISetState: change state from [Starting applications (10)] to [Running (3)]
    [Thr 17680] Sat Mar 29 13:41:47 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 9736
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 23760] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 23760] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 10/sock 5976
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:41:48 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 9736
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:41:49 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 9736
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:41:50 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6272
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 5348] Sat Mar 29 13:41:51 2014
    [Thr 5348] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5348] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 6336
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17548] Sat Mar 29 13:41:52 2014
    [Thr 17548] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17548] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6548
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 4216] Sat Mar 29 13:41:53 2014
    [Thr 4216] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 4216] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 6424
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 23788] Sat Mar 29 13:41:54 2014
    [Thr 23788] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 23788] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 6844
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6100] Sat Mar 29 13:41:55 2014
    [Thr 6100] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6100] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 7448
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6828] Sat Mar 29 13:41:56 2014
    [Thr 6828] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6828] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6216
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 644] Sat Mar 29 13:41:57 2014
    [Thr 644] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 644] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 5992
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 7376] Sat Mar 29 13:41:58 2014
    [Thr 7376] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7376] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6136
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 24096] Sat Mar 29 13:41:59 2014
    [Thr 24096] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24096] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 6004
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 24460] Sat Mar 29 13:42:00 2014
    [Thr 24460] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24460] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6276
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 13452] Sat Mar 29 13:42:01 2014
    [Thr 13452] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 13452] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 7328
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17884] Sat Mar 29 13:42:03 2014
    [Thr 17884] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17884] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 7372
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6616] Sat Mar 29 13:42:04 2014
    [Thr 6616] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6616] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 7200
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 3136] Sat Mar 29 13:42:05 2014
    [Thr 3136] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 3136] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6344
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 8284] Sat Mar 29 13:42:06 2014
    [Thr 8284] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 8284] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 7380
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 19240] Sat Mar 29 13:42:07 2014
    [Thr 19240] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 19240] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6940
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 21316] Sat Mar 29 13:42:08 2014
    [Thr 21316] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 21316] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 5988
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 22436] Sat Mar 29 13:42:09 2014
    [Thr 22436] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 22436] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 7368
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 20936] Sat Mar 29 13:42:10 2014
    [Thr 20936] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 20936] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 7528
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 18784] Sat Mar 29 13:42:11 2014
    [Thr 18784] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 18784] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 4460
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 21320] Sat Mar 29 13:42:12 2014
    [Thr 21320] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 21320] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 6148
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 19632] Sat Mar 29 13:42:13 2014
    [Thr 19632] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 19632] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 5948
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 8684] Sat Mar 29 13:42:14 2014
    [Thr 8684] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 8684] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 6012
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 7468] Sat Mar 29 13:42:15 2014
    [Thr 7468] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7468] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6032
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 5588] Sat Mar 29 13:42:16 2014
    [Thr 5588] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5588] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 1032
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 2036] Sat Mar 29 13:42:17 2014
    [Thr 2036] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 2036] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6052
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 6692] Sat Mar 29 13:42:18 2014
    [Thr 6692] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6692] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 6188
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 5184] Sat Mar 29 13:42:19 2014
    [Thr 5184] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5184] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 6192
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 5604] Sat Mar 29 13:42:20 2014
    [Thr 5604] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5604] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 6220
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 15996] Sat Mar 29 13:42:21 2014
    [Thr 15996] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 15996] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6236
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:22 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 6236
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:23 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6236
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:24 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 6236
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:26 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6064
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 19856] Sat Mar 29 13:42:27 2014
    [Thr 19856] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 19856] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 6184
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 24128] Sat Mar 29 13:42:28 2014
    [Thr 24128] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24128] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 6248
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 13684] Sat Mar 29 13:42:29 2014
    [Thr 13684] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 13684] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 6260
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 7384] Sat Mar 29 13:42:30 2014
    [Thr 7384] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7384] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6264
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 7432] Sat Mar 29 13:42:31 2014
    [Thr 7432] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7432] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 6292
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6700] Sat Mar 29 13:42:32 2014
    [Thr 6700] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6700] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6304
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 7272] Sat Mar 29 13:42:33 2014
    [Thr 7272] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7272] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 6340
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 19864] Sat Mar 29 13:42:34 2014
    [Thr 19864] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 19864] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6392
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 5608] Sat Mar 29 13:42:35 2014
    [Thr 5608] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 5608] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 6404
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 7160] Sat Mar 29 13:42:36 2014
    [Thr 7160] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7160] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 6416
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 14536] Sat Mar 29 13:42:37 2014
    [Thr 14536] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 14536] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 7340
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 24404] Sat Mar 29 13:42:38 2014
    [Thr 24404] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24404] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6232
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 22756] Sat Mar 29 13:42:39 2014
    [Thr 22756] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 22756] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 6076
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6284] Sat Mar 29 13:42:40 2014
    [Thr 6284] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6284] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 7472
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 12696] Sat Mar 29 13:42:41 2014
    [Thr 12696] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 12696] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 35/sock 6380
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 24180] Sat Mar 29 13:42:42 2014
    [Thr 24180] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 24180] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 36/sock 6420
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 23444] Sat Mar 29 13:42:43 2014
    [Thr 23444] JLaunchRequestFunc: receive command:17, argument:0 from pid:20668
    [Thr 23444] JLaunchIShutdownInvoke: set shutdown interval (stop:1396080763/end:1396080883/TO:120)
    [Thr 23444] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 23444] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    [Thr 8780] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 8780] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    [Thr 5188] JHVM_RegisterNatives: com.sap.bc.proj.jstartup.sadm.ShmCache
    [Thr 7240] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 7240] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 37/sock 6376
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 6536] Sat Mar 29 13:42:44 2014
    [Thr 6536] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 6536] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 38/sock 6852
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 18244] Sat Mar 29 13:42:46 2014
    [Thr 18244] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 18244] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 39/sock 6348
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:47 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 32/sock 6348
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    [Thr 17680] Sat Mar 29 13:42:48 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 127.0.0.1:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 33/sock 6348
        (SI_ECONN_REFUSE/10061; I4; ST; 127.0.0.1:3300) [nixxi.cpp    3285]
    [Thr 22796] CCMS: closeMonitoringSegment(): inside static JMON Lib: nothing to do.
    [Thr 8780] JLaunchISetState: change state from [Stopping (5)] to [Stopped (6)]
    [Thr 17680] Sat Mar 29 13:42:49 2014
    [Thr 17680] ***LOG Q0I=> NiPConnect2: 192.168.10.62:3300: connect (10061: WSAECONNREFUSED: Connection refused) [nixxi.cpp 3285]
    [Thr 17680] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 34/sock 6348
        (SI_ECONN_REFUSE/10061; I4; ST; 192.168.10.62:3300) [nixxi.cpp    3285]
    Heap
    par new generation   reserved 614400K, committed 614400K, used 313963K [0x000000007fff0000, 0x00000000a57f0000, 0x00000000a57f0000)
      eden space 409600K,  60% used [0x000000007fff0000, 0x000000008f028658, 0x0000000098ff0000)
      from space 102400K,  66% used [0x0000000098ff0000, 0x000000009d2528e8, 0x000000009f3f0000)
      to   space 102400K,   0% used [0x000000009f3f0000, 0x000000009f3f0000, 0x00000000a57f0000)
    concurrent mark-sweep generation reserved 1482752K, committed 1482752K, used 0K [0x00000000a57f0000, 0x00000000ffff0000, 0x00000000ffff0000)
    concurrent-mark-sweep perm gen reserved 524288K, committed 524288K, used 70349K [0x00000000ffff0000, 0x000000011fff0000, 0x000000011fff0000)
    [Thr 18896] JLaunchIExitJava: exit hook is called (rc = 0)
    [Thr 18896] JLaunchCloseProgram: good bye (exitcode = 0)
    Regards
    Jose H.

  • Why is draw table empty after i import from memory id 'SAP_APPLICATION' ?

    Hello,
    I have the following
    data draw like draw.
    data intdraz like draz occurs 0 with header line.
    import draw
              intdraz
    from memory id 'SAP_APPICATION'
    at this point draw table is empty and does not contain the information of the selected file, so basically
    draw-DOKAR
    draw-DOKNR
    draw-DOKTL
    draw-DOKVR
    are all empty.
    does anyone know why this is happening ?
    thank you

    Hi Rushikesh,
    Dynamic table i have created with same structure as of internal table which is getting exported....
    thats why i m surprised how come structure mismatch.....i have checked in debugger, structure is same.....for both the tables,
    Can you/anyone give any example of Exporting internal table to MEMORY ID and getting it back (IMPORT) into dynamic internal table of same structure...
    Regards
    Munish Garg
    Edited by: MunishGarg on Feb 16, 2010 11:36 AM

  • I need to add check whether 21 fields of a internal table are empty or not.

    Hello,
    I need to add check whether 21 fields of a internal table are empty or not.How can we write a code for the same wand what would be the correct syntax for it.
    I tried entering all the fields in the IF loop with AND condition but its giving syntax error.Perhaps this is because the lenght of the IF condition would be more than the allowed one.

    Hi,
    After the select quiery.
    If not itab is initial.
    Message 'Table is not empty'    type 'I'.
    Endif.
    Regards,
    Jagadish.

  • Function module table returning empty rows but export data is getting

    Hi,
    I am executing function module through JCO after setting importing parameter and when i retrieve the table i get table with empty data 0 rows but i am able get export parameter data . when execute the same function module in abap through sap gui i get table containing 5 rows. what may be the problem. please find below code 
          function = getDefaultJCoConnection().getJCoFunction("ZCRM_ICSS_PROJ_CUST_USR");
                function.getImportParameterList().getField("USER_ID").setValue("MLDL010");
                getDefaultJCoConnection().execute(function);
                exportTable = function.getTableParameterList().getTable("PROJCUSTLIST");
                int rowsNumber = exportTable.getNumRows(); // companies table number of rows
                log.error("rowsNumber----"+String.valueOf(rowsNumber));
      try
         if (rowsNumber > 0)
         int i = 0;
         do
         tempString="table valuesZCOMP_ID"(String)exportTable.getValue("ZCOMP_ID")"ZCOMP_SPC-"+(String)exportTable.getValue("ZCOMP_SPC")
                     + "table valuesZCOMP_DESC"(String)exportTable.getValue("ZCOMP_DESC")"ZPRICE-"(String)exportTable.getValue("ZPRICE")"---" ;
         log.error(tempString);
         while (exportTable.nextRow());
         catch (Exception th)
         log.error("The following error occured: while retrieving table values ", th);
    Do you have any idea where may be the problem
    Regards,
    Pavan
    Edited by: Pavan Reddy on Apr 10, 2010 4:46 PM

    Hi Pavan,
    This could be the case. The function module might be expecting a value converted into its format.
    By this, I mean that the function module might be expecting 0012345678 for 12345678 (Where data element of the ID is of type CHAR 10 ).
    Please check if it is so.
    Best Regards,
    Kris.

Maybe you are looking for