Error getting Constructor[] from class.getConstructors()

Hi,
I am trying to use java.lang.reflect package as under:
import java.lang.reflect.*;
import java.lang.reflect.Constructor;
public class reflects1
public reflects1(String str) {
     System.out.println("string constructor");
public static void main(String args[])
String name = args[0];
System.out.println("classname is:" + name);
try {
Class cls = Class.forName("reflects1");
     Class[] param1 = {String.class};
Constructor const = cls.getConstructor(param1);
     } catch (Exception ex) {}
I always get following two compilation errors:
1) Invalid Expression Statement: Constructor[] const = cls.getConstructor(param1);
2) ; expected, Constructor[] const = cls.getConstructor(param1);
Please let me know if you see any problem with this statement.
Thanks.

You seem to be mixing getConstructor and getConstructors, which are two separate methods, only the latter returns an array.

Similar Messages

  • Error getting property from bean.

    Hi,
    I get the above error message. I have no idea why. My getters and setter seem to be fine, they worked fine until I put some System.out.println("")'s in them, then I get this error. So I took them out and now it complains about other properties which have the same code in them (the getters) that they had before when it was complaining about the first properties.
    I've included the code below:
    500 Internal Server Error
    javax.faces.el.PropertyNotFoundException: Error getting property 'AuApprovalIndCheckboxDisabled' from bean of type com.cde.fedapp.view.backing.CdeAdminScreen     at com.sun.faces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:127)     at com.sun.faces.el.impl.ArraySuffix.evaluate(ArraySuffix.java:187)     at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:171)     at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)     at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:160)     at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:143)     at oracle.adf.view.faces.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:55)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getDisabled(EditableValueRenderer.java:227)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.FormInputRenderer.renderDisabledAttribute(FormInputRenderer.java:57)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.SimpleSelectBooleanRenderer.encodeAllAsElement(SimpleSelectBooleanRenderer.java:98)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.FormElementRenderer.encodeAll(FormElementRenderer.java:48)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.delegateRenderer(CoreRenderer.java:281)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.renderFieldCellContents(InputLabelAndMessageRenderer.java:115)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer._renderFieldCell(LabelAndMessageRenderer.java:293)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer.encodeAll(LabelAndMessageRenderer.java:163)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.encodeAll(InputLabelAndMessageRenderer.java:94)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(RowLayoutRenderer.java:95)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelGroupRenderer._encodeChild(PanelGroupRenderer.java:147)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelGroupRenderer._encodeChildren(PanelGroupRenderer.java:124)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelGroupRenderer.encodeAll(PanelGroupRenderer.java:72)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(RowLayoutRenderer.java:95)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(RowLayoutRenderer.java:95)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(RowLayoutRenderer.java:95)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.RowLayoutRenderer.renderChild(RowLayoutRenderer.java:95)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode._renderComponent(UIComponentUINode.java:317)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:262)     at oracle.adfinternal.view.faces.uinode.UIComponentUINode.render(UIComponentUINode.java:239)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderChild(BaseRenderer.java:412)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:330)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderIndexedChild(BaseRenderer.java:222)     at oracle.adfinternal.view.faces.ui.BaseRenderer.renderContent(BaseRenderer.java:129)     at oracle.adfinternal.view.faces.ui.BaseRenderer.render(BaseRenderer.java:81)     at oracle.adfinternal.view.faces.ui.laf.base.xhtml.XhtmlLafRenderer.render(XhtmlLafRenderer.java:69)     at oracle.adfinternal.view.faces.uinode.UIXComponentUINode.renderInternal(UIXComponentUINode.java:177)     at oracle.adfinternal.view.faces.uinode.UINodeRendererBase.encodeEnd(UINodeRendererBase.java:53)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:54)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:242)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeAllChildren(CoreRenderer.java:265)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:65)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:117)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:147)     at oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:60)     at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)     at oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)     at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:645)     at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:568)     at oracle.adf.view.faces.webapp.UIXComponentTag.doEndTag(UIXComponentTag.java:100)     at cdeAdminScreen.jspService(_cdeAdminScreen.java:1283)     [cdeAdminScreen.jsp]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:287)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)     at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:287)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)     at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)     at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)     at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:623)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)     at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)     at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    CdeAdminScreen.java:
    package com.cde.fedapp.view.backing;
    import com.cde.fedapp.Adminstrator.AdmnHelper;
    import com.cde.fedapp.Adminstrator.AdmnVO;
    import com.cde.fedapp.common.Page;
    import java.sql.Connection;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Locale;
    import javax.faces.component.UINamingContainer;
    import javax.faces.component.UISelectItems;
    import javax.faces.component.html.HtmlForm;
    import javax.faces.component.html.HtmlOutputText;
    import javax.faces.component.html.HtmlPanelGroup;
    import javax.faces.context.FacesContext;
    import javax.faces.el.VariableResolver;
    import javax.faces.event.ActionEvent;
    import javax.faces.model.SelectItem;
    import oracle.adf.view.faces.component.core.input.CoreSelectBooleanCheckbox;
    import oracle.adf.view.faces.component.core.input.CoreSelectManyCheckbox;
    import oracle.adf.view.faces.component.core.input.CoreSelectOneListbox;
    import oracle.adf.view.faces.component.core.layout.CorePanelGroup;
    import oracle.adf.view.faces.component.core.nav.CoreCommandButton;
    import oracle.adf.view.faces.component.core.output.CoreObjectSpacer;
    import oracle.adf.view.faces.component.core.output.CoreOutputText;
    import oracle.adf.view.faces.component.html.HtmlBody;
    import oracle.adf.view.faces.component.html.HtmlCellFormat;
    import oracle.adf.view.faces.component.html.HtmlHead;
    import oracle.adf.view.faces.component.html.HtmlHtml;
    import oracle.adf.view.faces.component.html.HtmlRowLayout;
    import oracle.adf.view.faces.component.html.HtmlTableLayout;
    import oracle.jdbc.pool.OracleDataSource;
    public class CdeAdminScreen {
    private HtmlHtml html1;
    private HtmlHead head1;
    private HtmlBody body1;
    private HtmlForm form1;
    private HtmlTableLayout tableLayout1;
    private HtmlRowLayout rowLayout1;
    private HtmlCellFormat cellFormat1;
    private UINamingContainer menu;
    private HtmlCellFormat cellFormat2;
    private HtmlTableLayout tableLayout2;
    private HtmlRowLayout rowLayout2;
    private HtmlCellFormat cellFormat3;
    private UINamingContainer header;
    private HtmlRowLayout rowLayout3;
    private HtmlCellFormat cellFormat4;
    private HtmlRowLayout rowLayout4;
    private HtmlCellFormat cellFormat5;
    private UINamingContainer footer;
    private HtmlTableLayout tableLayout3;
    private HtmlRowLayout rowLayout5;
    private HtmlCellFormat cellFormat6;
    private HtmlRowLayout rowLayout6;
    private HtmlCellFormat cellFormat7;
    private HtmlPanelGroup panelGroup1;
    private HtmlPanelGroup panelGroup2;
    private HtmlOutputText outputText1;
    private HtmlOutputText outputText2;
    private HtmlRowLayout rowLayout7;
    private HtmlCellFormat cellFormat8;
    private CoreObjectSpacer objectSpacer1;
    private HtmlRowLayout rowLayout8;
    private HtmlCellFormat cellFormat9;
    private CoreObjectSpacer objectSpacer2;
    private HtmlRowLayout rowLayout9;
    private HtmlCellFormat cellFormat10;
    private HtmlOutputText outputText3;
    private HtmlRowLayout rowLayout10;
    private HtmlCellFormat cellFormat11;
    private HtmlTableLayout tableLayout4;
    private HtmlRowLayout rowLayout11;
    private HtmlCellFormat cellFormat12;
    private HtmlPanelGroup panelGroup3;
    private HtmlOutputText outputText4;
    private HtmlCellFormat cellFormat121;
    private HtmlCellFormat cellFormat13;
    private HtmlRowLayout rowLayout12;
    private HtmlCellFormat cellFormat14;
    private HtmlCellFormat cellFormat15;
    private HtmlCellFormat cellFormat16;
    private HtmlCellFormat cellFormat17;
    private HtmlCellFormat cellFormat18;
    //Non-JDeveloper generated Stuff, aka my stuff.
    //private SelectItem selectedAdmnVO = new SelectItem(new AdmnVO(), "Select Admin Unit - Grant Fund Source"); //Bound to value of SelectOneMenu1.
    private AdmnVO selectedAdmnVO = initAdmnVO(); //Bound to selected admn unit in select listbox.
    private List approvedItems = new ArrayList(); //Bound to f:selectItems list of approved admn budgets in SelectOneMenu1 items
    private List approvalCheckedBoxes; //Bound to checkboxes in selectManyCheckbox1;
    private FacesContext context = FacesContext.getCurrentInstance();
    private VariableResolver vr = context.getApplication().getVariableResolver();
    private OracleDataSource ods = (OracleDataSource)vr.resolveVariable(context, "ods");
    private AdmnHelper admnHelper = (AdmnHelper)vr.resolveVariable(context, "admnHelper");
    private boolean auApprovalIndCheckboxDisabled = false;
    private boolean cdeInitApprovalIndCheckboxDisabled = false;
    private boolean cdeFinApprovalIndCheckboxDisabled = false;
    private boolean auApprovalIndCheckboxSelected;
    private boolean cdeInitApprovalIndCheckboxSelected;
    private boolean cdeFinApprovalIndCheckboxSelected;
    private CoreSelectOneListbox selectOneListbox11;
    private UISelectItems selectItems2;
    private HtmlPanelGroup panelGroup5;
    private HtmlOutputText outputText6;
    private CoreOutputText outputText5;
    private CoreSelectManyCheckbox selectManyCheckbox1;
    private UISelectItems selectItems1;
    private HtmlTableLayout tableLayout5;
    private HtmlRowLayout rowLayout13;
    private HtmlCellFormat cellFormat19;
    private HtmlRowLayout rowLayout14;
    private HtmlCellFormat cellFormat20;
    private HtmlRowLayout rowLayout15;
    private HtmlCellFormat cellFormat21;
    private HtmlCellFormat cellFormat22;
    private HtmlCellFormat cellFormat23;
    private HtmlCellFormat cellFormat24;
    private HtmlCellFormat cellFormat25;
    private HtmlCellFormat cellFormat26;
    private HtmlCellFormat cellFormat27;
    private CoreCommandButton commandButton1;
    private CorePanelGroup panelGroup4;
    private HtmlTableLayout tableLayout6;
    private HtmlRowLayout rowLayout16;
    private HtmlRowLayout rowLayout17;
    private HtmlRowLayout rowLayout18;
    private HtmlCellFormat cellFormat28;
    private HtmlCellFormat cellFormat29;
    private HtmlCellFormat cellFormat30;
    private CoreSelectBooleanCheckbox selectBooleanCheckbox11;
    private CoreSelectBooleanCheckbox selectBooleanCheckbox21;
    private CoreSelectBooleanCheckbox selectBooleanCheckbox3;
    public CdeAdminScreen(){
    System.out.println("Constructor: Begin CdeAdminScreen().");
    //this.init();
    System.out.println("Constructor: End CdeAdminScreen().");
    //Initialize AdmnVO, might want to do this in AdmnVO after search code and confirm it won't break.
    private AdmnVO initAdmnVO() {
    System.out.println("Begin initAdmnVO():");
    AdmnVO admnVO = new AdmnVO();
    admnVO = new AdmnVO(); //Bound to selected admn unit in select listbox.
    admnVO.setAdmnCode("");
    admnVO.setAdmnName("");
    admnVO.setAU_APPROVAL_DATE("");
    admnVO.setAU_APPROVAL_IND("");
    admnVO.setAU_APPROVED(false);
    admnVO.setBudgetFunds("");
    admnVO.setBudgetProjects("");
    admnVO.setCDE_FIN_APPROVAL_DATE("");
    admnVO.setCDE_FIN_APPROVAL_IND("");
    admnVO.setCDE_FIN_APPROVED(false);
    admnVO.setCDE_INIT_APPROVAL_DATE("");
    admnVO.setCDE_INIT_APPROVAL_IND("");
    admnVO.setCDE_INIT_APPROVED(false);
    admnVO.setContractFunds("");
    admnVO.setContractProjects("");
    admnVO.setGRANT_SOURCE_CODE("");
    admnVO.setGRANT_SOURCE_DESC("");
    admnVO.setStaffFunds("");
    admnVO.setStaffProjects("");
    System.out.println("End initAdmnVO():");
    return admnVO;
    public AdmnVO getSelectedAdmnVO() {
    boolean value = false;
    String name = "";
    System.out.println("getSelectedAdmnVO: 1.0: Begin getSelectedAdmnVO().");
    value = selectedAdmnVO.getAU_APPROVED();
    name = selectedAdmnVO.getAdmnName();
    System.out.println("getSelectedAdmnVO: selectedAdmnVO.AdmnName = " + name + selectedAdmnVO.getGRANT_SOURCE_DESC());
    if (value) System.out.println("getSelectedAdmnVO: selectedAdmnVO.AU_APPROVED = true");
    else System.out.println("getSelectedAdmnVO: selectedAdmnVO.AU_APPROVED = false");
    value = selectedAdmnVO.getCDE_INIT_APPROVED();
    if (value) System.out.println("getSelectedAdmnVO: selectedAdmnVO.CDE_INIT_APPROVED = true");
    else System.out.println("getSelectedAdmnVO: selectedAdmnVO.CDE_INIT_APPROVED = false");
    value = selectedAdmnVO.getCDE_FIN_APPROVED();
    if (value) System.out.println("getSelectedAdmnVO: selectedAdmnVO.CDE_FIN_APPROVED = true");
    else System.out.println("getSelectedAdmnVO: selectedAdmnVO.CDE_FIN_APPROVED = false");
    System.out.println("getSelectedAdmnVO: 1.1: End getSelectedAdmnVO().");
    return selectedAdmnVO;
    public void setSelectedAdmnVO(AdmnVO a_AdmnVO) {
    boolean value = false;
    System.out.println("SETSELECTEDADMNVO(): 1: Begin setSelectedItem().");
    this.selectedAdmnVO = a_AdmnVO;
    System.out.println("SETSELECTEDADMNVO(): The selected AU is " + selectedAdmnVO.getAdmnName() + "-" + selectedAdmnVO.getGRANT_SOURCE_DESC());
    System.out.println("SETSELECTEDADMNVO(): 1.0: SETSELECTEDADMNVO()().");
    value = selectedAdmnVO.getAU_APPROVED();
    if (value) System.out.println("SETSELECTEDADMNVO(): 1.1: selectedAdmnVO.AU_APPROVED = true");
    else System.out.println("SETSELECTEDADMNVO(): 1.1: selectedAdmnVO.AU_APPROVED = false");
    value = selectedAdmnVO.getCDE_INIT_APPROVED();
    if (value) System.out.println("SETSELECTEDADMNVO(): 1.2: selectedAdmnVO.CDE_INIT_APPROVED = true");
    else System.out.println("SETSELECTEDADMNVO(): 1.2: selectedAdmnVO.CDE_INIT_APPROVED = false");
    value = selectedAdmnVO.getCDE_FIN_APPROVED();
    if (value) System.out.println("SETSELECTEDADMNVO(): 1.3: selectedAdmnVO.CDE_FIN_APPROVED = true");
    else System.out.println("SETSELECTEDADMNVO(): 1.3: selectedAdmnVO.CDE_FIN_APPROVED = false");
    System.out.println("SETSELECTEDADMNVO(): 1.3: End SETSELECTEDADMNVO().");
    public List getApprovedItems() {
    Page approvals = null;
    Connection conn = null;
    AdmnVO admnVO = null;
    String admnCode = "";
    String admnName = "";
    String label = "";
    String fundDesc = "";
    SelectItem item = null;
    approvedItems.clear();
    //= new ArrayList();
    System.out.println("Begin getApprovedItems().");
    try {
    conn = ods.getConnection();
    admnHelper.setConnection(conn);
    //admnHelper.setCurrentAdmnPage(admnPage);
    approvals = admnHelper.getStatReportPage(); //TODO: Copy this to AdmnHelper.getApprovals() {Semantics}
    conn.close();
    } catch (Exception e) {
    // TODO: Post a Message to the screen
    System.out.println("getApprovedItems(). Got DB error.");
    System.out.println("getApprovedItems(): Back From DB.");
    item = new SelectItem(selectedAdmnVO, "Select Admin Unit - Grant Fund Source");
    System.out.println("getApprovedItems(): 1.0.");
    approvedItems.add(item);
    System.out.println("getApprovedItems(): 1.1.");
    Iterator iter = approvals.getList().iterator();
    System.out.println("getApprovedItems(): 1.2.");
    while (iter.hasNext()) {
    admnVO = (AdmnVO)iter.next();
    label = "";
    if (admnVO.getAU_APPROVED()) System.out.println("getApprovedItems: AU_APPROVED is true");
    else System.out.println("getApprovedItems: AU_APPROVED is false");
    if (admnVO.getCDE_INIT_APPROVED()) System.out.println("getApprovedItems: CDE_INIT_APPROVED is true");
    else System.out.println("getApprovedItems: CDE_INIT_APPROVED is false");
    if (admnVO.getCDE_FIN_APPROVED()) System.out.println("getApprovedItems: CDE_FIN_APPROVED is true");
    else System.out.println("getApprovedItems: CDE_FIN_APPROVED is false");
    admnName = admnVO.getAdmnName();
    admnCode = admnVO.getAdmnCode();
    fundDesc = admnVO.getGRANT_SOURCE_DESC();
    if (admnCode != null) {
    label = admnName + " - " + fundDesc;
    System.out.println("getApprovedItems(): AdmnName = " + label);
    item = new SelectItem(admnVO, label);
    approvedItems.add(item);
    System.out.println("getApprovedItems(): 1.3.");
    System.out.println("End getApprovedItems().");
    return approvedItems;
    public String resetApproval() {
    System.out.println("resetApproval(): Begin resetApproval().");
    System.out.println("resetApproval() - 1.0");
    System.out.println("resetApproval() - 1.1");
    System.out.println("resetApproval() - 1.2");
    System.out.println("resetApproval() - 1.3");
    //System.out.println("resetApproval(): Event Info:");
    //System.out.println("resetApproval(): The event's phase is [" + event.getPhaseId().toString());
    //System.out.println("resetApproval(): The event's source is [" + event.getSource().toString());
    System.out.println("");
    System.out.println("resetApproval(): Selected Admin Unit INFO:");
    System.out.println("resetApproval(): Selected Admin Unit is " +
    selectedAdmnVO.getAdmnName());
    System.out.println("resetApproval(): Selected Admin Unit Code is " +
    selectedAdmnVO.getAdmnCode());
    System.out.println("resetApproval(): Selected Admin Unit's Grant Fund Source is " +
    selectedAdmnVO.getGRANT_SOURCE_CODE());
    System.out.println("resetApproval(): Selected Admin Unit's au approval flag is " +
    selectedAdmnVO.getAU_APPROVAL_IND());
    System.out.println("resetApproval(): Selected Admin Unit's cde-init-approval flag is " +
    selectedAdmnVO.getCDE_INIT_APPROVAL_IND());
    System.out.println("resetApproval(): Selected Admin Unit's cde-fin-approval flag is " +
    selectedAdmnVO.getCDE_FIN_APPROVAL_IND());
    System.out.println("");
    System.out.println("");
    System.out.println("resetApproval(): Checkbox INFO:");
    //if (selectBooleanCheckbox11.isSelected()){
    System.out.println("The au checkbox value as string is " + auApprovalIndCheckboxSelected);
    if (auApprovalIndCheckboxSelected){
    System.out.println("The au approval checkbox is selected.");
    } else {
    System.out.println("The au approval checkbox is NOT selected.");
    if (selectBooleanCheckbox21.isSelected()){
    System.out.println("The cde init approval checkbox is selected.");
    } else {
    System.out.println("The cde init approval checkbox is NOT selected.");
    if (selectBooleanCheckbox3.isSelected()){
    System.out.println("The cde final approval checkbox is selected.");
    } else {
    System.out.println("The cde final approval checkbox is NOT selected.");
    System.out.println("resetApproval(): The AU APROVAL CHECKBOX SELECTED VALUE IS: " + selectBooleanCheckbox11.isSelected());
    System.out.println("resetApproval(): The CDE INIT APROVAL SELECTED CHECKBOX VALUE IS: " + selectBooleanCheckbox21.getValue());
    System.out.println("resetApproval(): The CDE FIN APROVAL CHECKBOX SELECTED VALUE IS: " + selectBooleanCheckbox3.getValue());
    //System.out.println("resetApproval(): The CDE FIN APROVAL CHECKBOX VALUE IS: " + selectBooleanCheckbox3.getSubmittedValue());
    return "failure";
    public void setSelectBooleanCheckbox11(CoreSelectBooleanCheckbox selectBooleanCheckbox11) {
    this.selectBooleanCheckbox11 = selectBooleanCheckbox11;
    public CoreSelectBooleanCheckbox getSelectBooleanCheckbox11() {
    return selectBooleanCheckbox11;
    public void setSelectBooleanCheckbox21(CoreSelectBooleanCheckbox selectBooleanCheckbox21) {
    this.selectBooleanCheckbox21 = selectBooleanCheckbox21;
    public CoreSelectBooleanCheckbox getSelectBooleanCheckbox21() {
    return selectBooleanCheckbox21;
    public void setSelectBooleanCheckbox3(CoreSelectBooleanCheckbox selectBooleanCheckbox3) {
    this.selectBooleanCheckbox3 = selectBooleanCheckbox3;
    public CoreSelectBooleanCheckbox getSelectBooleanCheckbox3() {
    return selectBooleanCheckbox3;
    public boolean getAuApprovalIndCheckboxDisabled(){
    if ((this.selectedAdmnVO.getAU_APPROVAL_IND() != null) && (this.selectedAdmnVO.getAU_APPROVAL_IND().equalsIgnoreCase("Y"))) return false;
    else return true;
    public void setAuApprovalIndCheckboxDisabled(boolean disabled){
    this.auApprovalIndCheckboxDisabled = disabled;
    public boolean getCdeInitApprovalIndCheckboxDisabled(){
    if ((this.selectedAdmnVO.getCDE_INIT_APPROVAL_IND() != null) && (this.selectedAdmnVO.getCDE_INIT_APPROVAL_IND().equalsIgnoreCase("Y"))) return false;
    else return true;
    public void setCdeInitApprovalIndCheckboxDisabled(boolean disabled){
    this.cdeInitApprovalIndCheckboxDisabled = disabled;
    public boolean getCdeFinApprovalIndCheckboxDisabled(){
    if ((this.selectedAdmnVO.getCDE_FIN_APPROVAL_IND() != null) && (this.selectedAdmnVO.getCDE_FIN_APPROVAL_IND().equalsIgnoreCase("Y"))) return false;
    else return true;
    public void setCdeFinApprovalIndCheckboxDisabled(boolean disabled){
    this.cdeFinApprovalIndCheckboxDisabled = disabled;
    public boolean getAuApprovalIndCheckboxSelected(){
    System.out.println("The FUCKING Checkbox is: " + auApprovalIndCheckboxSelected);
    return auApprovalIndCheckboxSelected;
    public void setAuApprovalIndCheckboxSelected(boolean selected){
    this.auApprovalIndCheckboxSelected = selected;
    System.out.println("The FUCKING Checkbox is: " + auApprovalIndCheckboxSelected);
    public boolean getCdeInitApprovalIndCheckboxSelected(){
    return cdeInitApprovalIndCheckboxSelected;
    public void setCdeInitApprovalIndCheckboxSelected(boolean selected){
    this.cdeInitApprovalIndCheckboxSelected = selected;
    public boolean getCdeFinApprovalIndCheckboxSelected(){
    return cdeFinApprovalIndCheckboxSelected;
    public void setCdeFinApprovalIndCheckboxSelected(boolean selected){
    this.cdeFinApprovalIndCheckboxSelected = selected;
    public void setApprovedItems(List items) {
    System.out.println("Begin SETAPPROVEDITEMS().");
    this.approvedItems = items;
    System.out.println("End SETAPPROVEDITEMS().");
    public void setApprovalCheckedBoxes(List approvalCheckedBoxes) {
    System.out.println("Begin SETAPPROVALCHECKBOXES().");
    this.approvalCheckedBoxes = approvalCheckedBoxes;
    System.out.println("End SETAPPROVALCHECKBOXES().");
    public void setHtml1(HtmlHtml html1) {
    this.html1 = html1;
    public HtmlHtml getHtml1() {
    return html1;
    public void setHead1(HtmlHead head1) {
    this.head1 = head1;
    public HtmlHead getHead1() {
    return head1;
    public void setBody1(HtmlBody body1) {
    this.body1 = body1;
    public HtmlBody getBody1() {
    return body1;
    public void setForm1(HtmlForm form1) {
    this.form1 = form1;
    public HtmlForm getForm1() {
    return form1;
    public void setTableLayout1(HtmlTableLayout tableLayout1) {
    this.tableLayout1 = tableLayout1;
    public HtmlTableLayout getTableLayout1() {
    return tableLayout1;
    public void setRowLayout1(HtmlRowLayout rowLayout1) {
    this.rowLayout1 = rowLayout1;
    public HtmlRowLayout getRowLayout1() {
    return rowLayout1;
    public void setCellFormat1(HtmlCellFormat cellFormat1) {
    this.cellFormat1 = cellFormat1;
    public HtmlCellFormat getCellFormat1() {
    return cellFormat1;
    public void setMenu(UINamingContainer menu) {
    this.menu = menu;
    public UINamingContainer getMenu() {
    return menu;
    public void setCellFormat2(HtmlCellFormat cellFormat2) {
    this.cellFormat2 = cellFormat2;
    public HtmlCellFormat getCellFormat2() {
    return cellFormat2;
    public void setTableLayout2(HtmlTableLayout tableLayout2) {
    this.tableLayout2 = tableLayout2;
    public HtmlTableLayout getTableLayout2() {
    return tableLayout2;
    public void setRowLayout2(HtmlRowLayout rowLayout2) {
    this.rowLayout2 = rowLayout2;
    public HtmlRowLayout getRowLayout2() {
    return rowLayout2;
    public void setCellFormat3(HtmlCellFormat cellFormat3) {
    this.cellFormat3 = cellFormat3;
    public HtmlCellFormat getCellFormat3() {
    return cellFormat3;
    public void setHeader(UINamingContainer header) {
    this.header = header;
    public UINamingContainer getHeader() {
    return header;
    public void setRowLayout3(HtmlRowLayout rowLayout3) {
    this.rowLayout3 = rowLayout3;
    public HtmlRowLayout getRowLayout3() {
    return rowLayout3;
    public void setCellFormat4(HtmlCellFormat cellFormat4) {
    this.cellFormat4 = cellFormat4;
    public HtmlCellFormat getCellFormat4() {
    return cellFormat4;
    public void setRowLayout4(HtmlRowLayout rowLayout4) {
    this.rowLayout4 = rowLayout4;
    public HtmlRowLayout getRowLayout4() {
    return rowLayout4;
    public void setCellFormat5(HtmlCellFormat cellFormat5) {
    this.cellFormat5 = cellFormat5;
    public HtmlCellFormat getCellFormat5() {
    return cellFormat5;
    public void setFooter(UINamingContainer footer) {
    this.footer = footer;
    public UINamingContainer getFooter() {
    return footer;
    public void setTableLayout3(HtmlTableLayout tableLayout3) {
    this.tableLayout3 = tableLayout3;
    public HtmlTableLayout getTableLayout3() {
    return tableLayout3;
    public void setRowLayout5(HtmlRowLayout rowLayout5) {
    this.rowLayout5 = rowLayout5;
    public HtmlRowLayout getRowLayout5() {
    return rowLayout5;
    public void setCellFormat6(HtmlCellFormat cellFormat6) {
    this.cellFormat6 = cellFormat6;
    public HtmlCellFormat getCellFormat6() {
    return cellFormat6;
    public void setRowLayout6(HtmlRowLayout rowLayout6) {
    this.rowLayout6 = rowLayout6;
    public HtmlRowLayout getRowLayout6() {
    return rowLayout6;
    public void setCellFormat7(HtmlCellFormat cellFormat7) {
    this.cellFormat7 = cellFormat7;
    public HtmlCellFormat getCellFormat7() {
    return cellFormat7;
    public void setPanelGroup1(HtmlPanelGroup panelGroup1) {
    this.panelGroup1 = panelGroup1;
    public HtmlPanelGroup getPanelGroup1() {
    return panelGroup1;
    public void setPanelGroup2(HtmlPanelGroup panelGroup2) {
    this.panelGroup2 = panelGroup2;
    public HtmlPanelGroup getPanelGroup2() {
    return panelGroup2;
    public void setOutputText1(HtmlOutputText outputText1) {
    this.outputText1 = outputText1;
    public HtmlOutputText getOutputText1() {
    return outputText1;
    public void setOutputText2(HtmlOutputText outputText2) {
    this.outputText2 = outputText2;
    public HtmlOutputText getOutputText2() {
    return outputText2;
    public void setRowLayout7(HtmlRowLayout rowLayout7) {
    this.rowLayout7 = rowLayout7;
    public HtmlRowLayout getRowLayout7() {
    return rowLayout7;
    public void setCellFormat8(HtmlCellFormat cellFormat8) {
    this.cellFormat8 = cellFormat8;
    public HtmlCellFormat getCellFormat8() {
    return cellFormat8;
    public void setObjectSpacer1(CoreObjectSpacer objectSpacer1) {
    this.objectSpacer1 = objectSpacer1;
    public CoreObjectSpacer getObjectSpacer1() {
    return objectSpacer1;
    public void setRowLayout8(HtmlRowLayout rowLayout8) {
    this.rowLayout8 = rowLayout8;
    public HtmlRowLayout getRowLayout8() {
    return rowLayout8;
    public void setCellFormat9(HtmlCellFormat cellFormat9) {
    this.cellFormat9 = cellFormat9;
    public HtmlCellFormat getCellFormat9() {
    return cellFormat9;
    public void setObjectSpacer2(CoreObjectSpacer objectSpacer2) {
    this.objectSpacer2 = objectSpacer2;
    public CoreObjectSpacer getObjectSpacer2() {
    return objectSpacer2;
    public void setRowLayout9(HtmlRowLayout rowLayout9) {
    this.rowLayout9 = rowLayout9;
    public HtmlRowLayout getRowLayout9() {
    return rowLayout9;
    public void setCellFormat10(HtmlCellFormat cellFormat10) {
    this.cellFormat10 = cellFormat10;
    public HtmlCellFormat getCellFormat10() {
    return cellFormat10;
    public void setOutputText3(HtmlOutputText outputText3) {
    this.outputText3 = outputText3;
    public HtmlOutputText getOutputText3() {
    return outputText3;
    public void setRowLayout10(HtmlRowLayout rowLayout10) {
    this.rowLayout10 = rowLayout10;
    public HtmlRowLayout getRowLayout10() {
    return rowLayout10;
    public void setCellFormat11(HtmlCellFormat cellFormat11) {
    this.cellFormat11 = cellFormat11;
    public HtmlCellFormat getCellFormat11() {
    return cellFormat11;
    public void setTableLayout4(HtmlTableLayout tableLayout4) {
    this.tableLayout4 = tableLayout4;
    public HtmlTableLayout getTableLayout4() {
    return tableLayout4;
    public void setRowLayout11(HtmlRowLayout rowLayout11) {
    this.rowLayout11 = rowLayout11;
    public HtmlRowLayout getRowLayout11() {
    return rowLayout11;
    public void setCellFormat12(HtmlCellFormat cellFormat12) {
    this.cellFormat12 = cellFormat12;
    public HtmlCellFormat getCellFormat12() {
    return cellFormat12;
    public void setPanelGroup3(HtmlPanelGroup panelGroup3) {
    this.panelGroup3 = panelGroup3;
    public HtmlPanelGroup getPanelGroup3() {
    return panelGroup3;
    public void setOutputText4(HtmlOutputText outputText4) {
    this.outputText4 = outputText4;
    public HtmlOutputText getOutputText4() {
    return outputText4;
    public void setCellFormat121(HtmlCellFormat cellFormat121) {
    this.cellFormat121 = cellFormat121;
    public HtmlCellFormat getCellFormat121() {
    return cellFormat121;
    public void setCellFormat13(HtmlCellFormat cellFormat13) {
    this.cellFormat13 = cellFormat13;
    public HtmlCellFormat getCellFormat13() {
    return cellFormat13;
    public void setRowLayout12(HtmlRowLayout rowLayout12) {
    this.rowLayout12 = rowLayout12;
    public HtmlRowLayout getRowLayout12() {
    return rowLayout12;
    public void setCellFormat14(HtmlCellFormat cellFormat14) {
    this.cellFormat14 = cellFormat14;
    public HtmlCellFormat getCellFormat14() {
    return cellFormat14;
    public void setCellFormat15(HtmlCellFormat cellFormat15) {
    this.cellFormat15 = cellFormat15;
    public HtmlCellFormat getCellFormat15() {
    return cellFormat15;
    public void setCellFormat16(HtmlCellFormat cellFormat16) {
    this.cellFormat16 = cellFormat16;
    public HtmlCellFormat getCellFormat16() {
    return cellFormat16;
    public void setCellFormat17(HtmlCellFormat cellFormat17) {
    this.cellFormat17 = cellFormat17;
    public HtmlCellFormat getCellFormat17() {
    return cellFormat17;
    public void setCellFormat18(HtmlCellFormat cellFormat18) {
    this.cellFormat18 = cellFormat18;
    public HtmlCellFormat getCellFormat18() {
    return cellFormat18;
    public void setSelectOneListbox11(CoreSelectOneListbox selectOneListbox11) {
    this.selectOneListbox11 = selectOneListbox11;
    public CoreSelectOneListbox getSelectOneListbox11() {
    return selectOneListbox11;
    public void setSelectItems2(UISelectItems selectItems2) {
    this.selectItems2 = selectItems2;
    public UISelectItems getSelectItems2() {
    return selectItems2;
    public void setPanelGroup5(HtmlPanelGroup panelGroup5) {
    this.panelGroup5 = panelGroup5;
    public HtmlPanelGroup getPanelGroup5() {
    return panelGroup5;
    public void setOutputText6(HtmlOutputText outputText6) {
    this.outputText6 = outputText6;
    public HtmlOutputText getOutputText6() {
    return outputText6;
    public void setOutputText5(CoreOutputText outputText5) {
    this.outputText5 = outputText5;
    public CoreOutputText getOutputText5() {
    return outputText5;
    public void setSelectManyCheckbox1(CoreSelectManyCheckbox selectManyCheckbox1) {
    this.selectManyCheckbox1 = selectManyCheckbox1;
    public CoreSelectManyCheckbox getSelectManyCheckbox1() {
    return selectManyCheckbox1;
    public void setSelectItems1(UISelectItems selectItems1) {
    this.selectItems1 = selectItems1;
    public UISelectItems getSelectItems1() {
    return selectItems1;
    public void setTableLayout5(HtmlTableLayout tableLayout5) {
    this.tableLayout5 = tableLayout5;
    public HtmlTableLayout getTableLayout5() {
    return tableLayout5;
    public void setRowLayout13(HtmlRowLayout rowLayout13) {
    this.rowLayout13 = rowLayout13;
    public HtmlRowLayout getRowLayout13() {
    return rowLayout13;
    public void setCellFormat19(HtmlCellFormat cellFormat19) {
    this.cellFormat19 = cellFormat19;
    public HtmlCellFormat getCellFormat19() {
    return cellFormat19;
    public void setRowLayout14(HtmlRowLayout rowLayout14) {
    this.rowLayout14 = rowLayout14;
    public HtmlRowLayout getRowLayout14() {
    return rowLayout14;
    public void setCellFormat20(HtmlCellFormat cellFormat20) {
    this.cellFormat20 = cellFormat20;
    public HtmlCellFormat getCellFormat20() {
    return cellFormat20;
    public void setRowLayout15(HtmlRowLayout rowLayout15) {
    this.rowLayout15 = rowLayout15;
    public HtmlRowLayout getRowLayout15() {
    return rowLayout15;
    public void setCellFormat21(HtmlCellFormat cellFormat21) {
    this.cellFormat21 = cellFormat21;
    public HtmlCellFormat getCellFormat21() {
    return cellFormat21;
    public void setCellFormat22(HtmlCellFormat cellFormat22) {
    this.cellFormat22 = cellFormat22;
    public HtmlCellFormat getCellFormat22() {
    return cellFormat22;
    public void setCellFormat23(HtmlCellFormat cellFormat23) {
    this.cellFormat23 = cellFormat23;
    public HtmlCellFormat getCellFormat23() {
    return cellFormat23;
    public void setCellFormat24(HtmlCellFormat cellFormat24) {
    this.cellFormat24 = cellFormat24;
    public HtmlCellFormat getCellFormat24() {
    return cellFormat24;
    public void setCellFormat25(HtmlCellFormat cellFormat25) {
    this.cellFormat25 = cellFormat25;
    public HtmlCellFormat getCellFormat25() {
    return cellFormat25;
    public void setCellFormat26(HtmlCellFormat cellFormat26) {
    this.cellFormat26 = cellFormat26;
    public HtmlCellFormat getCellFormat26() {
    return cellFormat26;
    public void setCellFormat27(HtmlCellFormat cellFormat27) {
    this.cellFormat27 = cellFormat27;
    public HtmlCellFormat getCellFormat27() {
    return cellFormat27;
    public void setCommandButton1(CoreCommandButton commandButton1) {
    this.commandButton1 = commandButton1;
    public CoreCommandButton getCommandButton1() {
    return commandButton1;
    public void setPanelGroup4(CorePanelGroup panelGroup4) {
    this.panelGroup4 = panelGroup4;
    public CorePanelGroup getPanelGroup4() {
    return panelGroup4;
    public void setTableLayout6(HtmlTableLayout tableLayout6) {
    this.tableLayout6 = tableLayout6;
    public HtmlTableLayout getTableLayout6() {
    return tableLayout6;
    public void setRowLayout16(HtmlRowLayout rowLayout16) {
    this.rowLayout16 = rowLayout16;
    public HtmlRowLayout getRowLayout16() {
    return rowLayout16;
    public void setRowLayout17(HtmlRowLayout rowLayout17) {
    this.rowLayout17 = rowLayout17;
    public HtmlRowLayout getRowLayout17() {
    return rowLayout17;
    public void setRowLayout18(HtmlRowLayout rowLayout18) {
    this.rowLayout18 = rowLayout18;
    public HtmlRowLayout getRowLayout18() {
    return rowLayout18;
    public void setCellFormat28(HtmlCellFormat cellFormat28) {
    this.cellFormat28 = cellFormat28;
    public HtmlCellFormat getCellFormat28() {
    return cellFormat28;
    public void setCellFormat29(HtmlCellFormat cellFormat29) {
    this.cellFormat29 = cellFormat29;
    public HtmlCellFormat getCellFormat29() {
    return cellFormat29;
    public void setCellFormat30(HtmlCellFormat cellFormat30) {
    this.cellFormat30 = cellFormat30;
    public HtmlCellFormat getCellFormat30() {
    return cellFormat30;
    CdeAdminScreen.jsp:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/industrial/faces" prefix="afi"%>
    <f:view>
    <afh:html binding="#{backing_cdeAdminScreen.html1}" id="html1">
    <afh:head title="CDE Administration"
    binding="#{backing_cdeAdminScreen.head1}" id="head1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <link type="text/css" rel="stylesheet" href="edstyle.css"/>
    </afh:head>
    <afh:body binding="#{backing_cdeAdminScreen.body1}" id="body1">
    <h:form binding="#{backing_cdeAdminScreen.form1}" id="form1">
    <afh:tableLayout binding="#{backing_cdeAdminScreen.tableLayout1}"
    id="tableLayout1" width="100%">
    <afh:rowLayout binding="#{backing_cdeAdminScreen.rowLayout1}"
    id="rowLayout1">
    <afh:cellFormat binding="#{backing_cdeAdminScreen.cellFormat1}"
    id="cellFormat1">
    <f:subview id="menu" binding="#{backing_cdeAdminScreen.menu}">
    <jsp:include page="/menu-jsf.jsp" flush="true"/>
    </f:subview>
    </afh:cellFormat>
    <afh:cellFormat binding="#{backing_cdeAdminScreen.cellFormat2}"
    id="cellFormat2" valign="top">
    <afh:tableLayout binding="#{backing_cdeAdminScreen.tableLayout2}"
    id="tableLayout2">
    <afh:rowLayout binding="#{backing_cdeAdminScreen.rowLayout2}"
    id="rowLayout2">
    <afh:cellFormat binding="#{backing_cdeAdminScreen.cellFormat3}"
    id="cellFormat3" valign="top">
    <f:subview id="header"
    binding="#{backing_cde

    You are messing with the bean specifications, and the introspection process cannot interpret your class.
    Your setters & getters for booleans must conform to the following format:
        private boolean test=false;
        public void setTest(boolean test) {
            this.test = test;
        public boolean isTest() {
            return this.test;
        }So, in your case, it means that you should have something like:
        private boolean auApprovalIndCheckboxDisabled = false;
        private boolean cdeInitApprovalIndCheckboxDisabled = false;
        private boolean cdeFinApprovalIndCheckboxDisabled = false;
        private boolean auApprovalIndCheckboxSelected;
        public void setAuApprovalIndCheckboxDisabled(boolean auApprovalIndCheckboxDisabled) {
            this.auApprovalIndCheckboxDisabled = auApprovalIndCheckboxDisabled;
        public boolean isAuApprovalIndCheckboxDisabled() {
            return this.auApprovalIndCheckboxDisabled;
        public void setCdeInitApprovalIndCheckboxDisabled(boolean cdeInitApprovalIndCheckboxDisabled) {
            this.cdeInitApprovalIndCheckboxDisabled = cdeInitApprovalIndCheckboxDisabled;
        public boolean isCdeInitApprovalIndCheckboxDisabled() {
            return this.cdeInitApprovalIndCheckboxDisabled;
        public void setCdeFinApprovalIndCheckboxDisabled(boolean cdeFinApprovalIndCheckboxDisabled) {
            this.cdeFinApprovalIndCheckboxDisabled = cdeFinApprovalIndCheckboxDisabled;
        public boolean isCdeFinApprovalIndCheckboxDisabled() {
            return this.cdeFinApprovalIndCheckboxDisabled;
        public void setAuApprovalIndCheckboxSelected(boolean auApprovalIndCheckboxSelected) {
            this.auApprovalIndCheckboxSelected = auApprovalIndCheckboxSelected;
        public boolean isAuApprovalIndCheckboxSelected() {
            return this.auApprovalIndCheckboxSelected;
        public void setDummy(boolean dummy){
            System.out.println("doing nothing, just here for introspection to work");
        public boolean isDummy(){
            System.out.println("doing something in the getter");
            return this.isAuApprovalIndCheckboxDisabled()&&this.isCdeFinApprovalIndCheckboxDisabled();
        }Sorry if the example is not really relevant, but it should get you started.
    Cheers,
    adsm

  • Error getting metadata from WS

    Hi to All
    I wrote the WS and want to use it in my Dynpro DC, then created DynamicWSproxy for my WS with name LoggingProxy and import model to Dynpro using this proxy alias as defaultMetadataDestination and defaultExecutionDestination.
    Everything was fine - application works and got the correct result. But today i  get message:
      'com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Cannot create instance of model class for model model class name 'FindLogAgents' as this model class name does not exist in runtime metadata. Probably runtime WSDL and design-time WSDL 'http://<url:port>/LoggingServiceXX/Config1?wsdl&mode=sap_wsdl' are inconsistent.'
    This url was used to import model, but as far as I understand it, there must be some mistake. URL from LoggingProxy alias should be used instead of given url from error message in runtime. Visual admin shows that LoggingProxy exists and point to correct url location, basic authentication method used.
    Testing WS through WSNavigator is ok.
    5 apps use this service and all of them gives such message (but differs in class name)
    I try to reimport model in dynpro but got no changes.
    What I'm doing wrong?
    What part of code or setting I must check?
    The very strange situation that I test my application during one week and there were no errors.
    P.S. this is my first time developing and using web service.

    Hi Alexander,
    A couple of things you could try, this is in most cases due to the fact that the WSDL URL used during design time & the one used during runtime are not the same:
    - Check that WebDynpro tracing is setup as per note 742674.
    - Try & re-create the error & then check the defaultTrace for more error info.
    - Maybe also try re-importing ALL 5 apps with the correct runtime WSDL URL. The problem sometimes is that maybe one of the 5 apps could be using an older/different WSDL URL & if that app is executed then it invalidates the metadata contents in the cache for the 4 others that may be using the correct WSDL URL.
    - You could also try by re-starting the J2EE engine to refresh the metadata contents in the cache as this metadata is persistent.
    - Do a comparison between the WSDL URLs for 'http:///LoggingServiceXX/Config1?wsdl&mode=sap_wsdl' & for defaultMetadataDestination or re-import the model using the URL for defaultMetadataDestination instead (if different).
    - One last thing you could try, add an additional parameter to your WSDL URL that won't affect getting the WSDL like a version e.g. 'http:///LoggingServiceXX/Config1?wsdl&mode=sap_wsdl&version=1.0' to create a new cache key for the WSDL URL. Use with caution & try it with one of the 5 apps first. Remember that if you initiate a call from the other 4 apps using the same service & on the older WSDL URL then the cache contents might become inconsistent again.
    Regards, Trevor

  • Error getting value from collection to a date picker field

    Hi all,
    I'm stumble with getting correct data value from collection.
    The column is described as
    'wwv_flow_item.date_popup(3,null, c002, 'dd/mm/yyyy', 10, 10) purchase_date'
    This field is causing error: 'report error:
    ORA-01843: invalid month'
    I'm sure, c002 has correct value '08/08/2003' because I've temporarily changed description of the field to
    'htmldb_item.text(3,c002,10) purchase_date' that returned correct value.
    What can be wrong? I'm puzzled.
    Any suggestion please.

    Are you sure that when you used 'htmldb_item.text(3,c002,10) purchase_date' you got 08/08/yyyy and not 0808yyyy. I have seen that message often in Oracle (outside of HTMLDB) and it is normally when one assumes one format when it is actually another, or the leading zero gets dropped (08082005 becomes 8082005, which converts to 80/82/0205).

  • Error getting response from Webservice

    Hi
    I created a webservice from a WSDL file and deployed it to my weblogic 10.3
    Now when I invoke the webservice from my weblogic test client, I get the following as the response.
    *<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">*
    *<env:Header />*
    *<env:Body>*
    *<env:Fault>*
    *<faultcode>env:Server</faultcode>*
    *<faultstring />*
    *<detail>*
    *<bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0">java.lang.NullPointerException*
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType$ElementQNameProperty.access$000(ByNameRuntimeBindingType.java:314)
    at com.bea.staxb.runtime.internal.ByNameRuntimeBindingType.getMatchingElementProperty(ByNameRuntimeBindingType.java:253)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.findMatchingElementProperty(ByNameUnmarshaller.java:71)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:43)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshal(AttributeUnmarshaller.java:38)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.unmarshalElementProperty(LiteralUnmarshalResult.java:167)
    at com.bea.staxb.runtime.internal.LiteralUnmarshalResult.extractAndFillElementProp(LiteralUnmarshalResult.java:136)
    at com.bea.staxb.runtime.internal.ByNameUnmarshaller.deserializeContents(ByNameUnmarshaller.java:51)
    at com.bea.staxb.runtime.internal.AttributeUnmarshaller.unmarshal(AttributeUnmarshaller.java:38)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalBindingType(UnmarshalResult.java:179)
    at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalType(UnmarshalResult.java:217)
    at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshalType(UnmarshallerImpl.java:127)
    at weblogic.wsee.bind.runtime.internal.LiteralDeserializerContext.unmarshalType(LiteralDeserializerContext.java:72)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.internalDeserializeType(BaseDeserializerContext.java:172)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeType(BaseDeserializerContext.java:86)
    at weblogic.wsee.bind.runtime.internal.BaseDeserializerContext.deserializeWrappedElement(BaseDeserializerContext.java:135)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodePart(SoapDecoder.java:486)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParams(SoapDecoder.java:287)
    at weblogic.wsee.codec.soap11.SoapDecoder.decodeParts(SoapDecoder.java:172)
    at weblogic.wsee.codec.soap11.SoapDecoder.decode(SoapDecoder.java:125)
    at weblogic.wsee.codec.soap11.SoapCodec.decode(SoapCodec.java:180)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.decode(CodecHandler.java:139)
    at weblogic.wsee.ws.dispatch.server.CodecHandler.handleRequest(CodecHandler.java:40)
    at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
    at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
    at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
    at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
    at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
    at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
    at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    *</bea_fault:stacktrace>*
    *</detail>*
    *</env:Fault>*
    *</env:Body>*
    *</env:Envelope>*
    Can anyone please tell me what does this kind of fault mean? As I am new to webservices and dont have much idea about this kind of faults.
    Thanks
    Priyanka

    It is not finding the correct URL - hence the 404 - page not found error.
    Correct the URL and try again.

  • Error Getting Output From ICloudTask

    I went through the Azure Batch Tutorial for .NET and am having issues with getting the output from the ICloudTask. After waiting for the tasks to complete I have the coded below:
    foreach (ICloudTask task in listjob.ListTasks())
    string taskFileContent = task.GetTaskFile(Constants.StandardOutFileName).ReadAsString();
    Console.WriteLine("Task " + task.Name + " says:\n" + taskFileContent);
    It throws a System.AggregateException on task.GetTaskFile with an inner exception of:
    {"The remote server returned an error: (404) Not Found."}
    I did some research but haven't been able to determine why I am getting this error?

    I see in the sample that the second use of TaskStateMonitor (TSM) does not check for timeout...  We will add this and you might want too as well.  
    If the TSM times out you might want to confirm the pool has VMs and that they reach TVMState.Idle (i.e.: are available to run tasks).
    You do not mention the exact task state you see but it is possible for a task to be in the TaskState.Completed state and still not have a stdout.txt file.
    You could list the files with ICloudTask.ListTaskFiles(recursive: true) to see what files are actually there.
    Also you can check the exit code (ICloudTask.TaskExecutionInformation.ExitCode) and/or the the TaskSchedulingError (ICloudTask.TaskExecutionInformation.SchedulingErrro) to see if the task ran correctly.
    daryl
    ps: don't forget to ToString() the inner BatchException.  I posted to the forum earlier on this and there are data in the exception that can tell you more than "not found"... 

  • Error getting mail from Comcast

    We have multiple Comcast email accounts, but are getting error messages connecting to only ONE of them from only ONE of our Macs.
    I tried Comcast, but they say the problem is not with them, since we can access mail through browser.
    Settings seem to be the same for all accounts.
    Is there a way to "clear" settings for that account only? Or any other suggestions?

    I think the first thing to do would be to give your email account a fresh start.
    So I'd recommend deleting the account from the iPhone. After that reset your network settings (Settings> General> Reset> Reset Network Settings). Once your phone is back up, try re-adding the account to your iPhone.
    You can use the [iPhone Mail Helper|http://www.apple.com/support/iphone/mailhelper> if you need help re-adding the account.

  • Error getting waveform from LT264 by GPIB

    Hello,
    I installed the lclvxxxx driver for LeCroy scope LT264. I tried the example which came with the instrument driver. When I run it I get an error saying
    Error -1074126845 occurred at lcltxxxx Read Waveform.vi
    Possible reason(s):
    Driver Status:  (Hex 0xBFFA2003) Maximum time exceeded.
    Primary Error: (Hex 0xBFFA4001) Invalid instrument response.
    It seems that the example works fine until the moment that the waveform will actually be read.
    Anyone familiar with this problem?
    Thanks,
    Bart.

    Hi Srinivasa,
             What is the error you are getting?Did you try setting in all the values required for the Input paramater fields and structures?
    Regards,
    Uma.

  • Error occurred while preloading classes of security providers from jre/lib/

    Hello all,
    We are Upgrading our BW Production System with EHP1 Package.
    on the Step DEPLOY_ONLINE_DEPL the Upgrade stops and we get the error message
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: A file or directory in the path name does not e*
    *xist. jar:file:/usr/java14_64/jre/lib/ext/ibmjceprovider.jar
    I have checked the file Path and the Permission exist
    I have no Idea anymore
    Can you help us ?
    Best regards
    Vito Cecere

    Hi Vito,
    This issue looks similar to the following thread I believe the problem was with the SAPJSF user
    Cannot startup visual administrator due to UME logon client details changed

  • Error getting JPR configuration from SLD

    I get the following error (red ball) when I test my adapter configuration (SLD access) for http://sap.com/xi/XI/System:
    SLD host:port = netweaver1:50000
    Error getting JPR configuration from SLD. Exception: No entity of class SAP_BusinessSystem for DEV.SystemHome.netweaver1 found
    No access to get JPR configuration
    I have checked the other referenced notes but nothing yet has helped.  Does anyone have any suggestions on how I may resolve this issue?
    Thanks, Dave

    hi,
    see below links
    Have a look into SAP Note 809420,
    This might help you,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ac6de690-0201-0010-54ac-8923089dcc97
    JPR Adapter shows red!
    regards
    ajai

  • HelloClient.cpp(36) : error C2440: 'initializing' : cannot convert from 'class CORBA_WStringValue *' to '

    "HelloClient.cpp(36) : error C2440: 'initializing' : cannot convert from 'class CORBA_WStringValue *' to 'const char *'"Hi I am getting this error when I try toprint the value which I am getting fromthe RMI Implementation class.Thanks.

    What orb are you using in the client?
    LP wrote:
    "HelloClient.cpp(36) : error C2440: 'initializing' : cannot convert from 'class CORBA_WStringValue *' to 'const char *'"Hi I am getting this error when I try toprint the value which I am getting fromthe RMI Implementation class.Thanks.

  • I get this error msg - Permission denied for to webpage get property XPCComponents.classes

    A couple of days ago I started geting the error msg -Permission denied for to <webpage> get property XPCComponents.classes. It happens with every webpage I visit. If I hit the x in the upper righthand corner I can then access the page. This doesn't have in IE. Any ideas how I could fix this and why it started happening?

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''
    If you look in the Error Console for that '''XPCComponents.classes''' error, there should be a '''Source file: chrome://''' address which might give us information related to which extension is causing that message.
    Firefox button > Web Developer -> Error Console or just use {Ctrl + Shft + J} from the keyboard

  • Can't get stage from a constructor method. Why?

    Hi,
    I'm making a kind of image showcase, what has a fluid width and height, depending on browser window dimensions. Everything is okay, I have other kind of issue: in constructor function in this gallery class I can't use stage property, I have to get it from main class.
    Why Flash treats me this way and how I can avoid this currentStage variable?
    Main code:
    package dev {
         import flash.display.Sprite;
         import flash.display.StageScaleMode;
         import flash.display.StageAlign;
         import flash.display.MovieClip;
         import flash.events.Event;
         import UI.BackgroundImageRotator;
         public class Application extends Sprite {
              public function Application():void {
                   stage.scaleMode = StageScaleMode.NO_SCALE;
                   stage.align = StageAlign.TOP_LEFT;
                   trace("Start.");
                   var BIR = new BackgroundImageRotator(stage);
                   stage.addChild(BIR);
    BackgroundImageRotator class:
    package UI {
         import flash.display.MovieClip;
         import flash.events.Event;
         import flash.display.Stage;
         public class BackgroundImageRotator extends MovieClip {
              protected var currentStage:Stage;
              public function BackgroundImageRotator(currentStage:Stage):void {
                   this.x = 0;
                   this.y = 0;
                   this.currentStage = currentStage;
                   currentStage.addEventListener(Event.RESIZE, onStageResize);
              protected function onStageResize(evt:Event):void {
                   trace(stage.stageWidth + ' ' + stage.stageHeight);

    if you have a display object that will be added to the display list, you need to wait until it is added before you can reference its stage property.  ie, use the Event.ADDED_TO_STAGE event.
    otherwise, you must pass a stage reference to your class.

  • Getting a Java class from WSDL file

    Hello,
    I have a WSDL file at http://gis13.exp.sis.pitt.edu:8080/axis/services/BufferProcessorService?wsdlI would like to know how to get a java class file from the WSDL posted here.
    For instance, I have a class entitled InsightPoint. How do I get this from the WSDL to a java class in order to use it in my web service?
    Cheers,
    Chris

    Setareh,
    Here is an excerpt from the javadoc for ExceptionInInitializer:
    Signals that an unexpected exception has occurred in a static initializer
    or the initializer for a static variable.
    Before running your function in SQL*Plus, do the following:
    set serveroutput on size 1000000
    exec DBMS_JAVA.SET_OUTPUT(1000000)Then you may get more information. If you don't then you may find more details in the Oracle log files in the "bdump" destination. The following query will tell you where that is:
    select VALUE
      from V$PARAMETER
    where NAME = 'background_dump_dest'Then, if you are still having trouble, post the entire error message and stack trace, as well as your java code.
    Good Luck,
    Avi.

  • Powerpivot Error on Refresh -- "We couldn't get data from the data model..."

    I'm using Excel 2013 and Windows 8.1.  I have a spreadsheet I've been using for over a year, and I've just started getting this error message when I try to refresh the data.
    "We couldn't get data from the Data Model.  Here's the error message we got:
    The 'attributeRelationship' with 'AttributeID' - 'PuttDistCat9' doesn't exist in the collection"
    Any idea how I can fix this problem?  I haven't changed anything related to that particular attribute.  All the data is contained in separate sheets in the workbook, so there are no external sources of data.
    Thanks.
    Jean

    Thanks for all the suggestions.
    I found a slightly older version of the spreadsheet that still refreshes properly, so I don't think I have any issues with the version of Excel or Power Query.  (I've had this same error before, and I believe I applied the hotfix at that time.)
    I think this problem started after I updated a number of the date filters in the pivot tables.  I haven't made any changes to the data model, and the only updates I've made were to add data (which I do all the time), and to change the date filters on
    the pivot tables.
    As suggested, I added a new pivot table querying one table (the table with the attribute that shows up in the error message), and it worked fine.  I can also refresh this pivot table.
    Then I tried adding a pivot table which went against several tables in the data model (including the table in question).  The pivot table seemed to return that data properly.  However, when I tried to refresh it, I got the same error message ("we
    couldn't get data from the data model..."). 
    Dany also suggested running the queries one at a time to see which one is in error.  Without checking all the pivot tables, it appears that any which use the table "HolePlayedStrokes" generate the error (this is the table with the attribute
    mentioned in the error message).  Pivot Tables without that particular table seem to refresh OK.  Unfortunately, that is the main table in my data model, so most of the pivot tables use it.
    Any other suggestions?  I'd be happy to send a copy of the spreadsheet.
    Thanks for all the help.
    Jean

Maybe you are looking for

  • Can 2 computers use the same external lacie hard drive?

    hi thanks for any replies. working on some fcp projects ,we were wondering if its possible for 2 computers to be using the same external lacie terrabyte (lacie d2) cheers simon

  • Agent Up and Running, uploading, but host not discovered

    We recently rebooted one node in a two node RAC. When it came up we were having problems getting information in Enterprise manager. The agent comes up, uploads successfully and everything seem fine, but no updates in EM. We removed the host and all a

  • Ghost IP address on WAG320N router

    I want to set up internet access (from home) to a Filemaker programme I am running on my computer here at work. It is Peer-to-peer, NOT server to client. As far as I understand, in order to regularly connect, you need to have a static IP address to e

  • I lost my application center

    anybody know how to find it?

  • Exporting podcast alteres levels

    Hello there. I've been using Garageband for 18 months now to record and edit my podcast. Although I love the ease of use I get, the only niggle I have is as follows. Once I've exported my track as an MP3 to iTunes (which I thank upload and publish as