BUG JSF Select Item not binding properly

Dear Oracle,
I'm running JDeveloper 10g version 10.1.3.0.3.3412 early access 1. If you create a HTMLMenu1 select list in a JSF Page and use the properties dialog to bind the values to a backing bean, the binding get's lost and the page doesn't call the value binding. What's more, if you try to rebind the values using the dialog, JDeveloper repeatedly inserts a new SelectItems tag for the menu.
For example, if you create the SelectMenu1 and then use the dialog to bind the selectItems to a backing bean property, you will end up with code something like this:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1"
valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems1}"
id="selectItems1"/>
Now, click on the newly created menu item in the design window of the JSP editor and bring up the properties dialog. You will see that the value binding is blank. If you reenter the value binding information, JDeveloper creates a new tag so you end up with the following:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1"
valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems1}"
id="selectItems1"/>
Each time you repeat the process, JDeveloper creates another tag:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1"
valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems3}"
id="selectItems3"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems1}"
id="selectItems1"/>
Either way, if you clean up the JSF page with the spurious tags, the value binding (in the example above backing_showFactory.allFactories), is never called.

Yes - this really is a bug. Any changes to make to the selectItems tag through the properties dialog rewrites the tag source code to seperate the selectOne tag and the selectItems tag. For example, before you use the dialog, you tag code could look like this:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1">
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
</h:selectOneMenu>
After the use of the dialog the code will be rewritten as:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
Notice, the tags are now seperated instead of the selectItems tag being encased in the selectOneMenu tag.

Similar Messages

  • BUG - JSF InputText boxes not populating properly

    Okay,
    Here's the situation:
    I have an edit page (JSF Web) that allows the user to pick an item to edit from a SelectOneMenu tag. When they pick the item the page rerenders and shows the object associated with the selected item allowing the user to edit the object in various InputText controls.
    First of all the ValueChangeListener event doesn't work for the SelectOneMenu tag - the event is not recognized in the backing bean (with or without immediate set, the event code is never accessed.) - and so I had to tie the change to the pressing of a command button.
    Upon pressing the command button, in the action event, I find the object from the selected item. Now I want to set the input text boxes in the screen to the various values of the object. There are two ways to do this. I either set the value property of the bound (using the binding property) backing bean to the objects property - the code looks like this:
    <h:inputText binding="#{EditCalendarBean.name}"
    value="#{EditCalendarBean.name.value}"/>
    This results in a fatal error that halts the OC4J.
    Alternatively; I added various properties to the backing bean one for each property of the object and bound the object's properties to these and then bound the user interface's value properties to the bean properties. For example, imagine a user interface control InputText tag called "name" has it's value property bound to a property on the bean called Name which returns String. This configuration runs but the InputText control when the page is re-rendered (after the submit), is empty even though I've set the value property. However, if I add an OutputText control to the page and bind it's value property to the same String property of the bean, the outputText control correctly shows the value of the object.
    The code looks like this:
    <!-- code in the page -->
    <h:inputText id="name" binding="#{EditCalendarBean.name}"
    value="#{EditCalendarBean.nameValue}"/>
    // Code in the Backing bean:
    // Find the Bean from the submitted id from the SelectMenuTag.
    CalendarData data = manager.getCalendarById(calendarID) ;
    // Set value of the UITextInput components on the page.
    this.getName().setValue(data.getName());
    this.getDescription().setValue(this.getDescription());
    // This results in a fatal error that halts the OC4J
    // Method 2: declare two String properties on the bean and set them
    // Then, in the page use the Value property of the InputText control.
    // This runs but doesn't populate the controls. It does populate them if
    // the contols are OutputText controls though!!!
    this.setNameValue(data.getName());
    this.setDescriptionValue(data.getDescription());
    Best regards,
    Nigel

    Yes - this really is a bug. Any changes to make to the selectItems tag through the properties dialog rewrites the tag source code to seperate the selectOne tag and the selectItems tag. For example, before you use the dialog, you tag code could look like this:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1">
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    </h:selectOneMenu>
    After the use of the dialog the code will be rewritten as:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    Notice, the tags are now seperated instead of the selectItems tag being encased in the selectOneMenu tag.

  • JSF - UICommand component not rendering properly

    2:12 PM 7/11/2007
    by Nirav Assar
    Overview
    It was discovered that in certain situations a UICommand component does not bind properly to its associated action method in the managed bean. The symptoms of this situation occur when you have a page with an action, and you click the action and nothing occurs. The page seems like it submits, but no code inside the action method of the managed bean gets executed and no errors are generated in the console!
    Problem
    The problem arises when you have a managed bean in request scope and you have a UICommand, either a commandLink or commandButton, associated to the bean. In addition this UICommand component has a rendered attribute tag (boolean value) that uses a managed bean method to tell it whether is renders or not. Even if the component gets rendered to the screen, the component does not get binded to the action method in the request scoped bean. This is a problem with JSF and may be due to the fact that the component gets rendered, but since the bean is not created until a request is submitted, the component never gets binded to an action. Therefore, nothing in the action method ever gets executed.
    Analysis
    Thus is seems like if you want to dynamically render a submit type component, such as a button or a link, you cannot effectivley do that with a bean in request scope. You'll have to place it session scope, which will work fine. Another option is to render the buttons all the time, but based on some scenario, using the "disabled" attribute to prevent a user from using the action. The "disable" attribute can access a boolean method in the managed bean.
    You could also use Javascript to hide the already rendered button on certain circumstance. However this would require javascript knowing the state of the domain objects/and or managed bean state.
    References:
    http://forum.java.sun.com/thread.jspa?threadID=5127437&messageID=9461810

    RamondDeCampo hit the nail on the head. If the bean used for the rendered attribute is request scope and the value differs between requests, you're going to see this type of behavior.
    Search the forums, there have been many similar reports as well as suggested solutions.

  • Selection tools not working properly -- Illustrator CS6

    The two selection tools in CS6 Illustrotor not working properly.  They don't select the object when I click and drag a box around them and the handles on drawing path won't stay highlighted when I use the direct selection tool so I can adjust them -- Worked in Illustrator for about 12 years and never had this problem.

    Have you tried:
    View > Show edges

  • Selection variable not working properly on portal

    Hi,
    We have a report in which Survey is a selection variable(Not a mandatory variable). If I select Two or more surveys simultaneosuly in the initial selection screen, then the Portal is not displaying the data. PFB screenshot of the selection.
    If I select the same two surveys individually in the selection screen, then the portal outputs the result. If I execute without selecting any survey and then apply a filter (after the output is generated) for those two surveys together, then also the data is displayed properly.
    Kindly note that this report is being used by German users and the problem exists only when the Language preferences of the portal is changed to German. With English Language Preferance, the selection variable works properly.
    Please suggest if anybody has faced a similar issue
    Regards,
    Keerthan

    Hi Lakshmi,
    The texts are maintained for those survey values and even with German Language Key, still not getting the output.
    If i select them individually, then I am getting the output.
    For instance, I have selected the surveys "0000084001" and "0000090001" together in the selection screen(I have inserted the Pic in the original post, but i am sorry it is not clear in that) and not getting the output or it hungs up in the execution state.
    If i select the same survey "0000084001" only, then I get the output.
    This is the same case when I select only "0000090001".
    This scenario is only with German Preferance.
    If i change the preferance to English and select these two surveys together, then it outputs the result.
    Regards
    Keerthan

  • Text select tool not working properly

    When I use the text select tool, it selects columns, not words in a row, which is what I want. It used to work correctly. I am using Acrobat Pro, version 9.0.0.
    I tried adding the ALT key, with no good result.

    Is it with this specific document o any pdf you work on?
    If it was earlier working fine for you, try repairing Acrobat  by going to 'Help' menu > Repair Acrobat.
    Also make sure you have updated it to the latest patch.
    Regards,
    Ravi.

  • Selection tool not working properly

    As I am dragging the tool it is selecting as it should but as soon as I stop dragging the area I was trying to select has a bunch of random sections which are no longer selected.  When I then try to add to the selection, it simply changes which sections are selected and not selected.  I cannot get it to just select as I want it to. 
    Therefor, when I select via layer I end up with this.
    Please help.

    Your using the quick selection tool in add mode with a large brush size and who knows what other brush settings.  Try reducing the brush size and play with the other brush setting too. Look at the black dash outline your selection compared to the one on her forehead made using a smaller brush. However even with a 25% space 96 px brush I have no problem selecting the background. Try resetting your preferences.

  • HT3819 ITunes 11.1.5. Home Sharing is on, but there is no import button or the drop down to select "items not in my library".

    We been using home sharing for a few years, but after upgrading to iTunes 11.1.5, the import button is no longer at the bottom of the screen and neither is the selction window to pick "items not in my library". Has this functionality been moved somewhere else?

    I finally got this to work. I had to click "File...Home Sharing" and make sure the the same Apple ID is on the computer I want to drag music from and also on the computer I want to drag music to. It's that simple.

  • Text item not showed properly

    Hi,
    one text item is like
    <af:inputText value="#{bindings.Id.inputValue}" label="ID"
    required="#{bindings.Id.hints.mandatory}"
    columns="#{bindings.Id.hints.displayWidth}"
    maximumLength="#{bindings.Id.hints.precision}"
    shortDesc="#{bindings.Id.hints.tooltip}"
    binding="#{backingBeanScope.backing_User_profile.it1}"
    id="it1" inlineStyle="width:300px;">
    <f:validator binding="#{bindings.Id.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.Id.format}"/>
    </af:inputText>I don't know why when showing the jsf, there is 0 length for the text items inside

    hi friend
    this is sample code,which is in panelformlayout comprises some inputtext.
    just compare. and correct your mistake.
    or else paste the code.
    <af:panelFormLayout binding="#{pageFlowScope.managedbean_GeneralLedger.pfl1}"
                                                      id="pfl1" maxColumns="3"
                                                      rows="3">
                                    <af:inputListOfValues id="inputListOfValues1"
                                                          popupTitle="Search and Select: #{bindings.GlalPlant.hints.label}"
                                                          value="#{bindings.GlalPlant.inputValue}"
                                                          label="#{bindings.GlalPlant.hints.label}"
                                                          model="#{bindings.GlalPlant.listOfValuesModel}"
                                                          required="#{bindings.GlalPlant.hints.mandatory}"
                                                          columns="#{bindings.GlalPlant.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalPlant.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues1}"
                                                          autoSubmit="true">
                                      <f:validator binding="#{bindings.GlalPlant.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalPlantDesc.inputValue}"
                                                  label="#{bindings.GlalPlantDesc.hints.label}"
                                                  required="#{bindings.GlalPlantDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalPlantDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalPlantDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalPlantDesc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues1"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it38}"
                                                  id="it38">
                                      <f:validator binding="#{bindings.GlalPlantDesc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues2"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl1.hints.label}"
                                                          value="#{bindings.GlalLvl1.inputValue}"
                                                          label="#{bindings.GlalLvl1.hints.label}"
                                                          model="#{bindings.GlalLvl1.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl1.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl1.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl1.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues2}">
                                      <f:validator binding="#{bindings.GlalLvl1.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl1Desc.inputValue}"
                                                  label="#{bindings.GlalLvl1Desc.hints.label}"
                                                  required="#{bindings.GlalLvl1Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl1Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl1Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl1Desc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues2"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it39}"
                                                  id="it39">
                                      <f:validator binding="#{bindings.GlalLvl1Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues3"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl2.hints.label}"
                                                          value="#{bindings.GlalLvl2.inputValue}"
                                                          label="#{bindings.GlalLvl2.hints.label}"
                                                          model="#{bindings.GlalLvl2.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl2.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl2.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl2.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues3}">
                                      <f:validator binding="#{bindings.GlalLvl2.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl2Desc.inputValue}"
                                                  label="#{bindings.GlalLvl2Desc.hints.label}"
                                                  required="#{bindings.GlalLvl2Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl2Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl2Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl2Desc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues3"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it40}"
                                                  id="it40">
                                      <f:validator binding="#{bindings.GlalLvl2Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues4"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl3.hints.label}"
                                                          value="#{bindings.GlalLvl3.inputValue}"
                                                          label="#{bindings.GlalLvl3.hints.label}"
                                                          model="#{bindings.GlalLvl3.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl3.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl3.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl3.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues4}">
                                      <f:validator binding="#{bindings.GlalLvl3.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl3Desc.inputValue}"
                                                  label="#{bindings.GlalLvl3Desc.hints.label}"
                                                  required="#{bindings.GlalLvl3Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl3Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl3Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl3Desc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues4"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it41}"
                                                  id="it41">
                                      <f:validator binding="#{bindings.GlalLvl3Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues5"
                                                          popupTitle="Search and Select: #{bindings.GlalLvl4.hints.label}"
                                                          value="#{bindings.GlalLvl4.inputValue}"
                                                          label="#{bindings.GlalLvl4.hints.label}"
                                                          model="#{bindings.GlalLvl4.listOfValuesModel}"
                                                          required="#{bindings.GlalLvl4.hints.mandatory}"
                                                          columns="#{bindings.GlalLvl4.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalLvl4.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues5}">
                                      <f:validator binding="#{bindings.GlalLvl4.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalLvl4Desc.inputValue}"
                                                  label="#{bindings.GlalLvl4Desc.hints.label}"
                                                  required="#{bindings.GlalLvl4Desc.hints.mandatory}"
                                                  columns="#{bindings.GlalLvl4Desc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalLvl4Desc.hints.precision}"
                                                  shortDesc="#{bindings.GlalLvl4Desc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues5"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it42}"
                                                  id="it42">
                                      <f:validator binding="#{bindings.GlalLvl4Desc.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues6"
                                                          popupTitle="Search and Select: #{bindings.GlalAcct.hints.label}"
                                                          value="#{bindings.GlalAcct.inputValue}"
                                                          label="#{bindings.GlalAcct.hints.label}"
                                                          model="#{bindings.GlalAcct.listOfValuesModel}"
                                                          required="#{bindings.GlalAcct.hints.mandatory}"
                                                          columns="#{bindings.GlalAcct.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalAcct.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues6}">
                                      <f:validator binding="#{bindings.GlalAcct.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalAcctDesc.inputValue}"
                                                  label="#{bindings.GlalAcctDesc.hints.label}"
                                                  required="#{bindings.GlalAcctDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalAcctDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalAcctDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalAcctDesc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues6"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it43}"
                                                  id="it43">
                                      <f:validator binding="#{bindings.GlalAcctDesc.validator}"/>
                                    </af:inputText>
                                    <af:inputText value="#{bindings.GlalDesc1.inputValue}"
                                                  label="#{bindings.GlalDesc1.hints.label}"
                                                  required="#{bindings.GlalDesc1.hints.mandatory}"
                                                  columns="#{bindings.GlalDesc1.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalDesc1.hints.precision}"
                                                  shortDesc="#{bindings.GlalDesc1.hints.tooltip}"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it44}"
                                                  id="it44">
                                      <f:validator binding="#{bindings.GlalDesc1.validator}"/>
                                    </af:inputText>
                                    <af:inputListOfValues id="inputListOfValues7"
                                                          popupTitle="Search and Select: #{bindings.GlalClId.hints.label}"
                                                          value="#{bindings.GlalClId.inputValue}"
                                                          label="#{bindings.GlalClId.hints.label}"
                                                          model="#{bindings.GlalClId.listOfValuesModel}"
                                                          required="#{bindings.GlalClId.hints.mandatory}"
                                                          columns="#{bindings.GlalClId.hints.displayWidth}"
                                                          shortDesc="#{bindings.GlalClId.hints.tooltip}"
                                                          binding="#{pageFlowScope.managedbean_GeneralLedger.inputListOfValues7}">
                                      <f:validator binding="#{bindings.GlalClId.validator}"/>
                                    </af:inputListOfValues>
                                    <af:inputText value="#{bindings.GlalClassDesc.inputValue}"
                                                  label="#{bindings.GlalClassDesc.hints.label}"
                                                  required="#{bindings.GlalClassDesc.hints.mandatory}"
                                                  columns="#{bindings.GlalClassDesc.hints.displayWidth}"
                                                  maximumLength="#{bindings.GlalClassDesc.hints.precision}"
                                                  shortDesc="#{bindings.GlalClassDesc.hints.tooltip}"
                                                  partialTriggers="inputListOfValues7"
                                                  binding="#{pageFlowScope.managedbean_GeneralLedger.it45}"
                                                  id="it45">
                                      <f:validator binding="#{bindings.GlalClassDesc.validator}"/>
                                    </af:inputText>
                                    <af:selectOneChoice value="#{bindings.GlalOptType.inputValue}"
                                                        label="#{bindings.GlalOptType.label}"
                                                        required="#{bindings.GlalOptType.hints.mandatory}"
                                                        shortDesc="#{bindings.GlalOptType.hints.tooltip}"
                                                        binding="#{pageFlowScope.managedbean_GeneralLedger.soc4}"
                                                        id="soc4">
                                      <f:selectItems value="#{bindings.GlalOptType.items}"
                                                     binding="#{pageFlowScope.managedbean_GeneralLedger.si4}"
                                                     id="si4"/>
                                    </af:selectOneChoice>
                                    <af:selectOneChoice value="#{bindings.GlalStatus.inputValue}"
                                                        label="#{bindings.GlalStatus.label}"
                                                        required="#{bindings.GlalStatus.hints.mandatory}"
                                                        shortDesc="#{bindings.GlalStatus.hints.tooltip}"
                                                        binding="#{pageFlowScope.managedbean_GeneralLedger.soc5}"
                                                        id="soc5" readOnly="false"
                                                        valueChangeListener="#{pageFlowScope.managedbean_GeneralLedger.soc5_valueChangeListener}"
                                                        autoSubmit="true">
                                      <f:selectItems value="#{bindings.GlalStatus.items}"
                                                     binding="#{pageFlowScope.managedbean_GeneralLedger.si5}"
                                                     id="si5"/>
                                    </af:selectOneChoice>
                                    <af:selectBooleanCheckbox value="#{bindings.GlalBudFlag.inputValue}"
                                                              label="#{bindings.GlalBudFlag.label}"
                                                              shortDesc="#{bindings.GlalBudFlag.hints.tooltip}"
                                                              binding="#{pageFlowScope.managedbean_GeneralLedger.sbc4}"
                                                              id="sbc4"
                                                             valueChangeListener="#{pageFlowScope.managedbean_GeneralLedger.sbc4_valueChangeListener}"/>
                                  </af:panelFormLayout>

  • "Filter Finder Items" not working properly

    I'm taking my first crack at Automator, and while I've made good progress, one of the built-in actions, "Filter Finder Items", is just not behaving predictably. Basically, I'm doing the following:
    1) Get selected finder items - pulls a selected folder
    2) Set variable - this gives me a variable for the name of the folder we're working with
    3) Create a new folder inside the selected folder
    4) Get folder contents of selected folder
    5) Filter for three different file extensions - here's where my problem starts
    6) Move the filtered files into the new subfolder (though it really seems to be copying, which necessitates the following steps to get rid of the original files)
    7) Get contents of selected folder again
    8) Filter on the same three files extensions - this time it works properly
    9) Move filtered files to Trash
    For some reason, the first filter action doesn't seem to be working at all - if I have 15 files in the selected folder, but only three that match the filter, all 15 will be copied to the new subfolder. The second folder action will then, inexplicably, work exactly as it should and move the proper files to the Trash.
    Does anybody know why this action doesn't want to cooperate? Has anybody else seen something similar?
    Thanks for any hints/help.
    Rick
    Message was edited by: rnb2

    Saving the workflow as an application should be all that is needed, but the first action (the one that gets the items to work with) may not be correct for your usage. If the first action is *Get Selected Finder Items*, unfortunately the selection would be the application itself, since that is what was most recently selected.
    In this case, the application can be dragged onto the Finder's toolbar (where it will work with the current selection), otherwise the first action can be removed and the application used as a droplet (items dropped onto the application are passed to the workflow) or a Finder plugin.
    The first action can also be replaced with an *Ask for Finder Items* action (ignoring input).

  • Selections tools not working properly in Photoshop CC 2014

    Just installed Photoshop CC 2014. For some reason I cannot get my quick selection tool and quick mask to work properly. I can make a selection but when I try to make a mask I get all kinds of artifacting going on. I try to use quick select to clean up the artifacting to no avail, in fact I start to get different artifacting in the selection that cannot be removed by the brush tool. HELP. To bad I uninstalled Photoshop CC. Can I reinstall Photoshop CC somehow? Anybody out there with the same problems? The focus area will not work also?

    At this moment, I have tried : Reset the "Adobe Photoshop Settings File" (When you open Photoshop, push "option + command + shift" for Apple).
    Not ok.
    See here.

  • Batch selection strategy not working properly

    Hi ,
    I have an issue with automtaic batch determination
    The header item contains 10 component items, out of 10 components I am facing issue with only one component so that I can consider this is not a configuration issue and might be a master data issue
    Scenario :
    process order created , released and after material staging saved , then the transfer order created automaticallyfor component items . the particular one component having 3 batches .. In the material master the total sheif life time maintained as 1095 days.  for the first batch mfg date 01/01/2010 the system calculates the SLED 31/12/2010 , and the remaining 2 batches expires during 08/09/2013  .logically the system should pick the first batch which one expires first ( FEFO ). but it picking the others
    If i change the date of mfg and save it , after that if i create a process order it picks the batch correctly
    but if i put back the earlier dates in mfg date after that it picking the correct batch only
    My question is why the batch sreach strategy is picking the differnt batches for same dates , whether the batch number get stored if we change manually
    pls suggest and give some hints what are the points I need to check

    Dear
    Some of the check points may be :
    1.Investigate the Batch management -SLED/FIFO : Batch management - FEFO
    2.Please check whther any Batch search strategy is maintined for th  component in MBC2 or in COB2 and check the sort rule of the batch determination   : Re: Error In Batch Determination
    3.Create a batch search strategy using selection criteria and include characteristics LOBM_RLZ (Remaining shelf life) in the class. Check the oss note 33396 to calculate this characteristics automatically.You can enter selection criteria in something like >= 0, for example.
    4.Check the Period Indicator for SLED and Rounding values in Plant Data 1/Storage Loaction 1 in MMR for the particual compoenets .
    5.Check the settings for SLED in  Material master material/sto loc data1 and  Log-batch management-exparation date check SLED settings & there is a user exit through we can configure the date check. Check in OMJ5 here you have to define check with plant and move tpe wise
    Regards
    JH

  • Showdetail Item not working properly.

    I am enabling showdetail Item by setDisclosed(true) from one method. At this time pop up in tab screen is not getting opend. and gives javascript error as following.
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2)
    Timestamp: Mon, 8 Mar 2010 13:56:26 UTC
    Message: 'null' is null or not an object
    Line: 3177
    Char: 1
    Code: 0
    URI: http://127.0.0.1:7101/Thruput_v3.1/afr/partition/ie/default/opt/table-SHEPHERD-PS1-9296.js
    But if it is opened with directly clicking on the tab, pop up gets opened.
    This tab contains one table. If I remove table from jsff, it works fine.
    Please revert back.

    Hi,
    I think you can accomplish your requirement by writing a AM method. Whose input parameters will be a Row Reference. As you have already created a PPR on the radio button you just all this AM method on the fire action of radio button from the CO. Now in the AM method you capture the row passed from CO and perform the required operations on the data.
    Hope this is helpful

  • Library items not working properly (DW CC)

    Hi
    Working with Dreamweaver CC library items has been easy before. Now, suddenly, something is wrong, and I hope someone has the solution. Example:
    I select a piece of a document, click on New Library Item button (in Assets tab) - a new library item is made, but it jumps the part where I make a name, just automatically names them Untitled1, 2 etc. Right clicking and then Rename is impossible (???).
    And making a library item from scratch is the same - DW automatically gives it a file name Untitled 1, 2 etc. and renaming is impossible.
    What on earth is happening? Please advise

    Once you add a new Library item in the Assets panel, DW gives you the option to name it. See below:
    And even after choosing the default name (Untitled), you can always edit the item by single-clicking it or pressing the Edit button.
    Let us know if you need more help.

  • Date selection will not print properly when using Microsoft Date and Time Picker Control 6.0 in Excel 2010

    I have created a field input worksheet in which the user identifies start and end dates for training sessions, using the Date and Time Picker Active X Control.  It works fine on-screen, but when the worksheets are printed, the dates that were selected
    using the date picker calendar print out in an unreadable, huge font.  The large font also appears in the print preview mode.  I've tried modifying various properties in design mode, but nothing that I have tried will correct the problem. 
    Any ideas?

    The DTPicker seems to have some bugs in it when used on a worksheet. I have overcome the above by setting the size properties to the same size as a cell and the Linked cell property to the
    cell under the DTPicker. (Even setting the Linked cell had problems with an error message referring to the Check box property to be set to true so I just set it to true and inserted the linked cell and set the checkbox property back to
    false.)
    Then the VBA code below that Hides the DTPicker after a date is selected and unhides the DTPicker when the linked cell with the date is selected. The code is for 2 DTPickers so you will need to edit to suit your requirements.
    Caveat: If the DTPicker is visible then you can't hide it by selecting the same date again. If this occurs then it is a multi step operation. First select another date and the DTPicker will hide, then click on another cell then back on the cell with
    the date to unhide the DTPicker and then select the correct date.
    Hope it helps and feel free to get back to me with any questions etc.
    Private Sub DTPicker1_Change()
        Me.DTPicker1.Visible = False
    End Sub
    Private Sub DTPicker2_Change()
        Me.DTPicker2.Visible = False
    End Sub
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        Select Case Target.Address
            Case "$E$5"     'This is the linked cell for DTPicker1
                Me.DTPicker1.Visible = True
            Case "$E$13"    'This is the linked cell for DTPicker2
                Me.DTPicker2.Visible = True
        End Select
    End Sub
    Regards, OssieMac

Maybe you are looking for

  • Links in portal toolbar no longer working after navigating within a room

    Hi! We have a rather strange problem. Say a user navigates to the collaboration room list ("collaboration" -> "rooms") and enters a room. When he/she then changes the part of the room (e.g. from "Room Discussions" to "Room Documents"), the second row

  • Storage management and apex

    Hi, First of all: Apex is an outstanding product. I'm wondering : I have installed 1.5, followed by 1.6 and 2.0. I have the intention to install 2.2. But I hesitate. I've a small computer (20gB) and the volume of data is growing and growing.... What

  • Long gaps between timelines

    I am working on a DVD with about 15 timelines, each timeline contain 1 video track, 4 audio tracks and 9 subtitles tracks. When playing in a DVD player there's a long gap between the timelines (5-10 seconds). There are no gaps when playing on a compu

  • Why did they change the size of the icalendar (now 10x13")?

    I just received the first icalendar I created for Christmas gifts and it is HUGE!! Why? No need IMHP. They now require so much wall or counter space. I personally like the original size. Your thoughts?

  • Problem when trying to install of Photoshop Elements 11

    About halfway thorough the istallation the disc is shot out and  a square listing about 8 Error DW050 some of them having to do with the lingusitics. HELP!