Strange NullPointerException in "getLastPartOfName()"

I get a strange exception on creating a new row for a View.
The strange thing here is, that the exception is just thrown on one special view object in a special use case. There are six more viewobjects which have exactly the same structure and are, except from their names identical. These are working fine in the same use case.
I've no clue, what is happening here, so maybe someone, who has access to the BC4J-Sources, can give me a hint, what exactly is happening when this exception is thrown.
Even if you can't tell me the solution, please tell me, what the BC4J Framework is trying to do, when the exception is thrown. So this might help me to track this down.
continued...

oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(int[], oracle.jbo.server.EntityImpl[], oracle.jbo.AttributeList)
     ViewRowSetImpl.java:1384
oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(oracle.jbo.AttributeList)
     ViewRowSetImpl.java:1430
oracle.jbo.Row oracle.jbo.server.ViewRowSetImpl.createRow()
     ViewRowSetImpl.java:1406
oracle.jbo.Row oracle.jbo.server.ViewObjectImpl.createRow()
     ViewObjectImpl.java:5133
void oracle.jbo.html.jsp.datatags.RowTag.handleAction()
     RowTag.java:153
int oracle.jbo.html.jsp.datatags.RowTag.doStartTag()
     RowTag.java:121
void common.tags._zzTableRights._jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
[admin/rights/userareas/../../../common/tags/zzTableRights.jsp]
     zzTableRights.jsp:50
void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
     HttpJsp.java:139
     [SRC:/admin/rights/userareas/../../../common/tags/zzTableRights.jsp]
void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
     JspPageTable.java:317
void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.Http[i]Long postings are being truncated to ~1 kB at this time.

Similar Messages

  • Runtime.exec: strange NullPointerException

    Hi there!
    Since I'm using Runtime 1.4.1-b21 (Windows) it seems that I can't use Runtime.exec any more. The following example code doesn't work:
    public class Test
         public static void main(String[] args) throws Exception
              Runtime lRuntime = Runtime.getRuntime();
              Process lProcess = lRuntime.exec("last.exe");
    I get the following null pointer exception:
    D:\test>java Test
    Exception in thread "main" java.lang.NullPointerException
    at java.lang.Runtime.exec(Runtime.java:551)
    at java.lang.Runtime.exec(Runtime.java:491)
    at java.lang.Runtime.exec(Runtime.java:457)
    at Test.main(Test.java:23)
    I don't know why this happens. 'last.exe' is a simple command line tool. I can use any other program - same error!
    Greeting,
    Markus

    Hi,
    I am getting the same exception on Solaris on doing :
    rt.exec(command); //rt - Runtime object ; command - String[]
    java.lang.NullPointerException
    at java.lang.Runtime.exec(Runtime.java:551)
    at java.lang.Runtime.exec(Runtime.java:491)
    at java.lang.Runtime.exec(Runtime.java:457)
    I read through the article mentioned but could not figure out what could be causing the Null Pointer exception in the exec() method of Runtime.
    Any pointers/advice would be really helpful.
    Thanx

  • Strange NullPointerException

    Hi,
    I am using Kodo 4.0.1 and sql server. I have the following Folder like
    structure. In the UI you can move Folders around, and at certain moments I
    get a nullpointer exception
    public abstract class Folder extends AbstractFolderEntry{
    private List<AbstractFolderEntry> children = null;
    public Folder(){
    super();
    children = new ArrayList<AbstractFolderEntry>(); //contains both
    (sub)Folders and DataElements
    public List<AbstractFolderEntry> getChildren() {
    Collections.unmodifiableList(children);
    Caused by: java.lang.NullPointerException
         at java.util.Collections$UnmodifiableCollection.<init>(Unknown Source)
         at java.util.Collections$UnmodifiableList.<init>(Unknown Source)
         at java.util.Collections.unmodifiableList(Unknown Source)
         at com.ces.core.domain.Folder.getChildren(Folder.java:150)
         at com.ces.core.application.task.MoveAbstractFolderEntryTask.body
    My .jdo:
    <class name="Folder">
    <field name="children">
    <collection element-type="AbstractFolderEntry" />
    <extension vendor-name="kodo" key="inverse-logical" value="parent"/>
    </field>
    </class>
    The specified method does a check for null and throws a
    NullPointerException. I never set the collection to null. Adding the
    following check to getChildren() seems to solve te problem:
    if(children == null) {
    //This should not happen, but it does and seems
    //to be a bug in Kodo 4.0.1
    //to init children, call size, otherwise it will
    //cause a Nullpointer later on
    children.size();
    kind regards,
    Christiaan

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
    <META content="MSHTML 6.00.2900.2963" name=GENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY>
    <DIV><FONT face=Arial size=2>Hi David,</FONT></DIV>
    <DIV><FONT face=Arial size=2>actually the "children == null" doesnt trigger Kodo
    to load the children fields. The same check is used within
    Collections.unmodifiableList(List l) method where this code throws the
    nullpointer</FONT></DIV>
    <DIV><FONT face=Arial size=2>if(l == null) {</FONT></DIV>
    <DIV><FONT face=Arial size=2>   throw new
    NullpointerExcpetion()</FONT></DIV>
    <DIV><FONT face=Arial size=2>}</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT> </DIV>
    <DIV><FONT face=Arial size=2>I suspect that the problem is caused due to the
    fact that I have two threads working on the objects at the same time (though
    javax.jdo.option.Multithreaded is set to true). One thread evicts the objects
    from cache at certain intervals, the other thread performs certain operations on
    the Folder object. I haven't had a chance to build a testcase for this (will do
    asap), but in my unittest, which doesnt have the situation of the two thrreads,
    it never occurs.</FONT></DIV>
    <DIV><FONT face=Arial size=2></FONT> </DIV>
    <DIV><FONT face=Arial size=2><David Ezzio> wrote in message </FONT><A
    href="news:[email protected]"><FONT face=Arial
    size=2>news:[email protected]</FONT></A><FONT face=Arial
    size=2>...</FONT></DIV><FONT face=Arial size=2>> Hi Christiaan,<BR>>
    <BR>> You said that if you add the code,<BR>> <BR>> if (children ==
    null)<BR>> {<BR>> children.size();<BR>> }<BR>> <BR>> to the
    method that returns <BR>> <BR>>
    Collections.unmodifiableList(children);<BR>> <BR>> that it avoids a
    NPE.  Correct?<BR>> <BR>> If so, it would indicate that enhancement
    has a bug.  This behavior indicates that the first code is triggering
    Kodo's field loading while the second is not.  What is very curious is that
    sometimes the field loads and sometimes not, as the NPE is not always
    happening.  <BR>> <BR>> Do you have other constructors for Folder
    that might not initialize the children list?  Have you tried removing the
    instance initialization "... children = null"?  This might be confusing the
    enhancer.  Decompiling the enhanced class and taking a look at what's
    happening in the constructors and the getChildren method would probably tell us
    whether this is an enhancement bug.  Can you do that and post the relevant
    sections?  I find that DJDecompiler works very nicely.<BR>> <BR>> Let
    us know how you make out.<BR>> <BR>> Thanks,<BR>> <BR>> David
    Ezzio</FONT></BODY></HTML>

  • What does this strange NullPointerException mean?

    java.lang.NullPointerException
            at javax.swing.text.FlowView$FlowStrategy.layoutRow(FlowView.java:538)
            at javax.swing.text.FlowView$FlowStrategy.layout(FlowView.java:452)
            at javax.swing.text.FlowView.layout(FlowView.java:184)
            at javax.swing.text.BoxView.setSize(BoxView.java:380)
            at javax.swing.text.BoxView.updateChildSizes(BoxView.java:349)
            at javax.swing.text.BoxView.setSpanOnAxis(BoxView.java:317)
            at javax.swing.text.BoxView.layout(BoxView.java:684)
            at javax.swing.text.BoxView.setSize(BoxView.java:380)
            at javax.swing.text.BoxView.updateChildSizes(BoxView.java:349)
            at javax.swing.text.BoxView.setSpanOnAxis(BoxView.java:331)
            at javax.swing.text.BoxView.layout(BoxView.java:683)
            at javax.swing.text.BoxView.setSize(BoxView.java:380)
            at javax.swing.plaf.basic.BasicTextUI$RootView.setSize(BasicTextUI.java:1701)
            at javax.swing.plaf.basic.BasicTextUI$RootView.paint(BasicTextUI.java:1420)
            at javax.swing.plaf.basic.BasicTextUI.paintSafely(BasicTextUI.java:725)
            at javax.swing.plaf.basic.BasicTextUI.paint(BasicTextUI.java:868)
            at javax.swing.plaf.basic.BasicTextUI.update(BasicTextUI.java:847)
            at javax.swing.JComponent.paintComponent(JComponent.java:758)
            at javax.swing.JComponent.paint(JComponent.java:1022)
            at javax.swing.JComponent.paintToOffscreen(JComponent.java:5104)
            at javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(RepaintManager.java:1386)
            at javax.swing.RepaintManager$PaintManager.paint(RepaintManager.java:1317)
            at javax.swing.RepaintManager.paint(RepaintManager.java:1132)
            at javax.swing.JComponent.paintForceDoubleBuffered(JComponent.java:1058)
            at javax.swing.JViewport.blitDoubleBuffered(JViewport.java:1612)
            at javax.swing.JViewport.windowBlitPaint(JViewport.java:1573)
            at javax.swing.JViewport.setViewPosition(JViewport.java:1118)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.vsbStateChanged(BasicScrollPaneUI.java:1027)
            at javax.swing.plaf.basic.BasicScrollPaneUI$Handler.stateChanged(BasicScrollPaneUI.java:1016)        at javax.swing.DefaultBoundedRangeModel.fireStateChanged(DefaultBoundedRangeModel.java:348)
            at javax.swing.DefaultBoundedRangeModel.setRangeProperties(DefaultBoundedRangeModel.java:285)        at javax.swing.DefaultBoundedRangeModel.setValue(DefaultBoundedRangeModel.java:151)
            at javax.swing.JScrollBar.setValue(JScrollBar.java:446)when invoking verticalScrollBar.setValue(max);
    could somebody tell me how to avoid it?
    Thank you in advance

    Swing components should be updated in the GUI Event Dispatch Thread. Maybe use a SwingUtilities.invokeLater(...) to change the scrollbar value.
    Read the Swing tutorial on Concurrency for more information.

  • Strange NullPointerException in array

    Read bellow. Why this NullPointerException exception?
    class YYY{
         public String a1str = new String();
         public String a2str = new String();
         public String a3str = new String();
         public String a4str = new String();
    class XXX
         public YYY myNonArray= new YYY();
         public YYY myArray[]= new YYY[20];
         public void SomeFunction(){
              myNonArray.a1str = "Some string"; //works OK
              myArray[0].a1str = "Some string"; //NullPointerException !!! Why?!
    }

    you have created (and initialized) the array, but you have not "filled" the array (ie created its items) - so all items of the array are null
    class XXX
    public YYY myNonArray= new YYY();
    public YYY myArray[]= new YYY[20];for (int j=0;j<20;j++) {
    myArray[j] = new YYY();
    >
    public void SomeFunction(){

  • Strange NULLPOINTEREXCEPTION while putting code in GUI

    Hi,
    I've created a GUI that handles a XML file. I call a method from out the GUI and pass the TextArea where the output has to be written. When I write something to the TextArea in the go-method then there is no problem, but when I write something to the TextArea from for instance the emit method then I get a NULLPOINTEREXCEPTION in the XML parsers code
    CODE:
    import javax.xml.parsers.SAXParserFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import java.io.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.DefaultHandler;
    This class parses any XML documents and echo's it to a new file
    public class XMLPars extends DefaultHandler
    private Writer out;
    public TextArea aTextArea;
    The gomethod accepts two arguments: the xml file and the TextArea to where the output is written
    public void go(String fileName,TextArea attrTextArea)
    attrTextArea.append("TEST1"); //this works
    this.aTextArea = attrTextArea;
    aTextArea.append("TEST2") //this works too;
    //make an instance of ourselves as defaulthandler
    DefaultHandler handler = new XMLPars();
    //use the default (non-validating) parser
    SAXParserFactory factory = SAXParserFactory.newInstance();
    try
    //get the output stream
    File file = new File("debug.txt");
    out = new FileWriter(file);
    //parse the input
    SAXParser saxParser = factory.newSAXParser();
    saxParser.parse(new File (fileName), handler);
    out.close();
    catch (Throwable t)
    t.printStackTrace();
    public void startDocument() throws SAXException
    aTextArea.append("TEST3"); //this causes an NULLPOINTEREXCEPTION
    emit("<?xml version='1.0' encoding='UTF-8'>");
    nl();
    public void endDocument() throws SAXException
    try
    nl();
    out.flush();
    catch (IOException io)
    throw new SAXException("I/O Error",io);
    //writes to the output and flushes
    private void emit(String s) throws SAXException
    try
    out.write(s);
    out.flush();
    aTextArea.append(s); //this doesn't work either
    catch (IOException io)
    throw new SAXException ("I/O error",io);
    //prints a line feed, depending on system type
    private void nl () throws SAXException
    String lineEnd = System.getProperty("line.separator");
    try
    out.write(lineEnd);
    catch (IOException io)
    throw new SAXException ("I/O error",io);
    Please help me out THX a LOT!!!!!!!!!!!!!!!!!!

    THX for reply,
    I tried to instantiate but doesn't seem to work
    public ColorXNS(AttributedTextArea attrTextArea)
    this.aTextArea = attrTextArea;
    public void go(String fileName,AttributedTextArea attrTextArea)
    attrTextArea.append("TEST1\n"); //works fine
    //make an instance of ourselves as defaulthandler
    DefaultHandler handler = new ColorXNS(attrTextArea);
    attrTextArea.append("TEST2\n"); //works fine
    aTextArea.append("TEST3\n"); // this is NOT printed in the TextArea
    //use the default (non-validating) parser
    SAXParserFactory factory = SAXParserFactory.newInstance();
    try
    //get the output stream
    File file = new File("debug.txt");
    out = new FileWriter(file);
    //parse the input
    SAXParser saxParser = factory.newSAXParser();
    saxParser.parse(new File (fileName), handler);
    out.close();
    catch (Throwable t)
    t.printStackTrace();
    Is there something wrong with the initialization??
    THX

  • NullPointerException in 1.4.2 but not in  1.4.1

    Am I going nuts or is there anyone else who experiense strange NullPointerExceptions when running code with JRE 1.4.2 that was once compiled with javac 1.4.1? The code compiles fine with 1.4.1 and runns fine in java 1.4.1, but when using 1.4.2 I get NullPointerExceptions at strage places like JTable.getValueAt for example. There seams to be some kind of diffrence in the behaviour of JComboBox also. Is there something in the new release 1.4.2 that I have missed?

    Any ideas anyone? I seem to have pretty consistent behaviour in a couple of forms - I've stripped out a lot of code and now the overloaded paint does nothing.
    Under java 1.4.2 nothing is painted (as expected) but under 1.5 the window paints!!
    Why??? It seems almost like AWT decides it's going to paint regardless, although it shouldn't.
    I've also noticed that under 1.5 if you move another application over the top of the window, it DOESN'T repaint areas that have needed it (after the initial paint), so in this situation it IS seeing (and obeying) the code in my overloaded paint.
    I tried overloading paintAll(...) with an empty implementation and sure enough under 1.4.2 nothing is painted, but under 1.5 it is painted; but also in this case when I move another application over the top of the window, it DOES repaint!!
    What gives, is this a JVM, compiler, swing or EDT bug??
    Getting desperate...

  • New InitialContext() raises a NullPointerException

    Hello gentlemen,
    I have my code that is working nice under Weblogic 8.1 SP 2 and Service Pack 1 (Windows 2000, jdk141_03).
    I switched to Service Pack 5 (no change in my code) and from then I face a strange NullPointerException when I make a call to
    new InitialContext(hashtable).
    (I am creating a Context for making a lookup on an EJB).
    If I revert to Service Pack 2, everything works fine.
    I checked Service Pack 6 too (jdk142_11) and I got the same NullPointerException.
    I am quite in troubles...
    thank you for your help.
    Edited by [email protected] at 01/18/2007 3:34 AM

    franco lazzari wrote:
    Here it is:
    java.lang.NullPointerException
    at weblogic.rjvm.RJVMManager.findExisting(RJVMManager.java:326)
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:210)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:184)
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:223Odd. The line of code in 81sp5 that supposedly throws an NPE (line 326)
    can't do that in the code I'm looking at. I suggest you open an official
    support case showing this full stacktrace. It presents as a core WLS
    issue.
    Joe
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:188)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:125)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:310)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLIni
    tialContextFactoryDelegate.java:253)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialCont
    extFactory.java:135)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    62)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:195)
    at mnse.securityserver.utenti.GestoreUtentiCentrale.getToken(GestoreUten
    tiCentrale.java:798)
    at mnse.securityserver.utenti.GestoreUtentiCentrale.<init>(GestoreUtenti
    Centrale.java:82)
    at mnse.securityserver.utenti.GestoreUtentiCentrale.createGestoreUtenti(
    GestoreUtentiCentrale.java:72)
    at mnse.securityserver.utenti.GestoreUtentiCentrale.getGestoreUtenti(Ges
    toreUtentiCentrale.java:51)
    at mnse.securityserver.utenti.GestoreFontiCentrale.caricaFonteUtenti(Ges
    toreFontiCentrale.java:216)
    at mnse.securityserver.utenti.GestoreFontiCentrale.<init>(GestoreFontiCe
    ntrale.java:89)
    at mnse.securityserver.utenti.GestoreFontiCentrale.createGestoreFonti(Ge
    storeFontiCentrale.java:62)
    at mnse.securityserver.utenti.GestoreFontiCentrale.getGestoreFonti(Gesto
    reFontiCentrale.java:46)
    at mnse.util.avvio.SecurityLoader.load(SecurityLoader.java:392)
    at mnse.util.avvio.SecurityLoader.getMinosseLogfile(SecurityLoader.java:
    118)
    at mnse.securityserver.logger.MinosseLogger.<init>(MinosseLogger.java:52
    at mnse.securityserver.logger.MinosseLogger.createLogger(MinosseLogger.j
    ava:95)
    at mnse.securityserver.logger.MinosseLogger.getLogger(MinosseLogger.java
    :82)
    at mnse.util.avvio.TimeStamper.getLDAPServerURL(TimeStamper.java:58)
    at mnse.admin.dao.RacsDAO.<init>(RacsDAO.java:59)
    at mnse.admin.impl.AdministratorEJB.getOperatore(AdministratorEJB.java:5
    1)
    at mnse.admin.impl.Administrator_ocrjs3_EOImpl.getOperatore(Administrato
    r_ocrjs3_EOImpl.java:316)
    at mnse.admin.impl.Administrator_ocrjs3_EOImpl_CBV.getOperatore(Unknown
    Source)
    at mnse.console.AdministratorProxy.getOperatore(AdministratorProxy.java:
    85)
    at mnse.console.Controllore.getOperatore(Controllore.java:122)
    at mnse.console.Controllore.esegui(Controllore.java:89)
    at mnse.console.Short.doPost(Short.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:1077)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:465)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:348)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:7047)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
    121)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3902)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2773)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

  • Multi-Client TCP Server /w Swing GUI

    Hi everybody,
    i have to develop a Multi-Client TCP Server with a Swing GUI. The GUI mainly consists of a JTable which shows various trace messages from processes running on other computers. As the data needs to be filtered i�m using a custom TableModel derived from AbstractTableModel. I�m creating a new thread for every client that connects as shown in http://java.sun.com/developer/onlineTraining/Programming/BasicJava2/socket.html
    Now every client thread reads data from its TCP connection and puts it into the JTable by calling the method addRow of the model. But i�m getting strange NullPointerExceptions and IndexOutOfBoundExceptions when data arrives (i�m using ArrayList in the model). These exceptions never show in a single-threaded Swing app (i�ve tested this already, so i don�t think it�s a bug in my model), so i think this is a problem with Swing�s thread unsafety? Do you have any hints on how to get away with it? Also general design tips for a Multi-Client TCP Server /w Swing GUI are greatly appreciated.
    Thanks in advance!
    Best regards,
    Disposable_Hero

    Of course, but i don�t think it is the model (as said before it works fine in a single thread swing app)
    Here�s the code:
    public class LogTableModel extends AbstractTableModel{
    private Vector dataVector;
    private Vector filterVector;
    private String[] columnIdentifiers;
    private Vector filteredbyProcess;
    private Vector filteredbyLoglevel;
    private boolean bEnableRefresh;
    /** Creates a new instance of LogTableModel */
    public LogTableModel() {
    dataVector=new Vector(0);
    columnIdentifiers=new String[]{"LogTime","HostName","IP","ProcessName","LogLevel","Handle","PID","TID","LogData"};
    filteredbyProcess=new Vector(0);
    filteredbyLoglevel=new Vector(0);
    filterVector=new Vector(0);
    bEnableRefresh=true;
    public synchronized void enableRefresh(boolean bEnableRefresh){
    this.bEnableRefresh=bEnableRefresh;
    if(bEnableRefresh){
    this.buildIndexListBasedOnFilter();
    public synchronized void addRow(LogLine row){
    dataVector.add(row);
    if(bEnableRefresh)
    this.buildIndexListBasedOnFilter();
    public synchronized void addFilter(Filter filter){
    filterVector.add(filter);
    if(filter.isActive())
    this.buildIndexListBasedOnFilter();
    public synchronized void setFilterActive(String name,boolean active){
    int i;
    for(i=0;i<filterVector.size();i++)
    if(((Filter)filterVector.elementAt(i)).getName().equals(name))
    break;
    Filter tmp=(Filter)filterVector.elementAt(i);
    tmp.setActive(active);
    if(active)
    this.buildIndexListBasedOnFilter();
    public synchronized void setFilterLoglevel(String name,int Loglevel){
    int i;
    for(i=0;i<filterVector.size();i++)
    if(((Filter)filterVector.elementAt(i)).getName().equals(name))
    break;
    Filter tmp=(Filter)filterVector.elementAt(i);
    tmp.setLoglevel(Loglevel);
    if(tmp.isActive()==false)
    this.buildIndexListBasedOnFilter();
    private void buildIndexListBasedOnFilter(){
    filteredbyProcess.clear();
    filteredbyLoglevel.clear();
    applyProcessFilter();
    applyLoglevelFilter();
    if(bEnableRefresh)
    this.fireTableDataChanged();
    private void applyProcessFilter(){
    LogLine line=null;
    Filter filter=null;
    for(int i=0;i<dataVector.size();i++){
    for(int j=0;j<filterVector.size();j++){
    filter=(Filter)filterVector.elementAt(j);
    line=(LogLine)dataVector.elementAt(i);
    if(filter.isActive()&&(filter.getName().equals(line.getProcessName()))){
    line.setHidden(true);
    break;
    else{
    line.setHidden(false);
    if(line.getHidden()!=true)
    filteredbyProcess.add(new Integer(i));
    private void applyLoglevelFilter(){
    for(int i=0;i<filteredbyProcess.size();i++){
    int index=((Integer)filteredbyProcess.get(i)).intValue();
    LogLine line=(LogLine)dataVector.elementAt(index);
    for(int j=0;j<filterVector.size();j++){
    if(((Filter)filterVector.elementAt(j)).getName().equals(line.getProcessName())){
    Filter filter=(Filter)filterVector.elementAt(j);
    if((filter.getLoglevel()&line.getLogLevelAsInt())!=line.getLogLevelAsInt())
    line.setHidden(true);
    else
    filteredbyLoglevel.add(new Integer(index));
    break;
    public synchronized String getColumnName(int columnIndex){
    return columnIdentifiers[columnIndex];
    public synchronized void clearData(){
    dataVector.clear();
    filteredbyProcess.clear();
    filteredbyLoglevel.clear();
    public synchronized int getColumnCount() {
    return columnIdentifiers.length;
    public synchronized int getRowCount() {
    return filteredbyLoglevel.size();
    public synchronized Object getValueAt(int rowIndex, int columnIndex) {
    int iIndex=((Integer)filteredbyLoglevel.get(rowIndex)).intValue();// hier krachts warum???
    LogLine tmp=(LogLine)dataVector.elementAt(iIndex);
    switch(columnIndex){
    case 0:
    return tmp.getLogTime();
    case 1:
    return tmp.getHostName();
    case 2:
    return tmp.getIP();
    case 3:
    return tmp.getProcessName();
    case 4:
    return tmp.getLogLevel();
    case 5:
    return tmp.getHandle();
    case 6:
    return tmp.getProcessID();
    case 7:
    return tmp.getThreadID();
    case 8:
    return tmp.getLogData();
    default:
    return null;

  • Strange error (nullPointerException)

    i have a strange problem!
    imports...
    public class one
    public one() {}
    public Vector[] jpt()
    Vector[] r = new Vector[2];
    r[0] = new Vector();
    r[0].addElement(new String("aaaa"));
    r[0].addElement(new String("bbbb"));
    r[1] = new Vector();
    r[1].addElement(new String("cccc"));
    return r;
    public class two
    public two()
    one o = new one();
    Vector[] r;
    r = o.jpt(); //this give nullPointerException
    if I change public Vector[] jpt() to public static Vector[] jpt() then the code works fine
    and also, if I put the method jpt() into class two and access it like this then the code works fine
    public class two
    public two()
    Vector[] r;
    r = jpt(); //this give nullPointerException
    public Vector[] jpt()
    Vector[] r = new Vector[2];
    r[0] = new Vector();
    r[0].addElement(new String("aaaa"));
    r[0].addElement(new String("bbbb"));
    r[1] = new Vector();
    r[1].addElement(new String("cccc"));
    return r;
    does anybody know whats happening??? :(

    Please use [ code ] tags and stick with the Java naming conventions.
    If "static" makes the NPE go away, it means that despite of what you claim what the code is, o is uninitialized.

  • Submitting a form with enter key causing strange problems

    I am having a very strange problem with a webapp I am currently developing. I am using JSF 1.2 along with Facelets and RichFaces. I have coded a workflow/wizard 4-step process, and on some pages I have 4 submit buttons that all call different actions on the page. The users thought it would be useful to have the enter key submit the form, so I followed some online resources to trap a keypress using javascript, looking for the enter keycode and calling document.getElementById("elementName").click(). This works fine most of the time. Sometimes, though, it seems as if an entire new session is being created, and odd behavior starts happening. For example, my page will only include 2 of the 4 facelets on the screen -or- I will get NullPointerExceptions for objects that I know have been created in the session bean I am currently using -or- I will get a duplicate form Id after trying to re-submit the page. Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"? I'm really at my wit's end here (plus it's nearly 3 AM, that never helps things). All of the buttons being clicked are standard h:commandButtons. There is some setTimeout logic included to disable the buttons on the page to prevent double clicks (I cannot disable them onsubmit because disabled buttons don't pass the right values, perhaps that's causing it, but if so, clicking the buttons with the mouse would cause that issue too, right?)
    I am not posting the code (yet), but if anyone wants to take a look see and see if I am doing something really abhorrently wrong, I'm more than willing to, I'm just curious if anyone has had problems regarding javascript submission of forms via the click() method. Clicking the button does not exhibit this type of behavior. Just as a side note: I am doing different things with the enter key depending if a modal window is open (the enter key closes the modal if it's up, and if not, it submits the form via a button click).
    Any help is much appreciated, if anyone has any inkling about where I should start looking for answers it would be really helpful.
    Thank you.

    edfrost wrote:
    Could the javascript click simulation not be submitting all of the form elements or is the enter key also acting like its default action (the form submission) in addition to the "click"?My guess is the second of these. You need to suppress the event handling after programmatically clicking the button.

  • Strange error with xml publisher

    I was testing sub-templates on a clone of our production environment and encountered a strange error. When I run the concurrent program I get an xml publisher error and then when I do a preview in xml publisher I also get an error. These are the exact same templates that are running on are training environment with out any issue. I put an SR in with oracle and they asked me to check the status of patches. We looked at the patches on all environments and they are exactly the same. We are running Xml publisher 5.6.2., with that said oracle still thinks it has to do with a patch and have told our DBA that he needs to apply a patch for xml publisher 5.6.3 When we applied this patch it broke the two test environments that it was tested on we are still waiting for oracle to get back with use on this issue. I really do not believe it is a patch error since it works on training and the there is no difference between the patch history on training and the other environments. I am including the two errors and the templates, if you have the time and could look at the errors may be you can see what is going on. The first error is from the xml publisher preview and an the second is from the concurrent program.
    Thank You,
    Russell E Cowan
    XML Publisher Preview Error
    java.lang.NullPointerException at oracle.apps.xdo.oa.util.CoreHelper.escapeBrackets(CoreHelper.java:549) at oracle.apps.xdo.oa.util.CoreHelper.getExceptionXML(CoreHelper.java:580) at oracle.apps.xdo.oa.util.CoreHelper.writeExceptionDocument(CoreHelper.java:661) at oracle.apps.xdo.oa.util.CoreHelper.writeExceptionDocument(CoreHelper.java:637) at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:6205) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614) at oracle.apps.xdo.oa.template.server.TemplatesAMImpl.processTemplate(TemplatesAMImpl.java:2135) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:189) at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:152) at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:721) at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.previewTemplate(TemplateGeneralCO.java:735) at oracle.apps.xdo.oa.template.webui.TemplateGeneralCO.processRequest(TemplateGeneralCO.java:158) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353) at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418) at oa_html._OA._jspService(_OA.java:88) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162) at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187) at oa_html._OA._jspService(_OA.java:98) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534)
    Concurrent Program Error.
    XML Publisher: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOREPPB module: XML Report Publisher
    Current system time is 21-JUN-2007 09:18:06
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    [062107_091809594][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [062107_091809595][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [062107_091809595][][EXCEPTION] [DEBUG] [IA_TOP]:[d01/oracle/devlappl/ia/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [062107_091809595][][EXCEPTION] [DEBUG] [PA_TOP]:[d01/oracle/devlappl/pa/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [CONTEXT_NAME]:[DEVL_prometheus]
    [062107_091809595][][EXCEPTION] [DEBUG] [PLATFORM]:[LINUX]
    [062107_091809595][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [062107_091809595][][EXCEPTION] [DEBUG] [CUE_TOP]:[d01/oracle/devlappl/cue/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [CSI_TOP]:[d01/oracle/devlappl/csi/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [EDR_TOP]:[d01/oracle/devlappl/edr/11.5.0]
    [062107_091809595][][EXCEPTION] [DEBUG] [QRM_TOP]:[d01/oracle/devlappl/qrm/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [062107_091809596][][EXCEPTION] [DEBUG] [PO_TOP]:[d01/oracle/devlappl/po/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [APPLUSR]:[usrxit]
    [062107_091809596][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [062107_091809596][][EXCEPTION] [DEBUG] [ASF_TOP]:[d01/oracle/devlappl/asf/11.5.0]
    [062107_091809596][][EXCEPTION] [DEBUG] [CUS_TOP]:[d01/oracle/devlappl/cus/11.5.0]
    [062107_091809597][][EXCEPTION] [DEBUG] [FORMS60_RTI_DIR]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809601][][EXCEPTION] [DEBUG] [PSB_TOP]:[d01/oracle/devlappl/psb/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [CHMOD]:[chmod]
    [062107_091809601][][EXCEPTION] [DEBUG] [ADJVAPRG]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/bin/java]
    [062107_091809601][][EXCEPTION] [DEBUG] [ORAPLSQLLOADPATH]:[d01/oracle/devlappl/au/11.5.0/graphs]
    [062107_091809601][][EXCEPTION] [DEBUG] [PCCFLAGS]:[include=$(PCCINC) ireclen=161 sqlcheck=none dbms=v6]
    [062107_091809601][][EXCEPTION] [DEBUG] [GMF_TOP]:[d01/oracle/devlappl/gmf/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=PROMETHEUS.truecos.com)(PORT=1525)))(CONNECT_DATA=(SID=DEVL)))]
    [062107_091809601][][EXCEPTION] [DEBUG] [BEN_TOP]:[d01/oracle/devlappl/ben/11.5.0]
    [062107_091809601][][EXCEPTION] [DEBUG] [IEO_TOP]:[d01/oracle/devlappl/ieo/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [APPLMSG]:[mesg]
    [062107_091809602][][EXCEPTION] [DEBUG] [AST_TOP]:[d01/oracle/devlappl/ast/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [ORACLE_HOME]:[d01/oracle/devlora/8.0.6]
    [062107_091809602][][EXCEPTION] [DEBUG] [FPT_TOP]:[d01/oracle/devlappl/fpt/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [OTA_TOP]:[d01/oracle/devlappl/ota/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [PSP_TOP]:[d01/oracle/devlappl/psp/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [OKE_TOP]:[d01/oracle/devlappl/oke/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [IBU_TOP]:[d01/oracle/devlappl/ibu/11.5.0]
    [062107_091809602][][EXCEPTION] [DEBUG] [FORMS60_CATCHTERM]:[1]
    [062107_091809602][][EXCEPTION] [DEBUG] [DT_TOP]:[d01/oracle/devlappl/dt/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [JL_TOP]:[d01/oracle/devlappl/jl/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [062107_091809603][][EXCEPTION] [DEBUG] [OPI_TOP]:[d01/oracle/devlappl/opi/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [IAS_CONFIG_HOME]:[d01/oracle/devlora/iAS]
    [062107_091809603][][EXCEPTION] [DEBUG] [PN_TOP]:[d01/oracle/devlappl/pn/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [AZ_TOP]:[d01/oracle/devlappl/az/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [APPLPTMP]:[usr/tmp]
    [062107_091809603][][EXCEPTION] [DEBUG] [GSM_FLAG]:[ON]
    [062107_091809603][][EXCEPTION] [DEBUG] [FORMS60_PATH]:[d01/oracle/devlappl/au/11.5.0/resource:/d01/oracle/devlappl/au/11.5.0/resource/stub]
    [062107_091809603][][EXCEPTION] [DEBUG] [OKS_TOP]:[d01/oracle/devlappl/oks/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [PSA_TOP]:[d01/oracle/devlappl/psa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [FORMS60_TIMEOUT]:[5]
    [062107_091809603][][EXCEPTION] [DEBUG] [TK_PRINT_STATUS]:[echo %n is valid]
    [062107_091809603][][EXCEPTION] [DEBUG] [FA_TOP]:[d01/oracle/devlappl/fa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [ZFA_TOP]:[d01/oracle/devlappl/zfa/11.5.0]
    [062107_091809603][][EXCEPTION] [DEBUG] [OA_MEDIA]:[d01/oracle/devlcomn/java/oracle/apps/media]
    [062107_091809603][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [062107_091809604][][EXCEPTION] [DEBUG] [EC_TOP]:[d01/oracle/devlappl/ec/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [HXT_TOP]:[d01/oracle/devlappl/hxt/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [LD_ASSUME_KERNEL]:[2.4.19]
    [062107_091809604][][EXCEPTION] [DEBUG] [OA_HTML]:[d01/oracle/devlcomn/html]
    [062107_091809604][][EXCEPTION] [DEBUG] [GME_TOP]:[d01/oracle/devlappl/gme/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [062107_091809604][][EXCEPTION] [DEBUG] [AK_TOP]:[d01/oracle/devlappl/ak/11.5.0]
    [062107_091809604][][EXCEPTION] [DEBUG] [RESP_ID]:[21623]
    [062107_091809604][][EXCEPTION] [DEBUG] [ME_TOP]:[d01/oracle/devlappl/me/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [PWD]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809605][][EXCEPTION] [DEBUG] [JTF_TOP]:[d01/oracle/devlappl/jtf/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [COMMON_TOP]:[d01/oracle/devlcomn]
    [062107_091809605][][EXCEPTION] [DEBUG] [BIS_TOP]:[d01/oracle/devlappl/bis/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [FORMS60_APPSLIBS]:[APPCORE FNDSQF APPDAYPK APPFLDR GLCORE HR_GEN HR_SPEC ARXCOVER]
    [062107_091809605][][EXCEPTION] [DEBUG] [MFG_TOP]:[d01/oracle/devlappl/mfg/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [FND_TOP]:[d01/oracle/devlappl/fnd/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [GMS_TOP]:[d01/oracle/devlappl/gms/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [SSP_TOP]:[d01/oracle/devlappl/ssp/11.5.0]
    [062107_091809605][][EXCEPTION] [DEBUG] [LD_LIBRARY_PATH]:[d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809605][][EXCEPTION] [DEBUG] [FORMS60_RESTRICT_ENTER_QUERY]:[TRUE]
    [062107_091809606][][EXCEPTION] [DEBUG] [CP]:[cp]
    [062107_091809606][][EXCEPTION] [DEBUG] [OKR_TOP]:[d01/oracle/devlappl/okr/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [ADJREOPTS]:[-Xmx512M]
    [062107_091809606][][EXCEPTION] [DEBUG] [IBE_TOP]:[d01/oracle/devlappl/ibe/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [OZP_TOP]:[d01/oracle/devlappl/ozp/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [FORMS60_LOV_MINIMUM]:[1000]
    [062107_091809606][][EXCEPTION] [DEBUG] [TWO_TASK]:[DEVL]
    [062107_091809606][][EXCEPTION] [DEBUG] [GRAPHICS60_PATH]:[d01/oracle/devlappl/au/11.5.0/graphs]
    [062107_091809606][][EXCEPTION] [DEBUG] [CC]:[cc]
    [062107_091809606][][EXCEPTION] [DEBUG] [FORMS60_OUTPUT]:[d01/oracle/devlcomn/temp]
    [062107_091809606][][EXCEPTION] [DEBUG] [MYAPPSORA]:[d01/oracle/devlappl/APPSDEVL_prometheus.env]
    [062107_091809606][][EXCEPTION] [DEBUG] [IGI_TOP]:[d01/oracle/devlappl/igi/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [GMD_TOP]:[d01/oracle/devlappl/gmd/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [OA_DOC]:[d01/oracle/devlcomn/doc]
    [062107_091809606][][EXCEPTION] [DEBUG] [IEM_TOP]:[d01/oracle/devlappl/iem/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_FREE_MEM]:[TRUE]
    [062107_091809606][][EXCEPTION] [DEBUG] [DOM_TOP]:[d01/oracle/devlappl/dom/11.5.0]
    [062107_091809606][][EXCEPTION] [DEBUG] [GL_TOP]:[d01/oracle/devlappl/gl/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [OKC_TOP]:[d01/oracle/devlappl/okc/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [PRP_TOP]:[d01/oracle/devlappl/prp/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [ENI_TOP]:[d01/oracle/devlappl/eni/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [CNTL_BREAK]:[ON]
    [062107_091809607][][EXCEPTION] [DEBUG] [CSF_TOP]:[d01/oracle/devlappl/csf/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [XML_REPORTS_XENVIRONMENT]:[d01/oracle/devlora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb]
    [062107_091809607][][EXCEPTION] [DEBUG] [FORMS60_OAM_FRD]:[OFF]
    [062107_091809607][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [062107_091809607][][EXCEPTION] [DEBUG] [IGW_TOP]:[d01/oracle/devlappl/igw/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [AX_TOP]:[d01/oracle/devlappl/ax/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [XNS_TOP]:[d01/oracle/devlappl/xns/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [PCCINC]:[. include=$(FND_TOP)/include include=$(ORACLE_HOME)/precomp/public]
    [062107_091809607][][EXCEPTION] [DEBUG] [APPLBIN]:[bin]
    [062107_091809607][][EXCEPTION] [DEBUG] [ORACLE_LOCALPREFERENCE]:[d01/oracle/devlora/8.0.6/tools/admin]
    [062107_091809607][][EXCEPTION] [DEBUG] [DB_HOST]:[prometheus.truecos.com]
    [062107_091809607][][EXCEPTION] [DEBUG] [CUP_TOP]:[d01/oracle/devlappl/cup/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [JTS_TOP]:[d01/oracle/devlappl/jts/11.5.0]
    [062107_091809607][][EXCEPTION] [DEBUG] [HOME]:[home/applmgr]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLFENV]:[DEVL_prometheus.env]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLSAV]:[save]
    [062107_091809608][][EXCEPTION] [DEBUG] [BIC_TOP]:[d01/oracle/devlappl/bic/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [FORMS60_LOV_WEIGHT]:[16]
    [062107_091809608][][EXCEPTION] [DEBUG] [FORMS60_BLOCKING_LONGLIST]:[FALSE]
    [062107_091809608][][EXCEPTION] [DEBUG] [IPD_TOP]:[d01/oracle/devlappl/ipd/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [WIP_TOP]:[d01/oracle/devlappl/wip/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [CE_TOP]:[d01/oracle/devlappl/ce/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [ZSA_TOP]:[d01/oracle/devlappl/zsa/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPLRGT]:[regress]
    [062107_091809608][][EXCEPTION] [DEBUG] [FRM_TOP]:[d01/oracle/devlappl/frm/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [VEA_TOP]:[d01/oracle/devlappl/vea/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [RHX_TOP]:[d01/oracle/devlappl/rhx/11.5.0]
    [062107_091809608][][EXCEPTION] [DEBUG] [APPL_CPLEX_LICDIR]:[d01/oracle/devlappl/admin/cplex]
    [062107_091809609][][EXCEPTION] [DEBUG] [OKB_TOP]:[d01/oracle/devlappl/okb/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPLINC]:[include]
    [062107_091809609][][EXCEPTION] [DEBUG] [CUA_TOP]:[d01/oracle/devlappl/cua/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPLRGF]:[d01/oracle/devlcomn/rgf/DEVL_prometheus]
    [062107_091809609][][EXCEPTION] [DEBUG] [OAH_TOP]:[d01/oracle/devlcomn]
    [062107_091809609][][EXCEPTION] [DEBUG] [CSE_TOP]:[d01/oracle/devlappl/cse/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [ORACLE_TERM]:[vt220]
    [062107_091809609][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[26A38536E15E1B91E040000A0A7C52FE19410635741979075569405609006925]
    [062107_091809609][][EXCEPTION] [DEBUG] [RLA_TOP]:[d01/oracle/devlappl/rla/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [RG_TOP]:[d01/oracle/devlappl/rg/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [CS_TOP]:[d01/oracle/devlappl/cs/11.5.0]
    [062107_091809609][][EXCEPTION] [DEBUG] [CFLAGS]:[$(INCLUDE_FLAGS) -Dlinux -DLINUX -DNLS_ASIA -D_GNU_SOURCE]
    [062107_091809610][][EXCEPTION] [DEBUG] [HXC_TOP]:[d01/oracle/devlappl/hxc/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[660]
    [062107_091809610][][EXCEPTION] [DEBUG] [INV_TOP]:[d01/oracle/devlappl/inv/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [INCLUDE_FLAGS]:[-I. -I$(FND_TOP)/include -I$(ORACLE_HOME)/precomp/public -I$(ORACLE_HOME)/rdbms/demo]
    [062107_091809610][][EXCEPTION] [DEBUG] [FORMS60_TRACE_PATH]:[d01/interfaces/TEST]
    [062107_091809610][][EXCEPTION] [DEBUG] [AF_CLASSPATH]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/rt.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlcomn/java/apps.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809610][][EXCEPTION] [DEBUG] [APPLIMG]:[images]
    [062107_091809610][][EXCEPTION] [DEBUG] [IBC_TOP]:[d01/oracle/devlappl/ibc/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [CSS_TOP]:[d01/oracle/devlappl/css/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [ASP_TOP]:[d01/oracle/devlappl/asp/11.5.0]
    [062107_091809610][][EXCEPTION] [DEBUG] [AF_JRE_TOP]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/]
    [062107_091809610][][EXCEPTION] [DEBUG] [XNC_TOP]:[d01/oracle/devlappl/xnc/11.5.0]
    [062107_091809611][][EXCEPTION] [DEBUG] [WSM_TOP]:[d01/oracle/devlappl/wsm/11.5.0]
    [062107_091809611][][EXCEPTION] [DEBUG] [APPLREP]:[reports]
    [062107_091809611][][EXCEPTION] [DEBUG] [ENG_TOP]:[d01/oracle/devlappl/eng/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [PQP_TOP]:[d01/oracle/devlappl/pqp/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CSD_TOP]:[d01/oracle/devlappl/csd/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [WPS_TOP]:[d01/oracle/devlappl/wps/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [APPLREG]:[regress]
    [062107_091809613][][EXCEPTION] [DEBUG] [GMP_TOP]:[d01/oracle/devlappl/gmp/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [062107_091809613][][EXCEPTION] [DEBUG] [FPA_TOP]:[d01/oracle/devlappl/fpa/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [OKO_TOP]:[d01/oracle/devlappl/oko/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CUN_TOP]:[d01/oracle/devlappl/cun/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [DDD_TOP]:[d01/oracle/devlappl/ddd/11.5.0]
    [062107_091809613][][EXCEPTION] [DEBUG] [CSR_TOP]:[d01/oracle/devlappl/csr/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [PRINTER]:[noprint]
    [062107_091809614][][EXCEPTION] [DEBUG] [IGF_TOP]:[d01/oracle/devlappl/igf/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [GMA_TOP]:[d01/oracle/devlappl/gma/11.5.0]
    [062107_091809614][][EXCEPTION] [DEBUG] [APPL_TOP]:[d01/oracle/devlappl]
    [062107_091809614][][EXCEPTION] [DEBUG] [BNE_TOP]:[d01/oracle/devlappl/bne/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [AMW_TOP]:[d01/oracle/devlappl/amw/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [MST_TOP]:[d01/oracle/devlappl/mst/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [PMI_TOP]:[d01/oracle/devlappl/pmi/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [ASO_TOP]:[d01/oracle/devlappl/aso/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [XNB_TOP]:[d01/oracle/devlappl/xnb/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [FND_OLD_ORA_NET2_DESC]:[11,14]
    [062107_091809615][][EXCEPTION] [DEBUG] [IBP_TOP]:[d01/oracle/devlappl/ibp/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[AMERICA]
    [062107_091809615][][EXCEPTION] [DEBUG] [CSC_TOP]:[d01/oracle/devlappl/csc/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [JG_TOP]:[d01/oracle/devlappl/jg/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [LUSRPRG]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/prglib.o /d01/oracle/devlappl/fnd/11.5.0/usrxit/prgcat.o /d01/oracle/devlappl/fnd/11.5.0/usrxit/EXPROG.o]
    [062107_091809615][][EXCEPTION] [DEBUG] [POS_TOP]:[d01/oracle/devlappl/pos/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [AU_TOP]:[d01/oracle/devlappl/au/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [IEX_TOP]:[d01/oracle/devlappl/iex/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [SHT_TOP]:[d01/oracle/devlappl/sht/11.5.0]
    [062107_091809615][][EXCEPTION] [DEBUG] [XNP_TOP]:[d01/oracle/devlappl/xnp/11.5.0]
    [062107_091809616][][EXCEPTION] [DEBUG] [ORA_NET2_DESC]:[11,14]
    [062107_091809616][][EXCEPTION] [DEBUG] [REQUEST_ID]:[464998]
    [062107_091809616][][EXCEPTION] [DEBUG] [REPORTS60_POST]:[&5556]
    [062107_091809616][][EXCEPTION] [DEBUG] [MWA_TOP]:[d01/oracle/devlappl/mwa/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [XTR_TOP]:[d01/oracle/devlappl/xtr/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [IBA_TOP]:[d01/oracle/devlappl/iba/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [APPLOUT]:[out/DEVL_prometheus]
    [062107_091809617][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [062107_091809617][][EXCEPTION] [DEBUG] [RLM_TOP]:[d01/oracle/devlappl/rlm/11.5.0]
    [062107_091809617][][EXCEPTION] [DEBUG] [IPA_TOP]:[d01/oracle/devlappl/ipa/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [AMV_TOP]:[d01/oracle/devlappl/amv/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [APPLLOG]:[log/DEVL_prometheus]
    [062107_091809618][][EXCEPTION] [DEBUG] [ASN_TOP]:[d01/oracle/devlappl/asn/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [AFCPDNR]:[disabled]
    [062107_091809618][][EXCEPTION] [DEBUG] [ITG_TOP]:[d01/oracle/devlappl/itg/11.5.0]
    [062107_091809618][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [062107_091809619][][EXCEPTION] [DEBUG] [XLE_TOP]:[d01/oracle/devlappl/xle/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [062107_091809619][][EXCEPTION] [DEBUG] [PERL5LIB]:[d01/oracle/devlora/iAS/Apache/perl/lib/5.00503:/d01/oracle/devlora/iAS/Apache/perl/lib/site_perl/5.005:/d01/oracle/devlappl/au/11.5.0/perl]
    [062107_091809619][][EXCEPTION] [DEBUG] [IGS_TOP]:[d01/oracle/devlappl/igs/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [APPLDOC]:[docs]
    [062107_091809619][][EXCEPTION] [DEBUG] [MSD_TOP]:[d01/oracle/devlappl/msd/11.5.0]
    [062107_091809619][][EXCEPTION] [DEBUG] [FII_TOP]:[d01/oracle/devlappl/fii/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [APPLTMP]:[d01/oracle/devlcomn/temp]
    [062107_091809620][][EXCEPTION] [DEBUG] [CCT_TOP]:[d01/oracle/devlappl/cct/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [CSP_TOP]:[d01/oracle/devlappl/csp/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [FTE_TOP]:[d01/oracle/devlappl/fte/11.5.0]
    [062107_091809620][][EXCEPTION] [DEBUG] [JAVA_TOP]:[d01/oracle/devlcomn/java]
    [062107_091809620][][EXCEPTION] [DEBUG] [FORMS60_MAPPING]:[http://prometheus.truecos.com:8004/OA_TEMP]
    [062107_091809620][][EXCEPTION] [DEBUG] [AFJVAPRG]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//bin/java]
    [062107_091809621][][EXCEPTION] [DEBUG] [PV_TOP]:[d01/oracle/devlappl/pv/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FND_GSMSTARTED]:[1]
    [062107_091809624][][EXCEPTION] [DEBUG] [MSR_TOP]:[d01/oracle/devlappl/msr/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FORMS60_FORCE_MENU_MNEMONICS]:[0]
    [062107_091809624][][EXCEPTION] [DEBUG] [TNS_ADMIN]:[d01/oracle/devlora/8.0.6/network/admin/DEVL_prometheus]
    [062107_091809624][][EXCEPTION] [DEBUG] [DB_PORT]:[1525]
    [062107_091809624][][EXCEPTION] [DEBUG] [PJM_TOP]:[d01/oracle/devlappl/pjm/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [BIM_TOP]:[d01/oracle/devlappl/bim/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [OAD_TOP]:[d01/oracle/devlcomn]
    [062107_091809624][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [062107_091809624][][EXCEPTION] [DEBUG] [RM]:[rm -f]
    [062107_091809624][][EXCEPTION] [DEBUG] [JE_TOP]:[d01/oracle/devlappl/je/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [062107_091809624][][EXCEPTION] [DEBUG] [APPLPLS]:[plsql]
    [062107_091809624][][EXCEPTION] [DEBUG] [OA_JRE_TOP]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13]
    [062107_091809624][][EXCEPTION] [DEBUG] [AS_TOP]:[d01/oracle/devlappl/as/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [GCS_TOP]:[d01/oracle/devlappl/gcs/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [IMT_TOP]:[d01/oracle/devlappl/imt/11.5.0]
    [062107_091809624][][EXCEPTION] [DEBUG] [OA_SECURE]:[d01/oracle/devlcomn/secure]
    [062107_091809625][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RR]
    [062107_091809625][][EXCEPTION] [DEBUG] [AMF_TOP]:[d01/oracle/devlappl/amf/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [MSC_TOP]:[d01/oracle/devlappl/msc/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [OKL_TOP]:[d01/oracle/devlappl/okl/11.5.0]
    [062107_091809625][][EXCEPTION] [DEBUG] [APPLMAIL]:[NONE]
    [062107_091809625][][EXCEPTION] [DEBUG] [LNS_TOP]:[d01/oracle/devlappl/lns/11.5.0]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLCSF]:[d01/oracle/devlcomn/admin]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLORC]:[ar60run]
    [062107_091809626][][EXCEPTION] [DEBUG] [APPLORB]:[ar60runb]
    [062107_091809627][][EXCEPTION] [DEBUG] [IGC_TOP]:[d01/oracle/devlappl/igc/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ONT_TOP]:[d01/oracle/devlappl/ont/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [AD_TOP]:[d01/oracle/devlappl/ad/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [EAA_TOP]:[d01/oracle/devlappl/eaa/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ASL_TOP]:[d01/oracle/devlappl/asl/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ORG_ID]:[101]
    [062107_091809627][][EXCEPTION] [DEBUG] [APPLSQL]:[sql]
    [062107_091809627][][EXCEPTION] [DEBUG] [ZPB_TOP]:[d01/oracle/devlappl/zpb/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [NLS_LANG]:[American_America.WE8ISO8859P15]
    [062107_091809627][][EXCEPTION] [DEBUG] [BIL_TOP]:[d01/oracle/devlappl/bil/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [CN_TOP]:[d01/oracle/devlappl/cn/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [GML_TOP]:[d01/oracle/devlappl/gml/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [AR_TOP]:[d01/oracle/devlappl/ar/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [IEU_TOP]:[d01/oracle/devlappl/ieu/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [LUSRSRW]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/xirusr.o]
    [062107_091809627][][EXCEPTION] [DEBUG] [XNM_TOP]:[d01/oracle/devlappl/xnm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FV_TOP]:[d01/oracle/devlappl/fv/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [ABM_TOP]:[d01/oracle/devlappl/abm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [CLN_TOP]:[d01/oracle/devlappl/cln/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FORMS60_SESSION]:[TRUE]
    [062107_091809627][][EXCEPTION] [DEBUG] [JTM_TOP]:[d01/oracle/devlappl/jtm/11.5.0]
    [062107_091809627][][EXCEPTION] [DEBUG] [FNDSM_SCRIPT]:[d01/oracle/devlcomn/admin/scripts/DEVL_prometheus/gsmstart.sh]
    [062107_091809627][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPLGRAF]:[graphs]
    [062107_091809628][][EXCEPTION] [DEBUG] [CRP_TOP]:[d01/oracle/devlappl/crp/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [POA_TOP]:[d01/oracle/devlappl/poa/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [CHV_TOP]:[d01/oracle/devlappl/chv/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [SPCCHANL]:[ ]
    [062107_091809628][][EXCEPTION] [DEBUG] [AMS_TOP]:[d01/oracle/devlappl/ams/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [AF_LD_LIBRARY_PATH]:[d01/oracle/devlora/iAS/lib:/d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809628][][EXCEPTION] [DEBUG] [IAS_ORACLE_HOME]:[d01/oracle/devlora/iAS]
    [062107_091809628][][EXCEPTION] [DEBUG] [MCS]:[echo mcs]
    [062107_091809628][][EXCEPTION] [DEBUG] [WSH_TOP]:[d01/oracle/devlappl/wsh/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [REPORTS60_PRE]:[&5555]
    [062107_091809628][][EXCEPTION] [DEBUG] [PAY_TOP]:[d01/oracle/devlappl/pay/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [FORMS60_LOV_INITIAL]:[5000]
    [062107_091809628][][EXCEPTION] [DEBUG] [BOM_TOP]:[d01/oracle/devlappl/bom/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [FNDREVIVERPID]:[d01/oracle/devlappl/fnd/11.5.0/log/reviver.sh_DEVL_prometheus.pid]
    [062107_091809628][][EXCEPTION] [DEBUG] [DB_ID]:[devl]
    [062107_091809628][][EXCEPTION] [DEBUG] [FORMS60_DISABLE_UNPAD_LOV]:[FALSE]
    [062107_091809628][][EXCEPTION] [DEBUG] [ICX_TOP]:[d01/oracle/devlappl/icx/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPCPNAM]:[REQID]
    [062107_091809628][][EXCEPTION] [DEBUG] [APPLLIB]:[lib]
    [062107_091809628][][EXCEPTION] [DEBUG] [CUI_TOP]:[d01/oracle/devlappl/cui/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [HRI_TOP]:[d01/oracle/devlappl/hri/11.5.0]
    [062107_091809628][][EXCEPTION] [DEBUG] [CSM_TOP]:[d01/oracle/devlappl/csm/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [CONTEXT_FILE]:[d01/oracle/devlappl/admin/DEVL_prometheus.xml]
    [062107_091809629][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [062107_091809629][][EXCEPTION] [DEBUG] [ECX_TOP]:[d01/oracle/devlappl/ecx/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [RCM_TOP]:[d01/oracle/devlappl/rcm/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809629][][EXCEPTION] [DEBUG] [FORMS60_NONBLOCKING_SLEEP]:[100]
    [062107_091809629][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [062107_091809629][][EXCEPTION] [DEBUG] [MSO_TOP]:[d01/oracle/devlappl/mso/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [IMC_TOP]:[d01/oracle/devlappl/imc/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [OKX_TOP]:[d01/oracle/devlappl/okx/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [FF_TOP]:[d01/oracle/devlappl/ff/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [XLA_TOP]:[d01/oracle/devlappl/xla/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [REPORTS60_NO_DUMMY_PRINTER]:[YES]
    [062107_091809629][][EXCEPTION] [DEBUG] [FUN_TOP]:[d01/oracle/devlappl/fun/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [PATH]:[d01/oracle/devlora/iAS/Apache/perl/bin:/d01/oracle/devlora/8.0.6/bin:/d01/oracle/devlappl/fnd/11.5.0/bin:/d01/oracle/devlappl/ad/11.5.0/bin:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/bin:/d01/oracle/devlcomn/util/unzip/unzip/unzip-5.50::/d01/oracle/devlora/8.0.6/bin:/usr/bin:/usr/ccs/bin:/usr/sbin:/usr/bin:/usr/ccs/bin:/bin]
    [062107_091809629][][EXCEPTION] [DEBUG] [PON_TOP]:[d01/oracle/devlappl/pon/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [OLDPWD]:[home/applmgr]
    [062107_091809629][][EXCEPTION] [DEBUG] [FORMS60_REJECT_GO_DISABLED_ITEM]:[0]
    [062107_091809629][][EXCEPTION] [DEBUG] [AP_TOP]:[d01/oracle/devlappl/ap/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [IES_TOP]:[d01/oracle/devlappl/ies/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [EAM_TOP]:[d01/oracle/devlappl/eam/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [WMS_TOP]:[d01/oracle/devlappl/wms/11.5.0]
    [062107_091809629][][EXCEPTION] [DEBUG] [VEH_TOP]:[d01/oracle/devlappl/veh/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [GR_TOP]:[d01/oracle/devlappl/gr/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [EGO_TOP]:[d01/oracle/devlappl/ego/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [OKI_TOP]:[d01/oracle/devlappl/oki/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [IBY_TOP]:[d01/oracle/devlappl/iby/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [EVM_TOP]:[d01/oracle/devlappl/evm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [BIX_TOP]:[d01/oracle/devlappl/bix/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [APPLRSC]:[resource]
    [062107_091809630][][EXCEPTION] [DEBUG] [CSL_TOP]:[d01/oracle/devlappl/csl/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [AHM_TOP]:[d01/oracle/devlappl/ahm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [CZ_TOP]:[d01/oracle/devlappl/cz/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [FEM_TOP]:[d01/oracle/devlappl/fem/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [QP_TOP]:[d01/oracle/devlappl/qp/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [LUSRLIB]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/libusr.a]
    [062107_091809630][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [062107_091809630][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [062107_091809630][][EXCEPTION] [DEBUG] [FLM_TOP]:[d01/oracle/devlappl/flm/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [USER_ID]:[1194]
    [062107_091809630][][EXCEPTION] [DEBUG] [TOOLS_CONFIG_HOME]:[d01/oracle/devlora/8.0.6]
    [062107_091809630][][EXCEPTION] [DEBUG] [MRP_TOP]:[d01/oracle/devlappl/mrp/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [FND_SECURE]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus]
    [062107_091809630][][EXCEPTION] [DEBUG] [DISPLAY]:[prometheus:0.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [BSC_TOP]:[d01/oracle/devlappl/bsc/11.5.0]
    [062107_091809630][][EXCEPTION] [DEBUG] [PJI_TOP]:[d01/oracle/devlappl/pji/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [JA_TOP]:[d01/oracle/devlappl/ja/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [POM_TOP]:[d01/oracle/devlappl/pom/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [GMI_TOP]:[d01/oracle/devlappl/gmi/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [QA_TOP]:[d01/oracle/devlappl/qa/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [OE_TOP]:[d01/oracle/devlappl/oe/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [APPLFRM]:[forms]
    [062107_091809631][][EXCEPTION] [DEBUG] [CUG_TOP]:[d01/oracle/devlappl/cug/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [XDP_TOP]:[d01/oracle/devlappl/xdp/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [OZF_TOP]:[d01/oracle/devlappl/ozf/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ORACLE_SID]:[FNDSM]
    [062107_091809631][][EXCEPTION] [DEBUG] [AHL_TOP]:[d01/oracle/devlappl/ahl/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [REPORTS60_TMP]:[d01/oracle/devlcomn/temp]
    [062107_091809631][][EXCEPTION] [DEBUG] [LUSRIAP]:[d01/oracle/devlappl/fnd/11.5.0/usrxit/xitusr.o]
    [062107_091809631][][EXCEPTION] [DEBUG] [IEC_TOP]:[d01/oracle/devlappl/iec/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ALR_TOP]:[d01/oracle/devlappl/alr/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [XXTRU_TOP]:[d01/oracle/devlappl/xxtru/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ADJRIOPTS]:[-mx512m]
    [062107_091809631][][EXCEPTION] [DEBUG] [OA_JAVA]:[d01/oracle/devlcomn/java]
    [062107_091809631][][EXCEPTION] [DEBUG] [SHLVL]:[0]
    [062107_091809631][][EXCEPTION] [DEBUG] [ISC_TOP]:[d01/oracle/devlappl/isc/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [PQH_TOP]:[d01/oracle/devlappl/pqh/11.5.0]
    [062107_091809631][][EXCEPTION] [DEBUG] [CLASSPATH]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/rt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/charsets.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809632][][EXCEPTION] [DEBUG] [ADPERLPRG]:[d01/oracle/devlora/iAS/Apache/perl/bin/perl]
    [062107_091809632][][EXCEPTION] [DEBUG] [FORMS60_WEB_CONFIG_FILE]:[d01/oracle/devlcomn/html/bin/appsweb_DEVL_prometheus.cfg]
    [062107_091809632][][EXCEPTION] [DEBUG] [PER_TOP]:[d01/oracle/devlappl/per/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [XNI_TOP]:[d01/oracle/devlappl/xni/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [062107_091809632][][EXCEPTION] [DEBUG] [CUF_TOP]:[d01/oracle/devlappl/cuf/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [FORMS60_MESSAGE_ENCRYPTION]:[TRUE]
    [062107_091809632][][EXCEPTION] [DEBUG] [XDO_TOP]:[d01/oracle/devlappl/xdo/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [GHR_TOP]:[d01/oracle/devlappl/ghr/11.5.0]
    [062107_091809632][][EXCEPTION] [DEBUG] [OAM_TOP]:[d01/oracle/devlcomn/java/oracle/apps]
    [062107_091809633][][EXCEPTION] [DEBUG] [BIV_TOP]:[d01/oracle/devlappl/biv/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [PCC]:[$(ORACLE_HOME)/bin/proc]
    [062107_091809633][][EXCEPTION] [DEBUG] [QOT_TOP]:[d01/oracle/devlappl/qot/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [IEB_TOP]:[d01/oracle/devlappl/ieb/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [ASG_TOP]:[d01/oracle/devlappl/asg/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [REPORTS60_PATH]:[d01/oracle/devlappl/au/11.5.0/plsql:/d01/oracle/devlappl/fnd/11.5.0/reports:/d01/oracle/devlappl/au/11.5.0/reports:/d01/oracle/devlappl/au/11.5.0/graphs:/d01/oracle/devlora/8.0.6/reports60/admin/printer]
    [062107_091809633][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [062107_091809633][][EXCEPTION] [DEBUG] [OZS_TOP]:[d01/oracle/devlappl/ozs/11.5.0]
    [062107_091809633][][EXCEPTION] [DEBUG] [APPLDCP]:[ON]
    [062107_091809633][][EXCEPTION] [DEBUG] [ZX_TOP]:[d01/oracle/devlappl/zx/11.5.0]
    [062107_091809639][][EXCEPTION] [DEBUG] [REPORTS60_SERVER_CONFDIR]:[d01/oracle/devlora/8.0.6/reports60/server]
    [062107_091809639][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [062107_091809639][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [062107_091809639][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.version]:[1.4.2_13-b06]
    [062107_091809639][][EXCEPTION] [DEBUG] [OVERRIDE_DBC]:[true]
    [062107_091809639][][EXCEPTION] [DEBUG] [dbcfile]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [062107_091809639][][EXCEPTION] [DEBUG] [path.separator]:[:]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [062107_091809639][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [062107_091809639][][EXCEPTION] [DEBUG] [user.country]:[US]
    [062107_091809639][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[unknown]
    [062107_091809639][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.dir]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.4.2_13-b06]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/endorsed]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.arch]:[i386]
    [062107_091809640][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[d01/oracle/devlappl/fnd/11.5.0/secure/DEVL_prometheus/devl.dbc]
    [062107_091809640][][EXCEPTION] [DEBUG] [request.requestid]:[464998]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[tmp]
    [062107_091809640][][EXCEPTION] [DEBUG] [line.separator]:[
    [062107_091809640][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.name]:[Linux]
    [062107_091809640][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [062107_091809640][][EXCEPTION] [DEBUG] [sun.java2d.fontpath]:[]
    [062107_091809640][][EXCEPTION] [DEBUG] [request.logfile]:[d01/oracle/devlcomn/admin/log/DEVL_prometheus/l464998.req]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.library.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386/client:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i386:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/../lib/i386:/d01/oracle/devlora/iAS/lib:/d01/oracle/devlora/8.0.6/network/jre11/lib/i686/native_threads:/d01/oracle/devlora/8.0.6/network/jre11/lib/linux/native_threads:/d01/oracle/devlappl/cz/11.5.0/bin:/d01/oracle/devlora/8.0.6/lib:/usr/X11R6/lib:/usr/openwin/lib]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.class.version]:[48.0]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.util.prefs.PreferencesFactory]:[java.util.prefs.FileSystemPreferencesFactory]
    [062107_091809640][][EXCEPTION] [DEBUG] [os.version]:[2.6.9-42.0.10.ELsmp]
    [062107_091809640][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[FALSE]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.home]:[home/applmgr]
    [062107_091809640][][EXCEPTION] [DEBUG] [user.timezone]:[America/Denver]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.print.PSPrinterJob]
    [062107_091809640][][EXCEPTION] [DEBUG] [file.encoding]:[ANSI_X3.4-1968]
    [062107_091809640][][EXCEPTION] [DEBUG] [java.specification.version]:[1.4]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.class.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/dt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//lib/tools.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13//jre/lib/rt.jar:/d01/oracle/devlcomn/java/appsborg2.zip:/d01/oracle/devlcomn/java/apps.zip:/d01/oracle/devlora/8.0.6/forms60/java:/d01/oracle/devlcomn/java]
    [062107_091809641][][EXCEPTION] [DEBUG] [user.name]:[applmgr]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.home]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [062107_091809641][][EXCEPTION] [DEBUG] [user.language]:[en]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.version]:[1.4.2_13]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.ext.dirs]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/ext]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/rt.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/i18n.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/sunrsasign.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/jsse.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/jce.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/lib/charsets.jar:/d01/oracle/devlcomn/util/java/1.4/j2sdk1.4.2_13/jre/classes]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [062107_091809641][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[2]
    [062107_091809641][][EXCEPTION] [DEBUG] [file.separator]:[]
    [062107_091809641][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [062107_091809641][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[]
    --XDOException
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeNewXSLStylesheet(XSLT10gR1.java:520)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:196)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:161)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1015)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:968)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:209)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1561)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:951)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5975)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3555)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3614)
    at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:815)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Caused by: java.io.IOException: Root problem: oracle.apps.xdo.XDOException:No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TER
    RITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    at oracle.xdo.parser.v2.XSLProcessor.reportException(XSLProcessor.java:782)
    at oracle.xdo.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:564)
    ... 17 more
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 21-JUN-2007 09:18:11
    ---------------------------------------------------------------------------

    Hi
    the error in the CM log is caused by the java code not being able to find the template file in the template manager. Please ensure the main and subtemplates are loaded to the instance correctly.
    I think the first error is similar just a little more cryptic.
    Regards
    tim

  • NullPointerException while sending signed XML via SOAP to Axis webservice

    Hello,
    I was wondering if it was possible to change the behavior of Apache XML Security libraries and delete "ds:" namespaces while digitally signing XML files.
    We are trying to send signed XML to a local chilean IRS, as a part of an automatic autentication process. The steps to authenticate are quite straightforward and involve:
    1. Obtain from webservice 1 a "seed", which is a random number representing temporal session opened
    2. Sign this seed (in XML format) using our certificate
    3. Send signed XML to another webservice 2, which should validate it and open a permanent session, returning a "token", which is an alphanumeric string
    What happens is that steps 1 and 2 are completed without problems, while we cannot pass step 3. The webservice (as far I know mounted on Apache Axis) fails with ugly error "NullPointerException".
    The IRS says that our signed XML, although valid, seems strange to them, as it contains those "ds:" added by Apache Xml Security libraries while signing the file.
    So here comes the question: is it possible to obtain valid signed XML without those "ds:"? What other reasons may result in that NullPointerException error?
    We use simple Java class and VeriSign certificate stored in Java keystore to sign XML files, and Apache Xml Security 1.2.0 jars.
    For any clues that could help us thank you in advance.
    Jack

    Hi,
    Few months ago we had also problems with "locked user" in XI, in our case XIAPPLUSER was sometimes (b)locked.
    Perhaps note:
    721548 Changing the passwords of the XI 3.0 service users
    will help you.
    We removed and entered the service users again, with the password in CAPITALS and language blank.
    After that our problem was solved, I hope yours too.
    Regards
    Jack

  • Urgent :-Need Help in DOtnet Dll integration with CFM 8. for error "java.lang.NullPointerException"

    Hi Everyone,
    I am trying to intergrate Dotnet DLL with coldfusion. The basic perpose of this DLL is putting value in cache.
    My code is working fine on my local machine but it giving me problem on live server.
    It is throwing "java.lang.NullPointerException" error.
    Description of task:-
    DLL:-
    made in : Dotnet 3.0
    Functions:-
    setCache:- setting a string into cache.
    getCache:- getting value from cache.
    ClearCache:- Clearing all value from Cache.
    Local Machine:-
    OS: window server 2003
    Coldfusion version :MX8
    coldfusion Product level:-Developer
    Result:-Task is working fine.No error what so ever.
    Live server:-
    OS: window server 2003
    Coldfusion version :MX8
    coldfusion Product level:-Standred
    Result:-Task is throwing error "java.lang.NullPointerException"

    Thanks for your response, but surely if the .NET Services was not running how can CF instantiate and dump the object with all the correct methods?
    Anyway for some strange reason there is no Coldfusion .NET service in my services control panel even though I am running CF8. I have since downloaded the .NET service installer, run it and done a restart but I can still see no such service and the error continues?
    I am running CF8 Dev on IIS 6 – Window XP pro and here is debug
    java.lang.NullPointerException
                   at com.jnbridge.jnbcore.clientTransports.d$b.close(Unknown Source)
                   at java.net.Socket.<init>(Socket.java:368)
                   at java.net.Socket.<init>(Socket.java:209)
                   at com.jnbridge.jnbcore.clientTransports.d$b.<init>(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.d.if(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.c.a(Unknown Source)
                   at com.jnbridge.jnbcore.clientTransports.f.a(Unknown Source)
                   at com.jnbridge.jnbcore.DotNetSideProxy.int(Unknown Source)
                   at com.jnbridge.jnbcore.DotNetSideProxy.getObjectStaticProperty(Unknown Source)
                   at System.Environment.Get_CurrentDirectory()
                   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                   at java.lang.reflect.Method.invoke(Method.java:597)
                   at coldfusion.runtime.java.JavaProxy.invoke(JavaProxy.java:87)
                   at coldfusion.runtime.dotnet.DotNetProxy.invoke(DotNetProxy.java:38)
                   at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2272)
                   at cftestDotNet2ecfm215937280.runPage(C:\Inetpub\wwwroot\his_clothing\testDotNet.cfm:20)
                   at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
                   at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
                   at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
                   at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:273)
                   at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
                   at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
                   at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
                   at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
                   at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
                   at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
                   at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
                   at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
                   at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
                   at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
                   at coldfusion.CfmServlet.service(CfmServlet.java:175)
                   at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
                   at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
                   at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
                   at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
                   at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
                   at jrun.servlet.FilterChain.service(FilterChain.java:101)
                   at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
                   at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
                   at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
                   at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
                   at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
                   at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
                   at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
                   at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
                   at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

  • Strange prob, can login only at the end of install, it fails after restart

    Hi Every body
    I have this strange problem, i don't know where i'm making mistake.
    I installed EBS more than 5 times, thought i have made some mistake with pre-installation requirement or post installation requireement, but every time i'm faced with the same problem.
    My machine configuration is P4, 3.0GHz, Ram 1 GB, 240 GB HD. with RHEL4 installed. Have created dba usergroup and created user oracle and applmgr made them part of dba group.
    I'm doing multi-user installation for Vision Demo data. Logged in as root.
    i created a top level directory /sz1/oracle and changed the permission as chmod -R 777 /sz1/oracle
    applied pre-installation patch 4198954 as root
    verified other pre-installation requirements as per installation guide.
    downloaded latest rapidwiz as per note p4159029.
    Started installation as root
    specified 'oracle' as owner for DATABASE
    specified 'applmgr' as owner for APPLICATION
    the installation completed with successfull checks on pre-installation requirements and post-installation checks.
    After the completion of installation, i logged in from windows client using the path,
    http://sri.shan.com:8001
    i get the installer home page, i chose the application links and logged in to OAM as sysadmin, verified the status. found concurrent manager was not started.
    started the concurrent manager manually by running the script sh adcmctl.sh as root. the service started successfully.
    then i re-started the Linux box, logged in as root and tried to run the script adstrtal.sh like
    <COMN_TOP>/admin/scripts/VIS_<hostname>/sh adstrtal.sh APPS/APPS
    i get the following error message, it is same in all 5 times of installation
    You are running adstrtal.sh version 115.14
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adapcctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adapcctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adalnctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adalnctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adcmctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adcmctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfrmctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfrmctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adrepctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adrepctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfmcctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfmcctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfmsctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/adfmsctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/jtffmctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/jtffmctl.sh start APPS/APPS
    Executing service control script:
    /sz1/oracle/viscomn/admin/scripts/VIS_sri/addisctl.sh start
    script returned
    ERROR:
    Exception in TimedProcess...Failed to execute command = /sz1/oracle/viscomn/admin/scripts/VIS_sri/addisctl.sh start APPS/APPS
    Check logfile /sz1/oracle/viscomn/admin/log/VIS_sri/10301137.log for details
    Exiting with status 9
    when i tried to run these scripts individually,
    all the scripts started successfully except adalnctl.sh failed
    the error message is
    adalnctl.sh version
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 1
    Then i logged in as applmgr, i can run the script adstrtal.sh successfully
    at this stage tried to login from windows client using following link,
    http://sri.shan.com:8001/oa_servlets/AppsLogin
    on the browser i get the following error message
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log
    I stuck at this stage and do not know how to proceed.
    Verified the Jserv status as per the metalink note 204123.1, 230688.1. and 311932.1
    I get the 'IsItworking' page and 'Hello' page with out any trouble.
    When i checked the mod_jserv.log file(located at APPL_TOP/Apache/Jserv/logs)
    i get the following data
    [30/10/2005 11:19:24:439] (ERROR) ajp12: Servlet Error: java.lang.NullPointerException: null
    [30/10/2005 11:19:24:456] (ERROR) an error returned handling request via protocol"ajpv12"
    [30/10/2005 11:19:24:456] (ERROR) balance : 4552 internal servlet error in server sri.shan.com:16010
    [30/10/2005 11:19:24:456] (ERROR) an error returned handling request via protocol "balance"
    Any guidance on this issue will be highly appreciable and helpful for me to proceed.
    Thanks in Advance to All..
    shan

    Hello Yogi
    Tried as you have suggested
    Following is the outcome..
    The Adconfig script did not succeed.
    Following is the response i got..
    error while running adconfig.sh as applmgr
    updating context file... completed
    upload of context file and templates to database... completed
    configuring templates from all of the producttops...
    all with status completed
    Autoconfig completed with errors.
    the logfile for this session is located at APPL_TOP/admin/VIS_<hostname>/log/11031117/adconfig.log
    While checking for this log file i found one more on the same path.
    It is named 'NetServiceHandler.log'
    I have provided a Patial Content of the 'adconfig.log' file
    as below
    I think i'm making a mistake of running this script with out starting the db..
    But i don't know where to find the script to start the db..
    Starting AutoConfig at Thu Nov 3 11:17:39 2005
    No Version conflict encountered
    using context file : /sz1/oracle/visappl/dmin/VIS_sri_xml
    Starting synchronization of file system context file and its templates with those in the database
    Database connection : Failed
    OAM Context editing support feature: Unverified
    OAM Customization support feature ; Unverified
    File system template : APPL_TOP/ad/11.5.0/admin/template/adxmlctx.tmp
    Checking for customization to Context template
    Warning: Unable to connect to Database
    Config Tool CVMHelper started at Thu Nov 03 11:17:47 IST 2005
    Making database connection using DBUtil
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector()-->
    APPS_JDBC_URL='jdbc:orale:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=SRI.shan.com)(PORT=1522)))(CONNECT_DATA=(SID=VIS)))'
    Trying to connect using APPS_JDBC_URL
    Exception occured: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to get connection using SID based connect descriptor
    getConnection()-->
    sDbHost : sri
    sDbDomain : shan.com
    sDbPort : 1522
    sDbSid : VIS
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID()-->
    JDBC URL: jdbc:oracle:thin:@sri.shan.com:1522:VIS
    Exception occured: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    for all the remaining connections also got similar error
    Connection could not be obtained; returning null
    ----------ADX Database Utility Finished----------
    StackTrace:
    java.sql.SQLException: Could not get connection to the database
    Starting synchronization of product tops
    AutoConfig Setup Phase
    Running Setup Process 5 of 13 for AD_TOP
    Executing script in InstantiateFile:
    COMN_TOP/admin/install/VIS_sri/adgendbc.sh
    script returned:
    adgendbc.sh started at Thu nov 3 11:18::14 IST 2005
    SQL*Plus: Release 8.0.6.0.0 - Production on Thu nov 3 11:18:44 IST 2005
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    ERROR:
    ORA-12224: TNS:no listener
    [AutoConfig Error Report]
    all the filenames in Setup phase and Profile phase has error code 1
    apply pahse files has the error code 256
    Autoconfig is exiting with status 49
    The error in all the places points to absence of TNS listener
    Can you please advice on this....
    Thanks in Advance
    shanmugam

Maybe you are looking for

  • Imovie HD   not working/improting mini dv

    I am having truble with imovie HD, the icon on the dock does not look right, when I open it up, it gives me the three options in text, none of which will do anything when clicked on, there is no picture in the opened widow and when I have my mini DV

  • Open doc not working

    Hi frds, I am using r3 created one webi report when i open the report in view mode and run the report,report does not showing any hyper link path I am really confusing please help me out. Thanks.. Edited by: send2madhuk on Oct 21, 2011 11:27 AM Edite

  • Material valuation based on Invoice price

    Dear SAPERS, Please provide some help regarding one of my clients requirement. My client wants to calculate the material cost or price based on FIFO invoice price at the time of Issuing materials from store to any consumption.(instead of standard or

  • 6.0.2 Beachballing

    Updated to 6.0.2 last night and now Safari is beachballing after about 30 seconds on certain sites specifically bbc news, tgdaily, appleinsider.  If I navigate around something simple, say Google News, then it's fine. Have emptied the cache to no ava

  • How to use the SQVI in HR-ABAP

    Dear Guru, How to use Quick Viewer in HR ABAP, kindly give some sample materials for this . else provide some soluytion for this . Regards, Mathankumar.A