Error in Property GetHistoryInsertItems

Hello,
I need to load information to the component DEPEND_BENEF. But I have this error message:
(91,11) - This property is not valid {ET_DEPEND_BENEF_CI.GetHistoryInsertItems}. (91,11) (0,0)
I need the correction mode for load multiple rows for an employee id, and this component does not have creation mode.
I have the component interface definition with this:
         rem ***** Set the PeopleSoft Session Error Message Mode *****;
         rem ***** 0 - None *****;
         rem ***** 1 - PSMessage Collection only (default) *****;
         rem ***** 2 - Message Box only *****;
         rem ***** 3 - Both collection and message box *****;
         &oSession.PSMessagesMode = 1;
         rem ***** Get the Component Interface *****;
         &oEtDependBenefCi = &oSession.GetCompIntfc(CompIntfc.ET_EPEND_BENEF_CI);
         If &oEtDependBenefCi = Null Then
            errorHandler(&emplid);
            throw CreateException(0, 0, "GetCompIntfc failed");
         End-If;
         rem ***** Set Component Interface Get/Create Keys *****;
         &oEtDependBenefCi.EMPLID = &emplidNbr;
         rem ***** Begin: Get/Set Component Interface Properties *****;
         rem ***** Execute Get *****;
         If Not &oEtDependBenefCi.Get() Then
            rem ***** No rows exist for the specified keys.*****;
            errorHandler(&emplid);
            throw CreateException(0, 0, "Get failed");
         End-If;
         rem ***** Set the Component Interface Mode *****;
         &oEtDependBenefCi.InteractiveMode = True;
         &oEtDependBenefCi.GetHistoryInsertItems = True;
         rem  &oEtDependBenefCi.EditHistoryInsertItems = False;
          rem ***** Set/Get DEP_BEN Collection Field Properties -- Parent: PS_ROOT Collection *****;
         &oDepBenCollection = &oEtDependBenefCi.DEP_BEN;
         Local integer &i18;
         For &i18 = 1 To &oDepBenCollection.Count;
            If (&etRst_sourceData.GetRow(&i).GetRecord(Record.ET_MG_DEPB_TBL).GetField(Field.DEPEND_BENEF).Value = "01") Then
               &oDepBen = &oDepBenCollection.Item(&i18);
            Else
               &oDepBen = &oDepBenCollection.insertItem(&i18);
            End-If;
.....but the error don't let insert new values for the  first register.
Thanks in advance

You have to make sure that the start and end markers are defined properly. Make sure you have separate markers for each subsequence, you don't need to call property loader in each of the subsequence, rather you can just call it in the PreUUTLoop call back as shown in the example.
Also, there are many examples in that folder: This one would be useful for you.
C:\Users\Public\Documents\National Instruments\TestStand 2010 SP1\Examples\PropertyLoader\PropertyLoader.seq
Beginner? Try LabVIEW Basics
Sharing bits of code? Try Snippets or LAVA Code Capture Tool
Have you tried Quick Drop?, Visit QD Community.

Similar Messages

  • HELP! InDesign CC got an error: The property is not applicable in the current state." number 30615

    HELP! Was working perfectly now it is giving me this error and doesn't seem to be going past the printing option. Code is below.
    main.scpt
    set posixIdPath to "/Applications/Adobe InDesign CC/Adobe InDesign CC.app"
    do shell script "/Users/cdapice/Desktop/cryptoquip/getquip.sh"
    delay 8
    tell application posixIdPath
    activate
    end tell
    delay 8
    set scripttoRun to ":Users:cdapice:Desktop:cryptoquip:Script.jsx" as alias
    tell application "Adobe InDesign CC"
    do script scripttoRun language javascript
    end tell
    delay 5
    Adobe InDesign CC got an error: The property is not applicable in the current state." number 30615
    Script.jsx
    var myDocument = app.open(File("/Users/cdapice/Desktop/cryptoquip/NewCryptoquip.indt"), true);
    //var myDocument = app.activeDocument;
    var myPage = myDocument.pages.item(0);
    var myTextFrame = myPage.textFrames.add();
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    myTextFrame.place(File("/Users/cdapice/Desktop/cryptoquip/quips.txt"));
    //var myTextFrame = app.selection[0];
    myTextFrame.parentStory.pointSize = 10;
    var brkStory = myTextFrame.parentStory.contents;
    var myPIs = myDocument.pageItems;
    var  destTextFrame = myPIs[6];
    destTextFrame.parentStory.contents = brkStory;
    firstChange();
    myTextFrame.remove();
    app.select(destTextFrame);
    splitStory();
    for (i = 0; i < myPIs.length; i++) {
              if (myPIs[i].appliedObjectStyle.name == "puzzleBox") {
                        var newBoxStyle = myPIs[i].appliedObjectStyle;
                        secondChange(myPIs[i]);
            myPIs[i].applyObjectStyle(newBoxStyle,true);
        if(myPIs[i].appliedObjectStyle.name == "otherBox"){
            var newBoxStyle = myPIs[i].appliedObjectStyle;
            myPIs[i].applyObjectStyle(newBoxStyle,true);
    Date.prototype.getMonthFormatted = function() {
        var month = this.getMonth() + 1;
        var formMonth = month < 10 ? '0' + month : month; // ('' + month) for string result
              return formMonth.toString();
    Date.prototype.getDayFormatted = function() {
        var day = this.getDate();
        var formDay = day < 10 ? '0' + day : day; // ('' + day) for string result
              return formDay.toString();
    var newdate = new Date();
    var laterdate = new Date();
    var dayofweek = newdate.getDay();
    var offsetdays = 0;
    switch(dayofweek) {
        case 2:
            offsetdays = 6;
            break;
        case 3:
            offsetdays = 5;
            break;
        case 4:
            offsetdays = 4;
            break;
        case 5:
            offsetdays = 3;
            break;
    app.epsExportPreferences.appliedFlattenerPreset.convertAllStrokesToOutlines = true;
    app.epsExportPreferences.appliedFlattenerPreset.convertAllTextToOutlines = true;
    app.epsExportPreferences.appliedFlattenerPreset.rasterVectorBalance = 100;
    //app.activeDocument.exportFile(ExportFormat.epsType, newFile, false);
    for (i = 1; i < 7; i++) {
        var curPage = i + "";
        var x = i + (offsetdays - 1);
        laterdate.setMonth(newdate.getMonth());
        laterdate.setDate(newdate.getDate());
        //alert(newdate);
        //alert(x);
        //alert(laterdate);
        laterdate.setDate(newdate.getDate() + x);
        //alert(laterdate);
        var nameDate = laterdate.getMonthFormatted() + laterdate.getDayFormatted() + ".eps"
        //alert(nameDate);
        app.epsExportPreferences.pageRange = curPage;
        var curFile = new File("/Users/cdapice/Desktop/cryptoquip/" + nameDate);
        app.activeDocument.exportFile(ExportFormat.epsType, curFile, false);
    var endDate = laterdate.getMonthFormatted() + laterdate.getDayFormatted();
    var firstDate = new Date();
    firstDate.setDate(newdate.getDate() + offsetdays);
    var startDate = firstDate.getMonthFormatted() + firstDate.getDayFormatted();
    var idFile = "cryptoquip_" + startDate + "_" + endDate + ".indd";
    app.activeDocument.save(new File("/Users/cdapice/Desktop/cryptoquip/" + idFile));
    with (app.activeDocument.printPreferences){
            printer = "Advertising - Creative - Color Xerox";
            copies = 1;
            pageRange = "1-6";
            paperSize = "US Letter";
            paperHeight = "11 in";
            paperWidth = "8.5 in";
            printPageOrientation = PrintPageOrientation.landscape;
            pagePosition = PagePositions.centered;
           scaleHeight = 100;
           scaleWidth = 100;
            scaleMode = ScaleModes.scaleWidthHeight;
            scaleProportional = true;
            pageInformationMarks = true;
            colorOutput = ColorOutputModes.COMPOSITE_CMYK;
    app.activeDocument.print(false);
    for(myCounter = app.documents.length; myCounter > 0; myCounter--){
    app.documents.item(myCounter-1).close(SaveOptions.no);
    function firstChange() {
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findChangeTextOptions.caseSensitive = false;
        app.findTextPreferences.findWhat = "^t";
              app.changeTextPreferences.changeTo = "";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
         app.findTextPreferences.findWhat = "^p^p";
              app.changeTextPreferences.changeTo = "^p";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findTextPreferences.findWhat = "^p";
              app.changeTextPreferences.changeTo = "^R";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
    function secondChange(curFrame) {
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findChangeTextOptions.caseSensitive = false;
        app.findTextPreferences.findWhat = "    ";
              app.changeTextPreferences.changeTo = "|";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
         app.findTextPreferences.findWhat = " ";
              app.changeTextPreferences.changeTo = "";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findTextPreferences.findWhat = "|";
              app.changeTextPreferences.changeTo = " ";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
    function splitStory(){
              //Make certain that user interaction (display of dialogs, etc.) is turned on.
              app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
              if(app.documents.length != 0){
                        if(app.selection.length != 0){
                                  //Get the first item in the selection.
                                  var mySelection = app.selection[0];
                                  //Process the selection. If text or a text frame is
                                  //selected, do something; otherwise, do nothing.
                                  switch(mySelection.constructor.name){
                                            case "Text":
                                            case "InsertionPoint":
                                            case "Character":
                                            case "Word":
                                            case "Line":
                                            case "TextStyleRange":
                                            case "Paragraph":
                                            case "TextColumn":
                                            case "TextFrame":
                                                      //If the text frame is the only text frame in the story, do nothing.
                                                      if(mySelection.parentStory.textContainers.length > 1){
                                                                //Splitting the story is a two-step process: first, duplicate
                                                                //the text frames, second, delete the original text frames.
                                                                mySplitStory(mySelection.parentStory);
                                                                myRemoveFrames(mySelection.parentStory);
                                                      else{
                                                                alert("Please select a story containing more than one text frame and try again.");
                                                      break;
                                            default:
                                                      alert("Please select some text or a text frame and try again.");
                        else{
                                  alert("Please select some text or a text frame and try again.");
              else{
                        alert("Please open a document and try again.");
    function mySplitStory(myStory){
              var myTextFrame;
              //Duplicate each text frame in the story.
              for(var myCounter = myStory.textContainers.length-1; myCounter >= 0; myCounter --){
                        myTextFrame = myStory.textContainers[myCounter];
                        myTextFrame.duplicate();
    function myRemoveFrames(myStory){
              //Remove each text frame in the story. Iterate backwards to avoid invalid references.
              for(var myCounter = myStory.textContainers.length-1; myCounter >= 0; myCounter --){
                        myStory.textContainers[myCounter].remove();

    Hotfixes are special, out-of-band patches created to fix specific problems, so they are never published to Windows Update.  Often the hotfix gets incorporated into a released patch that is published on Windows Update.  If this hotfix was incorporated
    into a released patch, and you applied that patch to your system, the hotfix would see that its files are older than the latest files on the system and would give you this message.  Because the hotfix is not for general distribution, there is rarely documentation
    saying that it has been superceded.
    Generally there is a file list with a hotfix/patch that gives you the version number of the affected files.  You can go through those files to see that you have the latest files.  The problem is finding the actual patch that updated those files. 
    Without going through lots of patches, it is hard to find which patch made the hotfix obsolete.
    .:|:.:|:. tim

  • Strange Runtime Error - Error setting property 'page1' in bean of type null

    All I have here is a treenode with its URL set to a web page. When the node is clicked, I get this:
    ===============================
    [#|2006-07-25T09:39:20.204-0600|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=16;|WebModule[/HNESWebApp]org.apache.jasper.JasperException: Error setting property 'page1' in bean of type null
    javax.faces.FacesException: org.apache.jasper.JasperException: Error setting property 'page1' in bean of type null
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:327)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at ccic2s.netsvr.hnes.web.hneswebapp.login.LoginFilter.doFilter(LoginFilter.java:198)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    Caused by: org.apache.jasper.JasperException: Error setting property 'page1' in bean of type null
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:384)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
    at sun.reflect.GeneratedMethodAccessor200.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:723)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:482)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:417)
    at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDispatcher.java:80)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(ApplicationDispatcher.java:95)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313)
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    ... 49 more
    |#]
    ======================
    Any ideas?
    TIA

    Okay, I found it - my bad but this might help you..
    Turns out the managed-beans.xml (and possibly other files /directories) under WEB-INF were set to read only due to the CM tool I am using - these files were checked in at one point (probably shouldn't have been). I thought I got them all but had missed a few.
    So the moral of the story is beware of setting read-only files!

  • ServletException: Error testing property 'foo' in bean of type null

    Hi,
    JSF is new to me. First test pojects were fine but now i am running into some prolems. maybe you could help. here are my error message, my classes and jsps. If you need more information to solve the porblem please let me know. thanx felix
    javax.servlet.ServletException: Error testing property 'vorname' in bean of type null
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:209)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    root cause
    javax.faces.el.PropertyNotFoundException: Error testing property 'vorname' in bean of type null
         com.sun.faces.el.PropertyResolverImpl.getType(PropertyResolverImpl.java:342)
         com.sun.faces.el.impl.ArraySuffix.getType(ArraySuffix.java:240)
         com.sun.faces.el.impl.ComplexValue.getType(ComplexValue.java:208)
         com.sun.faces.el.ValueBindingImpl.getType(ValueBindingImpl.java:345)
         com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getConvertedValue(HtmlBasicInputRenderer.java:111)
         javax.faces.component.UIInput.getConvertedValue(UIInput.java:713)
         javax.faces.component.UIInput.validate(UIInput.java:638)
         javax.faces.component.UIInput.executeValidate(UIInput.java:849)
         javax.faces.component.UIInput.processValidators(UIInput.java:412)
         javax.faces.component.UIForm.processValidators(UIForm.java:170)
         javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:912)
         javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:342)
         com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:78)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
    My Start-JSP:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head>
    Eingabe Person
    </head>
    <body>
    <h3>
    Eingabe Person
    </h3>
    Bitte geben Sie ihre Daten ein:
    <f:view>
    <h:form>
    Vorname: <h:inputText id="vorname" value="#{PersonController.currentPerson.vorname}" />
    Nachname: <h:inputText id="nachname" value="#{PersonController.currentPerson.nachname}" />
    <h:commandButton action="#{PersonController.save}" value="Submit" />
    </h:form>
    </f:view>
    </body>
    </html>
    PersonController:
    package test1;
    import java.util.*;
    import org.hibernate.HibernateException;
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.Transaction;
    import org.hibernate.cfg.Configuration;
    import org.hibernate.tool.hbm2ddl.SchemaExport;
    import org.hibernate.Query;
    public class PersonController {
    private SessionFactory aSessionFactory;
    private Person currentPerson=null;
    private List<Person> personList = null;
    private Session session;
    private static final String personConfirm = "personConfirm";
    private static final String test = "test";
    /** Creates a new instance of PersonController */
    public PersonController() {
    personList = new LinkedList<Person>();
    this.setUp();
    public String createPerson(){
    currentPerson = new Person();
    return personConfirm;
    public String test(){
    return test;
    public String save(){
    personList.add(currentPerson);
    Transaction transaction = null;
    transaction = session.beginTransaction();
    session.save(currentPerson);
    transaction.commit();
    return personConfirm;
    public Person getCurrentPerson(){
    return currentPerson;
    public void setCurrentPerson(Person currentPerson){
    this.currentPerson=currentPerson;
    public List<Person> getPersonList(){
    return personList;
    public void setPersonList(List<Person> personList){
    this.personList=personList;
    public void closeSession(){
    session.close();
    protected void setUp(){
    Configuration configuration = new Configuration().configure();
    // SchemaExport export = new SchemaExport(configuration);
    //export.create(false, true);
    aSessionFactory = configuration.buildSessionFactory();
    session = aSessionFactory.openSession();
    public Person loadPerson(long id){
    return (Person)session.load(Person.class, id);     
    Bean Person:
    package test1;
    * @author F.Thomas
    public class Person {
    private long id;
    private String vorname;
    private String nachname;
    /** Creates a new instance of Person */
    public Person() {
    public long getId() {
    return id;
    public void setId(long id) {
    this.id = id;
    public String getVorname() {
    return vorname;
    public void setVorname(String vorname) {
    this.vorname = vorname;
    public String getNachname() {
    return nachname;
    public void setNachname(String nachname) {
    this.nachname = nachname;
    Target JSP:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head>
    Best�tigung Person
    </head>
    <body>
    <h3>
    Best�tigung Person
    </h3>
    Ergebnis Ihrer Eingabe:
    <f:view>
    <h:form>
    Vorname: <h:outputText value="#{PersonController.currentPerson.vorname}" />
    Nachname: <h:outputText value="#{PersonController.currentPerson.nachname}" />
    <h:commandButton action="success" value="Submit" />
    </h:form>
    </f:view>
    </body>
    </html>
    faces-config.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config>
    <navigation-rule>
    <navigation-case>
    <from-outcome>personConfirm</from-outcome>
    <to-view-id>/person/confirm.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <navigation-case>
    <from-outcome>test</from-outcome>
    <to-view-id>/person/test.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <managed-bean>
    <managed-bean-name>PersonController</managed-bean-name>
    <managed-bean-class>test1.PersonController</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <managed-bean>
    <managed-bean-name>Person</managed-bean-name>
    <managed-bean-class>test1.Person</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
    <param-name>com.sun.faces.verifyObjects</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>com.sun.faces.validateXml</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>Start2</servlet-name>
    <servlet-class>test1.Start2</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>Start3</servlet-name>
    <servlet-class>test1.Start3</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Start2</servlet-name>
    <url-pattern>/Start2</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Start3</servlet-name>
    <url-pattern>/Start3</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>
    30
    </session-timeout>
    </session-config>
    <welcome-file-list>
         <welcome-file>
    index.jsp
    </welcome-file>
    </welcome-file-list>
    </web-app>

    A quick analysis indicates that perhaps the currentPerson attribute of the PersonController is null at render time.

  • Error testing property 'inputValue' in bean of type null

    Hi, I'm developing two simple pages: List and Edit. When I execute a Submit button to go to Edit page I get the next exception in the page
    exception
    org.apache.jasper.JasperException: javax.faces.el.PropertyNotFoundException: Error testing property 'inputValue' in bean of type null
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:522)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:416)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
    com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
    oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:233)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:202)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
    oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
    oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
    root cause
    javax.faces.el.PropertyNotFoundException: Error testing property 'inputValue' in bean of type null
    com.sun.faces.el.PropertyResolverImpl.isReadOnly(PropertyResolverImpl.java:274)
    oracle.adfinternal.view.faces.model.FacesPropertyResolver.isReadOnly(FacesPropertyResolver.java:124)
    com.sun.faces.el.impl.ArraySuffix.isReadOnly(ArraySuffix.java:236)
    com.sun.faces.el.impl.ComplexValue.isReadOnly(ComplexValue.java:209)
    com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:266)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:211)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.FormElementRenderer.renderAsElement(FormElementRenderer.java:155)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.getLabelFor(InputLabelAndMessageRenderer.java:53)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer$Label.getForId(LabelAndMessageRenderer.java:500)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:69)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.delegateRenderer(CoreRenderer.java:281)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer._renderLabelCell(LabelAndMessageRenderer.java:222)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.LabelAndMessageRenderer.encodeAll(LabelAndMessageRenderer.java:159)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.encodeAll(InputLabelAndMessageRenderer.java:94)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
    oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:246)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeColumnChild(PanelFormRenderer.java:275)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.renderColumn(PanelFormRenderer.java:251)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._renderColumns(PanelFormRenderer.java:545)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer._encodeChildren(PanelFormRenderer.java:153)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelFormRenderer.encodeAll(PanelFormRenderer.java:69)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
    oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
    oracle.adfinternal.view.faces.renderkit.RenderUtils.encodeRecursive(RenderUtils.java:54)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeChild(CoreRenderer.java:242)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeAllChildren(CoreRenderer.java:265)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.renderContent(PanelPartialRootRenderer.java:65)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.renderContent(BodyRenderer.java:117)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.PanelPartialRootRenderer.encodeAll(PanelPartialRootRenderer.java:147)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.BodyRenderer.encodeAll(BodyRenderer.java:60)
    oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeEnd(CoreRenderer.java:169)
    oracle.adf.view.faces.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:624)
    javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:645)
    javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:568)
    oracle.adf.view.faces.webapp.UIXComponentTag.doEndTag(UIXComponentTag.java:100)
    org.apache.jsp.app.private_.am_005fprovincia_jspx._jspx_meth_afh_005fbody_005f0(am_005fprovincia_jspx.java:196)
    org.apache.jsp.app.private_.am_005fprovincia_jspx._jspx_meth_afh_005fhtml_005f0(am_005fprovincia_jspx.java:148)
    org.apache.jsp.app.private_.am_005fprovincia_jspx._jspx_meth_f_005fview_005f0(am_005fprovincia_jspx.java:118)
    org.apache.jsp.app.private_.am_005fprovincia_jspx._jspService(am_005fprovincia_jspx.java:88)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:346)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:152)
    com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:153)
    oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:233)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:202)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
    oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
    oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
    In the Tomcat console....
    11-09-2008 11:17:19 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel getSelectedRow
    WARNING: rowIterator is null
    11-09-2008 11:17:19 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel getSelectedRow
    WARNING: rowIterator is null
    11-09-2008 11:17:19 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel getSelectedRow
    WARNING: rowIterator is null
    11-09-2008 11:17:19 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel getSelectedRow
    WARNING: rowIterator is null
    11-09-2008 11:17:19 PM oracle.adfinternal.view.faces.model.binding.FacesCtrlRangeBinding$FacesModel makeCurrent
    WARNING: No row found for rowKey:null
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag createValidator
    SEVERE: attribute 'validatorId' is missing
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag doStartTag
    WARNING: could not create validator for validatorId:null and binding:#{bindings.ProvId.validator}
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag createValidator
    SEVERE: attribute 'validatorId' is missing
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag doStartTag
    WARNING: could not create validator for validatorId:null and binding:#{bindings.ProvNombre.validator}
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag createValidator
    SEVERE: attribute 'validatorId' is missing
    11-09-2008 11:17:20 PM oracle.adfinternal.view.faces.taglib.ValidatorTag doStartTag
    WARNING: could not create validator for validatorId:null and binding:#{bindings.ProvDescripcion.validator}
    I'm developing with ADF Faces, JDeveloper 10.1.3.4, BC4J, Tomcat 6.0.18 and MySQL. When I set redirect = true in navigation-case (faces-config.xml) the exception dissapear but not WARNING: rowIterator is null message.
    Can anybody help me with this, please?
    Regards

    I'm confused :-(
    first you said the problem is solved, now you state it isn't.
    It looks like you have a problem with your first page. As far as I see it from the stack trace you try to use an iterator on this page which returns no row, but you try to make on the current row.
    Check the binding of the iterator.
    Timo

  • 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

  • Error setting property in bean of type null

    Hi i have jsf page and input text
    a managed bean with property sum of type float
    i attached this property to the input text:
    <h:inputText id="adr" value="#{userBean.sum}"/>
    but when enter a value and submit the page
    it prints me error in the page:
    Error setting property 'sum' in bean of type null
    any idea?

    The message says that the userBean is null.
    Check your faces-config.xml.

  • Error setting property 'html1' in bean of type null

    Dear All;
    I am currently on site, and away from my team, so they send over additional screens, that i treid to add to the project i have with me, i added the model, i add the SRC folder, and the .JSPX pages, only when i run the pages, i get Error setting property 'html1' in bean of type null, i checked previous threads, and i know the error and accordingly i checked that the page def exists, which it does, and that all the managed beans are there, and linked to faces config, which they are, so i am just wondering if any1 has any idea, as to how to make the pages work...
    regards
    Halim

    hi frank,
    I cross checked, all the entries in the bean, with those in the JSPX source code, and chceked in the auto comment of the JSPX page the name of the bean, i have checked the faces config, i am going to remove the the new models and re-add them, just tell me if i need to add any files other than those:
    MODEL X folder, which contains the model
    JSPX folder, which contans the pages
    SRC folder in view controller
    And the faces config to web-inf
    thanks in advance man
    regards
    Halim

  • ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.

    Hi All
                      This is the Error where i got from my sample chatting application...
    ReferenceError: Error #1069: Property DSPriority not found on String and there is no default value.
    at mx.messaging::Producer/handlePriority()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messagi ng\Producer.as:190]
    at mx.messaging::Producer/internalSend()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \Producer.as:169]
    at mx.messaging::AbstractProducer/send()[E:\dev\4.x\frameworks\projects\rpc\src\mx\messaging \AbstractProducer.as:561]
    at SampleMessagin/sendMessage()[D:\FlexJavaPrograms\SampleMessagin\src\SampleMessagin.mxml:2 9]
    at SampleMessagin/___SampleMessagin_Button2_click()[D:\FlexJavaPrograms\SampleMessagin\src\S ampleMessagin.mxml:74]
                        this is the code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
          currentState="{st}"
          creationComplete="consumer.subscribe()">
    <fx:Script>
      <![CDATA[
       import mx.messaging.events.MessageEvent;
       import mx.messaging.messages.AsyncMessage;
       import mx.messaging.messages.IMessage;
       import mx.modules.IModule;
       import mx.states.State;
       [Bindable]
       public var st:String="";
       public function changeStateHandler(event:Event):void
        st = "Login"
       //send message throug this method
       protected function sendMessage():void
        var msg:IMessage = new AsyncMessage();
        msg.headers = uname.text;
        msg.body = sendText.text;
        producer.send(msg);
        sendText.text = " ";
      //message  Handler  
       protected function consumer_messageHandler(event:MessageEvent):void
        // TODO Auto-generated method stub
        var resp:IMessage = event as IMessage;
        dispText.text = resp.headers.toString()+" :: "+resp.body.toString()+"\n";
      ]]>
    </fx:Script>
    <fx:Declarations>
      <s:Producer id="producer"
         destination="chat"/>
      <s:Consumer id="consumer"
         destination="chat"
         message="consumer_messageHandler(event)"/>
      </fx:Declarations>
    <s:states>
      <s:State name="State1"/>
      <s:State name="Login"/>
    </s:states>
    <s:Panel x="246" y="137" width="366" height="200" title="Login Here" includeIn="State1">
      <mx:HBox horizontalCenter="2" verticalCenter="-30">
       <s:Label text="Enter UR Name"/>
       <s:TextInput id="uname"/>
       <s:Button id="login" label="Login" click="changeStateHandler(event)"/>
      </mx:HBox>
    </s:Panel>
    <s:Panel includeIn="Login" x="327" y="78" width="353" height="369"  title="Welcome:{uname.text}">
      <s:TextArea x="6" y="11" height="222" width="335" id="dispText"/>
      <s:TextArea x="10" y="241" height="85" width="258" id="sendText"/>
      <s:Button x="276" y="241" label="Send" height="76" click="sendMessage()"/>
    </s:Panel>
    </s:Application>
    and my messaging-config.xml is as follows
                 <?xml version="1.0" encoding="UTF-8"?>
    <service id="message-service"
        class="flex.messaging.services.MessageService">
        <adapters>
            <adapter-definition id="actionscript" class="flex.messaging.services.messaging.adapters.ActionScriptAdapter" default="true" />
            <!-- <adapter-definition id="jms" class="flex.messaging.services.messaging.adapters.JMSAdapter"/> -->
        </adapters>
        <default-channels>
            <channel ref="my-polling-amf"/>
        </default-channels>
        <destination id="chat"/>
    </service>
                      can any one help me what is the error present here.............
                         why it is showing error .. am i wrote anything wrong in this code .. please help me....

    I'm not the expert on this topic, but I think this line:
    msg.headers = uname.text;
    ...is throwing the error. Look into how to properly construct the headers for the message. They should be in name/value pairs.

  • 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

  • Extending Array class, get Error #1069: Property 0 not found with indexOf call

    I'm using inheritance to extend the Array class to create a Paths class that moves Sprites/MovieClips around on the screen. I'm getting an odd error on a call to indexOf. Here's the error:
    ReferenceError: Error #1069: Property 0 not found on Paths and there is no default value.
        at Array$/_indexOf()
        at Array/http://adobe.com/AS3/2006/builtin::indexOf()
        at Paths/Next()[D:\Stephen\Documents\Flash\TossGame\TossGameFirstPerson\Paths.as:40]
    Here's the relevant code in the Paths class:
        public class Paths extends Array
            private var cCurrentPath:Path;
            public function Next():Path
                var lArray:Array = this;
                var lNextIndex:int = indexOf(cCurrentPath) + 1;
                if (lNextIndex == length) lNextIndex = 0;
                var lPath:Path = lArray[lNextIndex];
                return lPath;
        } // class
    I get the error at the highlighted line. cCurrentPath is populated with a Path object which is the object located at position 0 of the this object (Paths). I've tried the following variants of the Next() function:
    public function Next():Path
         var lArray:Array = this;
          var lNextIndex:int = lArray.indexOf(cCurrentPath) + 1;
          if (lNextIndex == lArray.length) lNextIndex = 0;
          var lPath:Path = lArray[lNextIndex];
          return lPath;
    public function Next():Path
         var lArray:Array = this;
          var lNextIndex:int = this.indexOf(cCurrentPath) + 1;
          if (lNextIndex == this.length) lNextIndex = 0;
          var lPath:Path = lArray[lNextIndex];
          return lPath;
    public function Next():Path
         var lArray:Array = this;
          var lNextIndex:int = super.indexOf(cCurrentPath) + 1;
          if (lNextIndex == super.length) lNextIndex = 0;
          var lPath:Path = lArray[lNextIndex];
          return lPath;
    Same error happens whichever I try. Anyone got any ideas?
    Stephen
    Flash Pro CS3 (Version 9.0)

    Mark your class dynamic.
    public dynamic class Paths extends Array

  • Error: Unknown Property: 'constructor'.

    Hi,
    i have a problem with flex, hibernate, lcds. I have created a
    simple grid which is bound with the hibernateassembler to my
    backend. When i make a simple fill call at the dataservice, i got
    this error.
    Error: Unknown Property: 'constructor'.
    at mx.collections::ListCollectionView/
    http://www.adobe.com/2006/actionscript/flash/proxy::getProperty()
    at mx.data.utils::Managed$/normalize()
    at mx.data::ConcreteDataService/
    http://www.adobe.com/2006/flex/mx/internal::normalize()
    at mx.data::DataList/
    http://www.adobe.com/2006/flex/mx/internal::processSequence()
    at mx.data::DataList/
    http://www.adobe.com/2006/flex/mx/internal::processSequenceResult()
    at DataListRequestResponder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at NetConnectionMessageResponder/resultHandler()
    at mx.messaging::MessageResponder/result()
    The backend is not the problem, because hibernate logs the
    select and if i debug my flex application i see that the result
    will arrive at the client. But how can i solve this problem?
    regards
    Thorsten

    Hi all,
    i fixed the problem by my own. take a look at my blog
    http://innojasa.wordpress.com/category/adobe-flex/
    regards
    Thorsten

  • Error catcher: Error #1069: Property _bindingsByDestination not found

    I appear to be having a rather strange issue. In my Flex project I have a mx:Canvas with a mx:Resize inside. The mx:Resize is redundant and not needed at all. Currently it looks like this:
    <mx:Resize easingFunction="{Bounce.easeOut}" />
    Nothing uses it at all, its completly redundant. If I remove that one line of MXML the flash player complains with this error:
    Error catcher: Error #1069: Property _bindingsByDestination not found on ********* and there is no default value.
    Any ideas?
    Regards:
    John

    don't use the name property.  that is a string:
    targets=(obj.dropTarget.parent)
    trace(targets);
    trace(targets.x)

  • My Timesheet error: invalid property

    Hi ,
    When i am trying to create the time sheet in fiori i am getting the error "Invalid property",we added 2 custom fields in cats,but i am not sure is there any changes i need to do in the GW or Front end .Can any body suggest any solutions for this.
    Thanks,
    Mohan

    Hi Mohan,
    As a first step make sure all the GW and front end requirements are up to date. You can check that here. If that all is ok then I would suggest making sure you have all the necessary support packs in place - check here.
    Thanks,
    Liz
    (SAP Technology RIG)

  • I keep getting this error message and Firefox won't start....Exc in ev handl: Error: Error setting property on NPObject!

    Firefox won't start and this message keeps coming up....I uninstalled and reinstalled....but didn't help...
    Exc in ev handl: Error: Error setting property on NPObject!

    Disable "McAfee Site Advisor" extension which was just updated to 3.4.0, which probably took it out of the addons block list.
    * "Ctrl+Shift+A" > find McAfee Site Advisor and use "Disable", and then restart Firefox.
    * Do a Google Search no problem
    * It seems that if you re-enable Site Advisor again, and restart Firefox you are okay. At least you know where to look if you get the error again or Google searches slow down.

Maybe you are looking for

  • How do I install Acrobat on a new computer?

    How do I install Acrobat on a new computer?

  • ACH IAT file format clarification

    Hi, We have some issue on ACH IAT file. Error 1 - Line Starting with 5200 - 67-69 - The currency is filled with USD, though we are making payments in EUR or other foreign currencies. Not sure from where this USD is picking up. Error 2 - Line Starting

  • Auto reload of Panel

    Hello, I am working on maintaining an application on swing. Every time I do a change in my Panel Class which extends JPanel, I need to stop my application and then again start it. A lot of time gets wasted in stopping and starting again as it gets ca

  • Get message to stop InstallerS.  Where do I find and delete Installer S?

    Was trying to load Adobe Photoshop Elements.  Get message to stop "InstallerS".  I cannot find this file to stop or delete. Any suggestions would be apprecitated. Mel

  • Help please w/ Analogue connect

    Hello, I have purchased an X-fi xtreme music through my local computer builder. when they ordered the card I asked them to pick up the home theater connectors. http://us.creative.com/products/product.asp?category=3&subcategory=55&product=4309 they to