TDMS Get Property bug

I found a bug with tdms get property (in LV 8.5) basically if the Property Value output isn't wired then the Found Output may not return true when it should. I've attached an example, just probe the found output, and it'll return false if property value isn't wired and true if it is (you can just attach it to the case structure). Oddly if I attach an indicator to found and wire Property Value, then run it, I can remove the property value wire, and it'll work until I open the vi again.
Matt W.
Attachments:
Bug.zip ‏12 KB

That indeed is a bug. CAR # 4DRIL6WJ.  Good thing there's a workaround.
Thanks for letting us know,
Herbert

Similar Messages

  • [svn:fx-trunk] 12304: Updating to new OSMF to get some bug fixes.

    Revision: 12304
    Revision: 12304
    Author:   [email protected]
    Date:     2009-11-30 15:46:40 -0800 (Mon, 30 Nov 2009)
    Log Message:
    Updating to new OSMF to get some bug fixes.
    QE notes: -
    Doc notes: -
    Bugs: SDK-24195, SDK-24329
    Reviewer: -
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24195
        http://bugs.adobe.com/jira/browse/SDK-24329
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/osmf/src/org/osmf/media/LoadableMediaElement.as
        flex/sdk/trunk/frameworks/projects/osmf/src/org/osmf/media/MediaPlayer.as
        flex/sdk/trunk/frameworks/projects/osmf/src/org/osmf/utils/MediaFrameworkStrings.as

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • WUO-709: Unable to get Property: Open == Forms application using Webutil

    Hi everyone,
    I have configured Webutil and tested a demo application for loading excel data into a forms application. The application works just fine. Here is the code:
    DECLARE
    application Client_OLE2.Obj_Type;
    workbooks Client_OLE2.Obj_Type;
    workbook Client_OLE2.Obj_Type;
    worksheets Client_OLE2.Obj_Type;
    worksheet Client_OLE2.Obj_Type;
    filename                varchar2(2000);
    cell Client_OLE2.OBJ_TYPE;
    args Client_OLE2.OBJ_TYPE;
    cell_value varchar2(100);
    eod boolean:=false;
    j integer:=1;
    BEGIN
         -- The following set up communication with the excel spreadsheet
    application := Client_OLE2.create_obj('Excel.Application');
    Client_OLE2.set_property(application,'Visible','false');
    workbooks := Client_OLE2.Get_Obj_Property(application, 'Workbooks');
    args := Client_OLE2.CREATE_ARGLIST;
    Client_OLE2.add_arg(args, 'c:\test\test.xls');
    workbook := Client_OLE2.GET_OBJ_PROPERTY(workbooks,'Open',args);
    Client_OLE2.destroy_arglist(args);
    worksheets := Client_OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    worksheet := Client_OLE2.GET_OBJ_PROPERTY(application,'activesheet');
    --Go to the first record
    go_block('planets');
    first_record;
    loop
              If :system.record_status <> 'NEW' then
    create_record;
              end if;
    exit when eod;
         for k in 1..3 loop --3 fields per record
         args:= Client_OLE2.create_arglist;
    Client_OLE2.add_arg(args, j);
    Client_OLE2.add_arg(args, k);
    cell:= Client_OLE2.get_obj_property(worksheet, 'Cells', args);
    Client_OLE2.destroy_arglist(args);
    cell_value :=Client_OLE2.get_char_property(cell, 'Value');
    if upper(cell_value) = 'EOD' then
         eod:=true;
         Message('End of Data');
         exit;
    end if;
    --Could be done this way also ->
    /*if k =1 then
         :dept.deptno:=cell_value;
    end if;
    if k =2 then
         :dept.dname:=cell_value;
    end if;
    if k =3 then
         :dept.loc:=cell_value;
    end if;
    --Less code this way ->
    copy(cell_value,name_in('system.cursor_item'));
    next_item;
         end loop; --for
         j:=j+1;
    end loop;--main loop
    -- Release the Client_OLE2 object handles
    Client_OLE2.release_obj(cell);
    Client_OLE2.release_obj(worksheet);
    Client_OLE2.release_obj(worksheets);
    Client_OLE2.release_obj(workbook);
    Client_OLE2.release_obj(workbooks);
    Client_OLE2.invoke(application,'Quit');
    Client_OLE2.release_obj(application);
    END;
    -- cell_value :=Client_OLE2.get_num_property(cell, 'Value');
    The issue comes when I try to supply filename and path (here, c:\test\test.xls) through a file open dialog. I tried each of these:
    1.
    filename := client_get_file_name
    (directory_name => 'C:\'
    ,file_name => 'test'|| '.xls'
    ,file_filter => 'Excel (*.xls)|*.xls|'
    ,message => 'Select client side filename where App Server file will be saved'
    ,dialog_type => OPEN_FILE
    ,select_file => TRUE
    2.
    filename := Client_Get_File_Name(directory_name => 'C:\'
    ,file_name => null
    ,file_filter => null
    ,message => null
    ,dialog_type => null
    ,select_file => null
    3.
    filename := client_get_file_name ('','','','Select a file to Upload ',null,TRUE);
    On using the above, I DO get a file open box. However, after browsing and selecting a file, I am getting the error message:
    WUO-709 [OleFunctions.get_obj_property_args()] Unable to get Property: Open; Exception com.jacob.com.ComFailException: Can't map name to dispid: Open
    I have checked the documentation on 'WUO-709' but cannot seem to figure out why it's not working.
    Sorry for the lengthy description. Would greatly appreciate help on this.
    - Amit

    I forgot to mention that in the modified code, I am supplying 'filename' as:
    filename := client_get_file_name ('','','','Select a file to Upload ',null,TRUE);
    args := Client_OLE2.CREATE_ARGLIST;
    Client_OLE2.add_arg(args, filename);
    Thanks,
    Amit

  • SCRIPT5007: Unable to get property 'top' of undefined or null and too much recursion

    I am not sure about placing two questions into one post, but here it goes:
    The error above  "SCRIPT5007: Unable to get property 'top' of undefined or null" is coming from this function:
    Code: 
    $(function () { //this is the way to run your code at the DOM Ready event  $('a').click(function () { $('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top }, 1500); return false; });  });
    This is the effected code I believe that is causing the problem:
    Code: 
    scrollTop: $($(this).attr('href')).offset().top
    the error occurs when I click on a "clear" button in my form. My website is one long page and that function allows my navigation to slide up and down the site. Without it, everytime you click a nav, it jumps to that anchor.
    For the 2nd problem, the too much recursion, the problem lies within here:
    Code: 
    function () { if ($.isReady) return; imReady = true; $.each($.includeStates, function (url, state) { if (!state) return imReady = false }); if (imReady) { $.readyOld.apply($, arguments) } else { setTimeout(arguments.callee, 10) } }
    where the error is actually coming from the 2nd "function" script. This is part of the browser compatibility script for mozilla/opera at the top of the index page. Any help would be great. Thanks.

    Ahh I apologize. I simply was posting to JavaScript forums in hopes of
    finding a solution. Sorry for the mixup.

  • Exception:Error getting property 'add' from bean of type sample1.edit

    Hi when i try to build and run the applicaiton it is displaying that build and run is successful. But when i try to access the jsp page through the url then it is showing error as below.
    Exception Details:org.apache.jasper.JasperException
    Error getting property 'add' from bean of type sample1.edit
    Can anyone please help me out from this problem.
    Thank you in Advance.

    I solved the problem. The issue was everytime I was compiling only the JSP and the componenets couldn't recognize the bean methods.
    Now I am running the project after any changes.
    Thanks

  • Memory leak in "get property value (string)" ?

    Hi,
    I'm not sure which forum to post this to because it involves a combination of labview and teststand.  The error I'm getting is more teststand related so it is here.
    In our application, we have a labview queued state machine launched by a teststand step using "launch vi asynchronously".  In one of the states of this state machine, we are looping grabbing frames from a camera, querying a teststand using "get property value (string)", to overylay on the video on each frame.  This is so when we post process the video, we can tell what step(s) teststand was performing (we are writing a status string to a property from teststand as well).  Since this string has to be overlayed on the video for each frame to be visible when played back, this happens many many thousands of times over the multi hour test runs of the platform.  
    My problem is, after 22 hours or so of running, I get an error generated from the "get property value (string)", saying cannot create any more threads.  The only thing wired to this tool in our vi is sequence context, which is passed in when the vi is launched from teststand.  When opening the "get property value (string)" vi itself, it is very simple, consisting of a "aspropertyvalue" casting, reading of the string from the proprety, closing the aspropertyvalue reference, and exiting.  It does not seem like there should be any "threads" being created here, except for perhaps the vi itself executing. But in that case I would assume the OS itself would clean up after itself. 
    BTW, the OS I am testing on is win7 x64.  I did see this though running on our xp box once as well though, same amount of time.  It is very repeatable.  My next plan is to disable this get property value using a disable case, and run again, but I"m still wondering why this error is occurring.  Any help or insight will be appreciated.
    Thanks
    David Jenkinson
    Hi,I'm not sure which forum to post this to because it involves a combination of labview and teststand.  The error I'm getting is more teststand related so it is here.
    In our application, we have a labview queued state machine launched by a teststand step using "launch vi asynchronously".  In one of the states of this state machine, we are looping grabbing frames from a camera, querying a teststand using "get property value (string)", to overylay on the video on each frame.  This is so when we post process the video, we can tell what step(s) teststand was performing (we are writing a status string to a property from teststand as well).  Since this string has to be overlayed on the video for each frame to be visible when played back, this happens many many thousands of times over the multi hour test runs of the platform.  My problem is, after 22 hours or so of running, I get an error generated from the "get property value (string)", saying cannot create any more threads.  The only thing wired to this tool in our vi is sequence context, which is passed in when the vi is launched from teststand.  When opening the "get property value (string)" vi itself, it is very simple, consisting of a "aspropertyvalue" casting, reading of the string from the proprety, closing the aspropertyvalue reference, and exiting.  It does not seem like there should be any "threads" being created here, except for perhaps the vi itself executing.  There seems to be something going on behind the scenes of this get property value tool that isn't cleaning up after itself?
    BTW, the OS I am testing on is win7 x64.  I did see this though running on our xp box once as well though, same amount of time.  It is very repeatable.  My next plan is to disable this get property value using a disable case, and run again, but I"m still wondering why this error is occurring.  Any help or insight will be appreciated.
    Thanks
    David Jenkinson

    Hi David,
    Have you tried just using property node | Method Nodes instead of using the VI. There should be no difference but I think that VI is polymorphic ie the input with change depending on what's wired to it eg string, double etc.
    Regards
    Ray Farmer

  • HibernateSystemException: exception getting property value with CGLIB

    I am getting a hibernate exception error
    HibernateSystemException: exception getting property value with CGLIB
    does anyone know what it means?

    check the setter method for the property LANG_CD in com.dst.fourx.model.codeModel.CodeGroupDisplay.
    it must be like -
    setNlsLanguage(CodesGroup xyz) { ... }
    The paremeters must be objects, not the type of the database column. We can specify the actual field in CodesGroup which acts as the foreign key in CodeGroupDisplay in the "property-ref" attribute of <many-to-one> element in the mapping file for CodeGroupDisplay.
    This worked for me. Hope it works for you too.

  • Error getting property 'lovFieldValue' from bean of type LovItemBean

    Hi Team,
    We are currently using a form with one LOVform.
    I added a new LOVform.
    Now I'm getting this Error:
    500 Internal Server Error
    javax.faces.el.EvaluationException: javax.faces.el.EvaluationException: Error getting property 'lovFieldValue' from bean of type oracle.jheadstart.controller.jsf.bean.LovItemBean: java.lang.NullPointerException
    We are using JHeadstart 10.1.3.1.26.
    Where should I look for a cause?
    Should I post the complete trace?
    Thanks in advance.
    Erik

    Steven,
    This is the source:
    <?xml version='1.0' encoding="windows-1252"?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces"
    xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
    >
    <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
    doctype-system="http://www.w3.org/TR/html4/loose.dtd"
    doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/> <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <afh:html id="html">
    <afh:head title="#{createModes.CreateBenchmarks ? nls['INSERT_TITLE_BENCHMARKS'] : nls['VIEW_TITLE_BENCHMARK:#{bindings.BenchmarksClientName}']}" id="head">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <link rel="stylesheet" href="${pageContext.request.contextPath}/jheadstart/css/jhsStyles.css" type="text/css" id="jhsStyles"/>
    </afh:head>
    <afh:body id="body">
    <af:form id="dataForm" usesUpload='false'>
    <af:region id="pageConfig" regionType="oracle.jheadstart.region.pageConfig" value="#{bindings}"/>
    <afh:script id="hasPendingChanges" partialTriggers="BenchmarksClient" text="hasPendingChanges='#{hasPendingChanges}';"/>
    <af:panelPage title="#{createModes.CreateBenchmarks ? nls['INSERT_TITLE_BENCHMARKS'] : nls['VIEW_TITLE_BENCHMARK:#{bindings.BenchmarksClientName}']}" id="panelPage">
    <f:facet name="brandingAppContextual">
    <af:region id="brandingAppContextual" value="#{bindings}"
    regionType="oracle.jheadstart.region.brandingAppContextual"/>
    </f:facet>
    <f:facet name="branding">
    <af:region id="branding" value="#{bindings}"
    regionType="oracle.jheadstart.region.branding"/>
    </f:facet>
    <f:facet name="menuGlobal">
    <af:region id="menuGlobal" value="#{bindings}"
    regionType="oracle.jheadstart.region.menuGlobal"/>
    </f:facet>
    <!-- DEBUG:BEGIN:BREADCRUMB_AREA : default/pageComponent/breadcrumbArea.vm, nesting level: 2 -->
    <f:facet name="location">
    <af:menuPath var="bc" value="#{jhsBreadcrumbStack}" id="breadcrumbs">
    <f:facet name="nodeStamp">
    <af:commandLink action="#{bc.goToDestination}" text="#{bc.label}"
    immediate="true" onclick="return alertForChanges();" >
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
    <af:resetActionListener/>
    </af:commandLink>
    </f:facet>
    </af:menuPath>
    </f:facet><!-- DEBUG:END:BREADCRUMB_AREA : default/pageComponent/breadcrumbArea.vm, nesting level: 2-->
    <!-- DEBUG:BEGIN:PAGE_MENU : default/misc/menu/pageMenu.vm, nesting level: 2 -->
    <f:facet name="menu1">
    <af:region id="GbpServiceMenu1Tabs" value="#{bindings}" regionType="nl.openi.gbp.view.region.GbpServiceMenu1Tabs">
    <af:attribute name="selectedTab" value="Benchmarks"/>
    </af:region>
    </f:facet>
    <!-- DEBUG:END:PAGE_MENU : default/misc/menu/pageMenu.vm, nesting level: 2-->
    <f:facet name="messages">
    <af:messages id="messages"/>
    </f:facet>
    <!-- DEBUG:BEGIN:FORM_PAGE_CONTENT : default/page/formPageContent.vm, nesting level: 2 -->
    <f:facet name="actions">
    <af:panelButtonBar id="pageButtons">
    <!-- DEBUG:BEGIN:NEW_BUTTON : default/button/newButton.vm, nesting level: 3 -->
    <af:commandButton actionListener="#{bindings.CreateBenchmarks.execute}"
    action="CreateBenchmarks"
    textAndAccessKey="#{nls['NEW_BUTTON_LABEL_BENCHMARKS']}"
    rendered="#{!createModes.CreateBenchmarks }"
    immediate="true" onclick="return alertForChanges();" id="BenchmarksNewButton">
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
    <af:resetActionListener/>
    </af:commandButton>
    <!-- DEBUG:END:NEW_BUTTON : default/button/newButton.vm, nesting level: 3-->
    <!-- DEBUG:BEGIN:DELETE_BUTTON : default/button/deleteButton.vm, nesting level: 3 -->
    <!-- DEBUG:END:DELETE_BUTTON : default/button/deleteButton.vm, nesting level: 3-->
    <!-- DEBUG:BEGIN:SAVE_BUTTON : default/button/saveButton.vm, nesting level: 3 -->
    <af:commandButton actionListener="#{bindings.Commit.execute}"
    action="Commit" onclick="return validateForm('dataForm');"
    textAndAccessKey="#{nls['SAVE_BUTTON_LABEL_BENCHMARKS']}"
    id="BenchmarksSaveButton">
    <af:resetActionListener/>
    </af:commandButton>
    <!-- DEBUG:END:SAVE_BUTTON : default/button/saveButton.vm, nesting level: 3-->
    </af:panelButtonBar>
    </f:facet>
    <!-- DEBUG:BEGIN:FORM_GROUP : default/pageComponent/formGroup.vm, nesting level: 3 -->
    <!-- DEBUG:BEGIN:SEARCH_AREA : default/search/searchArea.vm, nesting level: 4 -->
    <!-- DEBUG:END:SEARCH_AREA : default/search/searchArea.vm, nesting level: 4-->
    <af:panelGroup rendered="#{bindings.BenchmarksIterator.findMode!='true'}" id="BenchmarksFormGroup">
    <af:outputFormatted value="#{nls['NO_ROWS_FOUND']}"
    styleUsage="pageStamp"
    rendered="#{!((bindings.BenchmarksIterator.currentRowIndexInRange!=-1 and bindings.BenchmarksIterator.findMode!='true'))}"
    id="BenchmarksNoRowsFound"/>
    <af:panelGroup rendered="#{(bindings.BenchmarksIterator.currentRowIndexInRange!=-1 and bindings.BenchmarksIterator.findMode!='true')}" id="BenchmarksFormContent" >
    <!-- DEBUG:BEGIN:FORM_BROWSE_BUTTONS : default/pageComponent/formBrowseButtons.vm, nesting level: 4 -->
    <af:region id="formBrowseButtonsBenchmarks"
    value="#{bindings}"
    rendered="#{bindings.BenchmarksIterator.estimatedRowCount>1 and !createModes.CreateBenchmarks and bindings.BenchmarksIterator.currentRowIndexInRange!=-1 and bindings.BenchmarksIterator.findMode!='true'}"
    regionType="oracle.jheadstart.region.formBrowseButtons">
    <af:attribute name="iteratorBinding"
    value="#{bindings.BenchmarksIterator}"/>
    <af:attribute name="firstBinding"
    value="#{bindings.FirstBenchmarks}"/>
    <af:attribute name="previousBinding"
    value="#{bindings.PreviousBenchmarks}"/>
    <af:attribute name="nextBinding"
    value="#{bindings.NextBenchmarks}"/>
    <af:attribute name="lastBinding"
    value="#{bindings.LastBenchmarks}"/>
    </af:region>
    <!-- DEBUG:END:FORM_BROWSE_BUTTONS : default/pageComponent/formBrowseButtons.vm, nesting level: 4-->
    <af:panelForm rows="1" maxColumns="1" width="10%" id="BenchmarksFormItems">
    <!-- DEBUG:BEGIN:FORM_LOV_ITEM : default/item/form/formLovItem.vm, nesting level: 4 -->
    <af:selectInputText id="BenchmarksClient" label="Client" partialTriggers = " BenchmarksClient" showRequired="false" columns="40" maximumLength="35" readOnly="#{!(createModes.CreateBenchmarks)}" value="#{BenchmarksClientLovItem.lovFieldValue}"
    autoSubmit="true"
    immediate="true"
    valueChangeListener="#{BenchmarksClientLovItem.validateWithLov}"
    binding="#{BenchmarksClientLovItem.lovField}"
    action="dialog:Clients" windowHeight="200" windowWidth="600"
    returnListener="#{BenchmarksClientLovItem.returnedFromLov}">
    </af:selectInputText>
    <!-- DEBUG:END:FORM_LOV_ITEM : default/item/form/formLovItem.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4 -->
    <af:inputText id="BenchmarksClientName" value="#{bindings.BenchmarksClientName.inputValue}" label="Client Name" partialTriggers = " BenchmarksClient" required="#{bindings.BenchmarksClientName.mandatory}" rows="#{bindings.BenchmarksClientName.displayHeight}" columns="40" maximumLength="50" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4 -->
    <af:inputText id="BenchmarksClientContact" value="#{bindings.BenchmarksClientContact.inputValue}" label="Client Contactperson" partialTriggers = " BenchmarksClient" required="#{bindings.BenchmarksClientContact.mandatory}" rows="1" columns="40" maximumLength="240" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4 -->
    <af:inputText id="BenchmarksClientContactDetails" value="#{bindings.BenchmarksClientContactDetails.inputValue}" label="Client Contact Details" partialTriggers = " BenchmarksClient" required="#{bindings.BenchmarksClientContactDetails.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4 -->
    <af:inputText id="BenchmarksGurIdRequestorOf" value="#{bindings.BenchmarksGurIdRequestorOf.inputValue}" label="GurIdRequestorOf" partialTriggers = " BenchmarksRequestor" required="#{bindings.BenchmarksGurIdRequestorOf.mandatory}" rows="#{bindings.BenchmarksGurIdRequestorOf.displayHeight}" columns="40" readOnly="#{!(createModes.CreateBenchmarks)}" >
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.BenchmarksGurIdRequestorOf.format}"/>
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4 -->
    <af:inputText id="BenchmarksLocation" value="" label="Location" required="#{bindings.BenchmarksLocation.mandatory}" rows="#{bindings.BenchmarksLocation.displayHeight}" columns="40" readOnly="true" >
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.BenchmarksLocation.format}"/>
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_DATE_FIELD : default/item/form/formDateField.vm, nesting level: 4 -->
    <af:selectInputDate id="BenchmarksRequiredDelDate" value="#{bindings.BenchmarksRequiredDelDate.inputValue}" label="Required Delivery Date" required="#{bindings.BenchmarksRequiredDelDate.mandatory}" readOnly="#{!(createModes.CreateBenchmarks)}" >
    <af:convertDateTime pattern="#{nls.datepattern}"/>
    </af:selectInputDate>
    <!-- DEBUG:END:FORM_DATE_FIELD : default/item/form/formDateField.vm, nesting level: 4-->
    <!-- DEBUG:BEGIN:FORM_RADIO_VERTICAL : default/item/form/formRadioVertical.vm, nesting level: 4 -->
    <af:selectOneRadio id="BenchmarksRequestType" value="#{bindings.BenchmarksRequestType.inputValue}" label="Request Type" required="#{bindings.BenchmarksRequestType.mandatory}" readOnly="#{!(createModes.CreateBenchmarks)}" layout="vertical" >
    <!-- DEBUG:BEGIN:STATIC_DOMAIN_OPTIONS : default/item/staticDomainOptions.vm, nesting level: 5 -->
    <af:selectItem id="SiBenchmarksRequestType1" value="A" label="Economic Analysis"/>
    <af:selectItem id="SiBenchmarksRequestType2" value="U" label="Updated Economic Analysis"/>
    <af:selectItem id="SiBenchmarksRequestType3" value="S" label="Special Purpose Benchmark"/>
    <af:selectItem id="SiBenchmarksRequestType4" value="I" label="Economic Indicator"/>
    <!-- DEBUG:END:STATIC_DOMAIN_OPTIONS : default/item/staticDomainOptions.vm, nesting level: 5-->
    </af:selectOneRadio>
    <!-- DEBUG:END:FORM_RADIO_VERTICAL : default/item/form/formRadioVertical.vm, nesting level: 4-->
    </af:panelForm>
    <af:objectSpacer height="10" id="BenchmarksFormRegionsSpacer"/>
    <!-- DEBUG:BEGIN:VERTICAL_REGION_CONTAINER : default/pageComponent/verticalRegionContainer.vm, nesting level: 4 -->
    <af:panelGroup id="BenchmarksRegionsPanelGroup">
    <af:panelGroup id="BenchmarksRegionsrcHorizontalPanelGroup">
    <!-- DEBUG:BEGIN:HORIZONTAL_REGION_CONTAINER : default/pageComponent/horizontalRegionContainer.vm, nesting level: 5 -->
    <afh:tableLayout id="BenchmarksrcHorizontalTableLayout">
    <afh:rowLayout valign="top" id="BenchmarksrcHorizontalRowLayout">
    <afh:cellFormat valign="top" id="BenchmarksrcHorizontalirSearch1Cell">
    <af:panelHeader text="Search Details Primary Function Secondary Function Geography" id="BenchmarksrcHorizontalirSearch1PanelHeader">
    <!-- DEBUG:BEGIN:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 6 -->
    <af:panelForm rows="1" maxColumns="2" width="100%" id="BenchmarksirSearch1PanelForm">
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCupPrimary" value="#{bindings.BenchmarksCupPrimary.inputValue}" label="CUP" required="#{bindings.BenchmarksCupPrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCutPrimary" value="#{bindings.BenchmarksCutPrimary.inputValue}" label="CUT" required="#{bindings.BenchmarksCutPrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksTnmmPrimary" value="#{bindings.BenchmarksTnmmPrimary.inputValue}" label="TNMM + (Ratio)" required="#{bindings.BenchmarksTnmmPrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksResalePrimary" value="#{bindings.BenchmarksResalePrimary.inputValue}" label="Resale Margin" required="#{bindings.BenchmarksResalePrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksGrossPrimary" value="#{bindings.BenchmarksGrossPrimary.inputValue}" label="Gross Margin" required="#{bindings.BenchmarksGrossPrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCostPrimary" value="#{bindings.BenchmarksCostPrimary.inputValue}" label="Cost Plus" required="#{bindings.BenchmarksCostPrimary.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCupGeography" value="#{bindings.BenchmarksCupGeography.inputValue}" label="" required="#{bindings.BenchmarksCupGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCutGeography" value="#{bindings.BenchmarksCutGeography.inputValue}" label="" required="#{bindings.BenchmarksCutGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksTnmmGeography" value="#{bindings.BenchmarksTnmmGeography.inputValue}" label="" required="#{bindings.BenchmarksTnmmGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksResaleGeography" value="#{bindings.BenchmarksResaleGeography.inputValue}" label="" required="#{bindings.BenchmarksResaleGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksGrossGeography" value="#{bindings.BenchmarksGrossGeography.inputValue}" label="" required="#{bindings.BenchmarksGrossGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksCostGeography" value="#{bindings.BenchmarksCostGeography.inputValue}" label="" required="#{bindings.BenchmarksCostGeography.mandatory}" rows="1" columns="25" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    </af:panelForm>
    <!-- DEBUG:END:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 6-->
    </af:panelHeader>
    </afh:cellFormat>
    <afh:cellFormat valign="top" id="BenchmarksrcHorizontalirTypeOfSaleCell">
    <af:panelHeader text="Type of Sale (Industry / Product)" id="BenchmarksrcHorizontalirTypeOfSalePanelHeader">
    <!-- DEBUG:BEGIN:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 6 -->
    <af:panelForm rows="1" maxColumns="1" width="100%" id="BenchmarksirTypeOfSalePanelForm">
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksWholesaleIndProd" value="#{bindings.BenchmarksWholesaleIndProd.inputValue}" label="Wholesale Distributor" required="#{bindings.BenchmarksWholesaleIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksLimitedIndProd" value="#{bindings.BenchmarksLimitedIndProd.inputValue}" label="Limited Risk Distibutor" required="#{bindings.BenchmarksLimitedIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksAgentIndProd" value="#{bindings.BenchmarksAgentIndProd.inputValue}" label="Agent" required="#{bindings.BenchmarksAgentIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksRetailIndProd" value="#{bindings.BenchmarksRetailIndProd.inputValue}" label="Retail" required="#{bindings.BenchmarksRetailIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksManufactoringIndProd" value="#{bindings.BenchmarksManufactoringIndProd.inputValue}" label="Manufactoring" required="#{bindings.BenchmarksManufactoringIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksRdIndProd" value="#{bindings.BenchmarksRdIndProd.inputValue}" label="R &amp; D" required="#{bindings.BenchmarksRdIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksEngineeringIndProd" value="#{bindings.BenchmarksEngineeringIndProd.inputValue}" label="Engineering" required="#{bindings.BenchmarksEngineeringIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksFinancialIndProd" value="#{bindings.BenchmarksFinancialIndProd.inputValue}" label="Financial" required="#{bindings.BenchmarksFinancialIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksManagementIndProd" value="#{bindings.BenchmarksManagementIndProd.inputValue}" label="Management" required="#{bindings.BenchmarksManagementIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksItIndProd" value="#{bindings.BenchmarksItIndProd.inputValue}" label="IT" required="#{bindings.BenchmarksItIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksHrIndProd" value="#{bindings.BenchmarksHrIndProd.inputValue}" label="HR" required="#{bindings.BenchmarksHrIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksTrainingIndProd" value="#{bindings.BenchmarksTrainingIndProd.inputValue}" label="Training" required="#{bindings.BenchmarksTrainingIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksMarketingIndProd" value="#{bindings.BenchmarksMarketingIndProd.inputValue}" label="Marketing" required="#{bindings.BenchmarksMarketingIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7 -->
    <af:inputText id="BenchmarksOtherIndProd" value="#{bindings.BenchmarksOtherIndProd.inputValue}" label="Other" required="#{bindings.BenchmarksOtherIndProd.mandatory}" rows="1" columns="40" maximumLength="255" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 7-->
    </af:panelForm>
    <!-- DEBUG:END:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 6-->
    </af:panelHeader>
    </afh:cellFormat>
    </afh:rowLayout>
    </afh:tableLayout>
    <!-- DEBUG:END:HORIZONTAL_REGION_CONTAINER : default/pageComponent/horizontalRegionContainer.vm, nesting level: 5-->
    </af:panelGroup>
    <af:panelHeader text="Comments / Further Information" id="BenchmarksRegionsTypeOfSearch2PanelHeader">
    <!-- DEBUG:BEGIN:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 5 -->
    <af:panelForm rows="1" maxColumns="1" width="100%" id="BenchmarksTypeOfSearch2PanelForm">
    <!-- DEBUG:BEGIN:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 6 -->
    <af:inputText id="BenchmarksSearchKeywords" value="#{bindings.BenchmarksSearchKeywords.inputValue}" label="" required="#{bindings.BenchmarksSearchKeywords.mandatory}" rows="2" columns="40" maximumLength="500" readOnly="#{!(createModes.CreateBenchmarks)}" >
    </af:inputText><!-- DEBUG:END:FORM_TEXT_INPUT : default/item/form/formTextInput.vm, nesting level: 6-->
    </af:panelForm>
    <!-- DEBUG:END:ITEM_REGION : default/pageComponent/itemRegion.vm, nesting level: 5-->
    </af:panelHeader>
    </af:panelGroup>
    <!-- DEBUG:END:VERTICAL_REGION_CONTAINER : default/pageComponent/verticalRegionContainer.vm, nesting level: 4-->
    </af:panelGroup>
    <!-- DEBUG:BEGIN:FORM_GROUP_BUTTONS : default/pageComponent/formGroupButtons.vm, nesting level: 4 -->
    <!-- DEBUG:END:FORM_GROUP_BUTTONS : default/pageComponent/formGroupButtons.vm, nesting level: 4-->
    <af:objectSpacer height="10" id="BenchmarksFormGroupSpacer"/>
    <!-- DEBUG:BEGIN:DETAIL_GROUPS : default/pageComponent/detailGroups.vm, nesting level: 4 -->
    <!-- DEBUG:END:DETAIL_GROUPS : default/pageComponent/detailGroups.vm, nesting level: 4-->
    </af:panelGroup>
    <!-- DEBUG:END:FORM_GROUP : default/pageComponent/formGroup.vm, nesting level: 3-->
    <!-- DEBUG:END:FORM_PAGE_CONTENT : default/page/formPageContent.vm, nesting level: 2-->
    </af:panelPage>
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    </jsp:root>
    Happy Eastern!
    Erik

  • SRDEMO ??? error occurred while getting property "userId" from an instance

    Error
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.mysrdemo.view.UserInfo
    JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.mysrdemo.view.UserInfo
    javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.mysrdemo.view.UserInfo
    Hello,
    Can you please guide to correct the above error. Thanks a lot.
    DShah

    Hi,
    I got the answer to my question. The tables were not populated. So I ran the script - populateSchemaTables.sql, and got the data into the tables. The error is gone!
    Lin

  • Scheduling a Deski report fails with error message: "Failed to get property

    Hi,
    We have created few Desktop Intelligence report. Now when these report are schedules to be refreshed weekly (on Sunday), it fails with the following error message:
    "Failed to Get Property"
    Have tried to refresh the reports manually in Full Client too but the report fails there too.
    Have checked for the connection information. The servers are up and running.
    Have tried to re-create the connection and even tried to re-import and export the Universe.
    If we rename the report and save it and export, it works fine. Can not try this workaround as have more that 500 reports.
    Please suggest.
    regards,

    Hi Maria,
    usually the message "Failed to Get Property" is followed by an item name such as SI_FILE, or SI_VARIABLE, or SI_USE_ORIGINALDS, and so on.
    Could you please specify as much information coming from the error message as you can?
    Furthermore, is this issue happening with any Desktop Intelligence reports you schedule?
    Are the reports using the same Universe?
    Which DB are you using?
    Regards,
    Samanta F.

  • 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

  • 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

  • An error occurred while getting property "userId" from an instance of class

    Running application SRDemo (Tutorial Chapter 6 Implementing Login Security)
    After logging, the List page popped up. But no data returned. Get Error
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.srdemo.view.UserInfo.
    Questions:
    1. What are possible reasons to cause the getting property "userId" problem?[
    2. Why the Login page asked User Name and Password and the program used the query with "WHERE (EMAIL = 'sking')"
    The Log file shows the select statement:
    SELECT USER_ID, FIRST_NAME, LAST_NAME, CITY, POSTAL_CODE, EMAIL, STATE_PROVINCE, COUNTRY_ID, STREET_ADDRESS, USER_ROLE FROM USERS WHERE (EMAIL = 'sking')
    [TopLink Info]: 2006.11.08 11:07:09.468--ServerSession(1235)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--SRDemoSession login successful
    [TopLink Finer]: 2006.11.08 11:07:09.468--ServerSession(1235)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--client acquired
    [TopLink Fine]: 2006.11.08 11:07:09.500--ServerSession(1235)--Connection(1925)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--SELECT USER_ID, FIRST_NAME, LAST_NAME, CITY, POSTAL_CODE, EMAIL, STATE_PROVINCE, COUNTRY_ID, STREET_ADDRESS, USER_ROLE FROM USERS WHERE (EMAIL = 'sking')
    [TopLink Finer]: 2006.11.08 11:07:09.578--ClientSession(2021)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--client released
    [TopLink Finer]: 2006.11.08 11:07:09.625--ServerSession(1235)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--client acquired
    [TopLink Fine]: 2006.11.08 11:07:09.625--ServerSession(1235)--Connection(1922)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--SELECT USER_ID, FIRST_NAME, LAST_NAME, CITY, POSTAL_CODE, EMAIL, STATE_PROVINCE, COUNTRY_ID, STREET_ADDRESS, USER_ROLE FROM USERS WHERE (EMAIL = 'sking')
    [TopLink Finer]: 2006.11.08 11:07:09.625--ClientSession(2027)--Thread(Thread[ApplicationServerThread-0,5,RequestThreadGroup])--client released
    2006-11-08 11:07:09.640 WARNING JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.srdemo.view.UserInfo
    2006-11-08 11:07:09.640 WARNING JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.srdemo.view.UserInfo
    2006-11-08 11:07:09.640 WARNING javax.servlet.jsp.el.ELException: An error occurred while getting property "userId" from an instance of class oracle.srdemo.view.UserInfo
    2006-11-08 11:07:11.515 WARNING rowIterator is null
    2006-11-08 11:07:11.515 WARNING rowIterator is null
    Process exited.

    Hi,
    I got the answer to my question. The tables were not populated. So I ran the script - populateSchemaTables.sql, and got the data into the tables. The error is gone!
    Lin

  • TDMS Get Properties - Root Name

    I am currently using LV and the "TDMS Get Properties" VI to acquire various properties from my files without issue.
    However, I need to get the Root Name out of my TDMS file in the form of a string.
    How can I do this?

    To get the root name of a .tdms file, you should use "TDMS Get Properties" with its "group name" and "channel name" input unwired(as shown in the picture below), then "TDMS Get Properties" returns the .tdms file's root name.
    Regards,
    Tianbin
    Attachments:
    GetRootProp.vi ‏11 KB

  • How works Get Property Value / Type Automatic?

    Hi,
    I need to get in Labview some variables from Teststand. The VI I wrote use "Get Property Value" from Teststand and works fine... when I specify the type of variable I whant from Teststand (Boolean, I32,...).
    But I need a VI which retrieve the value of my variable independently of the variable type.
    I tried to set the type option "Automatic" but the "Get Property Value" always give back an empty array of boolean....
    How works the "Automatic" option by the "Get Property Value"?
    Is there a possibility in Labview to get the type of a Teststand variable?
    Cheers,
    Risotto

    Risotto,
    the "automatic" feature is no feature but an entry made because of the
    polymorphic design of the "get property value" VI. if you would change
    the order of the VIs contained in the polymorphic VI, you would
    retrieve other kind of values.
    therefore never use the automatic setting of this VI. the
    simplest way to solve such thing is to pass the data in variant and an
    additional numeric value for identifying the type of the value.
    Norbert B.
    - NI Germany
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

Maybe you are looking for