JHeadstart 10.1.3: selection required error on mandatory dropdown list

Situation:
- JHeadstart 10.1.3 build 059
- One JHeadstart Group containing three item regions
- All items are in the item regions and the regions are stacked (generated as tabs)
- In the first region (tab) a mandatory item generated as a dropdown list, using a dynamic domain
When the page starts, the dropdown list displays the meaning value correctly and the list is populated with the correct values. There is no blank option in the list, which is also correct.
If no changes are made to the list and we navigate to the second tab, an error occurs, displayed at the top of the page: status (which is the field name) - selection required.
Under the status field a red message reads: A value must be entered. Even when we change the field's value to another list entry and navigate to the next tab, the error reappears. The error does not appear when we change the field back to a simple textImput item.
Why does this error occur although the field has a correct value?
Jean-Paul van der Meer and Toine van Beckhoven

Steven,
I do also have this problem. It occurs when the VO contains lookup attributes from another enitity.
In the form I have an table with two stacked tabs as overflow. In the context part I do have 4 dropdownlist. Now when I change one of the lookup items (using a LOV group) and press the save button, the first two dropdownlists become empty and the message 'Selection required' is shown. After entering the values and saving again the other two dropdownlists become empty (no message is shown because those are optional). When I'm only changing other items (non lookup items) the form works fine. At first startup the mandatory dropdownlist do have a NULL-value.
As temporary solution I moved all the dropdownlists to the stacked tabs and that also works fine. When three are moved and one remains in the context part, the problem still occurs.
With kind regards,
Martin Schaap

Similar Messages

  • How to put a select all option in a dropdown list

    i have a dropdown list
    i have to select all options from the list by putting one check box,i mean by clicking that checkbox i have to select all options.
    If any body knows give answer its urgent

    raki1221 wrote:
    i have a dropdown list
    i have to select all options from the list by putting one check box,i mean by clicking that checkbox i have to select all options.
    If any body knows give answer its urgentThis is not UI forum...post it in Swing or AWT forum..
    One thing...which API are you using for UI... AWT or Swing ?

  • Workflow: Select Reason for rejection from dropdown list.

    Hi all
        I have to create a step where the Manager has to select the
    Reason for Rejection from a dropdown list refering to a custom
    parameter table maintained from t-code sm30.
    Please post your suggestions on this.
    Thanks for your time,
    Mallik

    Thanks for your Reply,
       But It doesn't seem to work because It has to display a (table parameter) field containing the predefined Reasons for Rejection(dropdown list or more like search
    help) from which the supervisor has to select one and it has to be attached and sent as a mail.
    thanx

  • Error Displaying Mandatory community List using Adaptive data Tags

    Hi I want to list down all the mandatory community list but when i am using <pt:ptdata.mandatorycommunitiesdata pt:id="commmenu" /> tags it returns me no value.
    On the conterary the <pt:ptdata.mycommunitiesdata pt:id="commmenu" /> return me hte list of all the communities to which user has joined and once which are mandatory for the user.
    Is this the expected behavior if yes then how can we get the list of mandatory communties. The first preference will offcoure be using Tags if not at al possible then we can go about using API.
    I am unrgent ly looking for some solution. Any help in this regards is appriciated!!!
    -: Amresh

    This would only give the communities which are mandatory and exist as tabs.
    hmm..Not sure why that didn't work.
    I beleive the earlier tag doesn't exist anymore.This should help you though......It worked for me (6.5)
    <span xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/'>
    <pt:ptdata.mandtabcommsdata pt:id="menutabs" />
    <table cellpadding="0" cellspacing="0" width="200" border="0">
    <tr>
    <td height="2" colspan="3">
    </td>
    </tr>
    <tr class="menuHeaderBg">
    <td align="left" valign="middle" height="20" colspan="3" class="navSidebarSectionHeader">
       My Communities
    </td>
    </tr>
    <!-- links to communities are entered here -->
    <pt:logic.foreach pt:data="menutabs" pt:var="temp">
    <tr class="navMidtabBg">
    <td height="16" colspan="2" class="navMidtabBtn">
    <table cellpadding="0" cellspacing="0" width="100%">
    <tr>
    <td height="20" width="100%" nowrap="nowrap" colspan="1" class="objectBtn">
    <span class="actionbarBanText">
    <pt:core.html pt:tag="img" src="$temp.img" alt="" border="0" align="absmiddle" height="20" width="20" />
    <pt:core.html pt:tag="a" href="$temp.url">
    <pt:logic.value pt:value="$temp.title" />
    </pt:core.html>
    </span>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </pt:logic.foreach>
    </table>
    </span>
    Edited by: ALUIDeveloper on Mar 19, 2009 12:40 PM

  • Mandatory drop list w/dependent field displays error on refresh

    ADF Business Components 10.1.3.42.70
    JHeadstart 10.1.3.3.81
    all,
    i have a drop list(field 1) that is on a mandatory field and whose initial value is null. i have another field(field 2) which my drop list is dependent on. then i have a third field(field 3) which is dependent on the drop list field. when i try to insert a new record, i select a value for field 2, the page refreshes and i receive a "Selection Required" error message for field 1. this only happens when the group is in table layout and field 1 has a dependent field.
    Here's the test case(if you take a default generation from the hr schema employees table w/dropdown lists; jobid(mandatory), managerid, and departmentid should all have dropdown lists assigned to them):
    1. add managerid as a depends on item for jobid
    2. add jobid as a depends on item for departmentid(or any other field)
    3. run the page and click on the add row button
    4. change the managerid field value
    you should get "- Selection required" error. this is a big problem for us right now bc the depends on is required in our application and we can't figure out a workaround. can someone take a look at this?
    thanks in advance,
    paul

    Paul,
    The only way to fix this is by making the "depends on" items optional instead of required, and delegate the required check to the ADF BC layer.
    I'll try to explain why:
    - a depends on item must have the immediate attribute set to true, so validation of the item and execution of the valueChangeListener will take place in the JSF Apply Request Values Phase. In the valueChangeListener, after updating the underlying model attribute, we directly jump to the render reponse phase, to skip other validations
    - If there are multiple items with immediate="true" on the page, then they will all be validated "in sequence" in apply request values phase. So, the first drop down list is validated before the valuechangelistener of the second item fires. If the end user enters data "normally" in sequence, this is usually not a problem, however, in your use case the user first enters a value for the second "depends on" item, and then you get the validation error on the first depends on item.
    So, to fix this, change the table item template and remove the required property
    Steven Davelaar,
    JHeadstart Team
    to prevent validation of other items

  • Select Option will show in a dropdown list

    in the advance search page I want to show the <Select Option> text in a dropdown list, which is one of search criteria. for that I have done the following steps :- in the pageDef of that search page select the bindings -->inser inside bindings-->list ---> then select the Create dynamic Radio button ---> then select the "No Selection" Item is "Include labeled Item" and in the write side text write "Select Option" . but after run no text is shown in the dropdown list.it's just shown blank first.

    in the advance search page I want to show the <Select Option> text in a dropdown list, which is one of search criteria. for that I have done the following steps :- in the pageDef of that search page select the bindings -->inser inside bindings-->list ---> then select the Create dynamic Radio button ---> then select the "No Selection" Item is "Include labeled Item" and in the write side text write "Select Option" . but after run no text is shown in the dropdown list.it's just shown blank first.

  • Insert symbol from dropdown list that requires font change

    I am trying to script the following:
    I have a dropdown list set to GDT font which contains symbols. (GDT font creates symbols with various lower case letters are entered)
    When selecting a symbol from the dropdown list, I want that symbol to be inserted into the textfield where I stopped typing text and the cursor is currently positioned. The text I typed is using the Myriad Pro font, so to insert the symbol, the script needs to change the font to GDT without affecting the text font that is already typed in the textfield, insert the GDT font symbol and then change the GDT font back to Myriad Pro so I can continue to type more text in Myriad Pro.
    If the script would just copy the symbol and the font it was created in, paste it where the cursor is position and then change the font back to the default (Myriad Pro), that would be great!
    This is for Design Engineering work to allow engineers to insert GDT symbols into the same textfield as their description is in.
    Can anyone help me with this script?

    Troubleshooting plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

  • Selectively required not working for af:query component

    Hi Experts,
    one small issue.
    I have a search form and the user is supposed to enter atleast one criteria before clicking on search.
    So I opened the View Criteria and marked validation as "Selectively Requried" on all the criteria conditions in the group.
    When I open the page, I see ** infront of every field and error is coming properly when I click search without entering any values
    Problem is even if I enter few or all the values also, still error comes saying atleast one is required.
    Am I missing anything?
    or is there any programmatic way of doing the same?

    I am new to ADF ... but what i have observed is that in case the View Criteria involves search in various levels also (for e.g. Master-Detail or Master-Detail-Detail) , then at least one attribute from each level is required, if they are marked as Selectively required.
    The error message clearly tells you which attribute(s) is required. sometimes it may say Attrib1 is required or any one of Attrib1, Attrbi2, Attrib3 is required. Either I am missing something and doing it all wrong. Or it may make some sense. But still dnt understand the reason.
    Would appreciate, if somebody can throw some light on how the double asterisk(** ) behaviour i.e. Selectively Required, when search involves various levels ?

  • Inexplicable Object Required error in status bar?  Crazy.

    Hope someone can help.  Firstly, I'm developing in Classic ASP, DW8.0.2.
    I am receiving an inexplicable "Object Required" error in my status bar on the following page of a website I am developing:
    http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    When the page initially loads, there is no error.  But click a link, or hit Refresh and the error appears!  And there are loads of errors too!  What gives?
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Timestamp: Fri, 12 Feb 2010 16:04:45 UTC
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Message: Object required
    Line: 53
    Char: 3
    Code: 0
    URI: http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Line 53 of my code is:
    rsMOVIE_cmd.CommandText = "SELECT movieID, movie, cinedvd, moviecert, movierelease, moviecast, movietrailerID, livemovie FROM dbo.movies WHERE movieID = ?"
    However, I know this isn't the problem because I've completely rewritten the code and it always flags line 53, char 3 no matter what code is on that line.
    Hope someone can shed some light on the matter.  Thanks.
    Regards
    Nath.

    Thank you, again, for your response Bregent.
    The line in the client code, that's being reported as being an error is:
    <div class="reviewlayout">
    Can I just confirm with you though, when the page initially loads I don't receive the error.  It's only when I either select another link, from that page, or refresh the page.  Is that also happening for you?  It sounds like you're not seeing the error initially either, but I am wondering if, like me, you receive the error when you choose a link, or refresh?  I'm getting that in IE8 and Firefox 3.6:
    http://www.moviegossip.co.uk/movie-reviews.asp?m=1
    Why would an innocuous bit of CSS code be causing this error?
    Appreciate the input, thanks.
    Nath.

  • Bar chart get "Object required" error

    I create a bar char which group by Data Time filed, I uncheck "Continuous time Series", select "Use time groups" and select Hour(Quantity=2).
    Count another filed as chart values.
    View the report. If I insert a time which in an un-existed series, it will get "Object required" error.
    e.g: if there are time : 6:00, 4:00, when i insert a time 6:00, it works well, but if i insert a time 2:00, it get error

    Jeffrey,
    Did you manage to find a workaround for this? Or has it been confirmed as bug?
    Reason I ask is because I am facing the same problem, but with a line graph (also using time series). I am also using 11.1.12. I only get the error when the chart is receiving its first value i.e. the chart is in 'No Values' state, but then data is inserted into the Data Object, which will then update the View Object for the first time.
    After I click 'reprompt', everything is back to normal and the view object displays the correct output following the insertion of the data into the data object. Subsequent data in the data object is then correctly picked up and displayed. The problem seems to be the initial data values.
    Regards

  • SelectOneChoice: "Selection Required", but it still allows blank

    To the experienced:
    I am using JDeveloper 10.1.3.4, and have a problem that I do not know how to solve.
    In the creation form on a page, one of the attributes is Role (ther table is USERS). The Role is a selectOneChoice, for selecting from a literal list. In the List Binding Editor, The literal list has only two values:
    Admin
    StaffIt is required that when creating a new user account, the new user must have a role (either Admin or Staff). Therefore in the "No Selection Item", I chose "Selection Required".
    In the Users entity object, a List Validatior is defined for the Role attribute:
    Rule:  List Validator
       Attribute:  Role
       Operator:   In
       List:       Literal List
    Enter List of Values:
    Admin
    StaffHowever, when the the page runs, the drop-down list for the Role field is by default blank. You have to click to drop the list down to see "Admin" and "Staff" in the list. And if you leave it blank and click Commit, you get away with it and create a user with blank Role, which violates the business rule. What is validator doing?
    I tried to be clever and, for the "No Selection Item", I chose "Include Labeled Item", and typed "Staff" in the labeled item box. Then in the literal list, deleted "Staff" and left only "Admin" there. So when the page runs, the Role attribute is "Staff" by default; and if you drop down the list, you only see "Admin" in the list. Seemingly a solution. But if you leave the default "Staff" as is in the selectOneChoice box for Role, when you save the new row, the Role field of the new row is blank!
    Now no more cleverness. Let's ask the experienced developers: is there a solution to this problem?
    Many thanks to your help!
    Newman

    Hi, Arun and Branislav,
    Thank you for the instruction! I added required="true" and it takes effect right away - if you leave Role blank and click Save, an error pops up to prompt for a value for the Role attribute.
    Better still, when the default is set (set to "Staff") in the EO, the blank is no long an option in the drop-down list. Staff is already in the box by default, and you drop down the list, Admin is also available.
    I remember that mandatory corresponds to NOT NULL in data table. Now I checked and the Help says when a column in the data table is NOT NULL, mandatory is automatically checked checked for you. When mandatory is checked, there is an * next to the label of the attribute on the page.
    It is also nice to learn that the selection list at the binding level only offers available choices but does not enforce the mandatory requirement.
    I think with your postings, I gained more insight into the mechanism of JDeveloper.
    Many thanks!
    Newman

  • On closing Photoshop CC, I am getting an error message on screen that read's "Selective Palette error: no element found at line 1. Are you able to assist with this problem?

    Can anyone shed some light on this error message I am getting upon closing Photoshop CC
    I am getting an error message on screen that read's "Selective Palette error: no element found at line 1. Are you able to assist with this problem?

    Same issue here in WI and for me it was at 6:36p CST.
    I'm changed my password, removed iCloud from my phone ... tried 3G and WIFI with no luck. I also cannot check it on my Mac or iPad. I was able to get contacts and calenders back on my phone but no mail yet.
    Did the whole Apple support thing and apparently I'm part of the 1%
    EDIT: Question: are all of you former MobileMe users as well? Just wondering because I know there were going to be some changes as they completely move MobileMe over to iCloud and drop the "extra" services. I just can't remember if it was just a single cut off date or a series of dates. THAT email is stuck in my iCloud folders.

  • Email submit button causing required error when all required fields are filled in

    It looks like if I have more than 1 instance of subform  added,  my email submit button triggers "..at least one required " error message when all required fields are filled-in.
    I toggle subforms between "visible" and "hidden (from layout)".  Any suggestion is appreciated.
    ralph

    The fields that are hidden should have the validate.nullTest property set to "disabled", something like;
    TextField1.validate.nullTest="disabled";

  • "Object Required" error when using the script block from the code behind

    I try to use the following script block on the code behind page
    <script defer='true' id='NavID' type='text/javascript'>Nav();</script>
    and the function Nav() is on the .aspx page. It gives me the "Object Required" error message. BUT if I add an alert("hello!!!") line inside of the Nav() function, it works fine after the user closes the alert box. Has anyone experienced a similar problem? Please help. Thanks.

    There is no way to troubleshoot this by looking at a picture of the diagram. LabVIEW 6 is almost prehistory and many things have changed, especially the file IO all looks different so it is impossible to tell what you are doing.
    Error 7 is file not found, so most likely your string operations are not correct. What are the full strings? What is the final file name (maybe you are missing a "\" or maybe you are on a different OS type). Put an indicator at the path wire to see what's happening!
    Is this a datalog file?
    (Overall, the code is a bit suspect. Nobody needs a seven frame flat sequence. ) Why do a control and an indicator have the same label?)
    LabVIEW Champion . Do more with less code and in less time .

  • CRViewer XI R2 Select Expert error when using dates

    I am using RDC.  CR XI R2 w/ SP2/3.  When I open any report with dates in the output and then use Select Expert and choose a date from the browse or dropdown list I get an error.
    "Error - the ) is missing"
    -Thanking you in advance.... Brent
    Edited by: Brent Lawrence on Jun 11, 2008 2:15 PM
    Edited by: Brent Lawrence on Jun 11, 2008 2:18 PM

    Hello Brent,
    I'm sorry the RDC viewer and the Select Expert do not meet your expectations.  The RDC was deprecated with the release of Crystal Reports 10.  Once the RDC was deprecated it stopped receiving development focus for issues like this.  The RDC remained available for two more versions (XI / XI R2) but it has now been retired with the release of CR 2008 a few months ago.
    I'm surprised to hear that the Select Expert wasn't showing this issue in CR XI (v11.0), unfortunately I won't be able confirm this.
    If you want to roll back to the viewer for CR XI (v11.0) you have to roll back entirely to work with CR XI (v11.0).  You should not mix versions of DLLs (e.g crviewer.dll v11.0 and craxdrt.dll v11.5).  This may work, but it would not be supported for any issues you might encounter.  You indicated in your post that you moved to CR XI R2 (v11.5) to get past another issue that was resolved in CR XI R2, so rolling back entirely won't be a solution.
    With the retirement of the RDC the recommended upgrade path for Windows application development is to move to the Crystal Reports .NET SDK.  The Crystal Reports .NET SDK is available in CR XI R2 so if you want to explore this SDK as well you can visit the online developer library for additional information.  Here's the link:
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    Sincerely,
    Dan

Maybe you are looking for

  • Final Cut Express without Graphics Card

    Can I run FCE without the Graphics card??

  • Select column in main query from sub query (derived table) -

    Hi: I have the following query - How do I select Tot_Atnd defined in the derived table SELECT  count(distinct c.prgm_id) AS "Total Completed", h.Tot_Atnd FROM  iplanrpt.vm_rpt_prgm  c INNER JOIN *(SELECT PRGM_ID, SUM(CASE WHEN ATTENDED_IND = 'Y' THEN

  • BI : Vendor Master

    Hi Experts, would like to know a few things. Kindly advise. We are doing the extraction from R3 for 0vendor_attr & 0vendor_txt. I have created the respective transformations & DTP in our *BI production system*. but when i executed the infopackagesi f

  • SQL Server 2005 Express DSN File

    I'm converting to sql server 2005, my orignal DSN file sql server 7 looked like the following [ODBC] DRIVER=SQL Server UID=sa DATABASE=PCX-MEMS-SCANS APP=Microsoft® Windows® Operating System SERVER=PCX-DATABASE the new one is SQL SERVER EXPRESS 2005

  • Cannot Share USB Printer to Wireless Networked Computer

    Hello, I have a Windows 7 64-bit desktop with a HP Photosmart Prem C410a printer attached with a USB cable. I have configured the printer as a shared printer. I have a laptop with Window 7 64-bit that is networked wireless to the Home Group. However,