Multiple List Box showing Duplicate Options in Existing Form Library forms.

Good day.  I currently have an InfoPath 2010 form library template that has a view containing 4 multiple selection list boxes.  These list boxes get their values from a hidden view that contains 4 repeating tables in which I've set default values
for Value and Display name to populate the multiple selection list boxes.
The issue I am having is this: When adding new options to the repeating tables through the Default Values option window and publish, new forms display the new selection options successfully, while existing forms in the library when opened are displayed duplicates
of the first default value in the table in the place of the new options. (Example, Create Data[display] - 10[value] is displaying 4 times after adding 3 new options to the characteristics table that contains Create Data as it's first row item.)
When comparing the .XML of a new form to an existing form, groupX in this case shows all options in the new form .XML, but shows the duplicates in the .XML of an existing .XML file.
Is there a way to resolve this issue so that existing documents will display the proper selection options instead of the duplicates?  I'd like to note that another list box had a value added and it displayed the value properly when published in both
new and existing forms.
Thanks!

Hi Hemendra:
There are no rules on Section A.
Two out of three forms used so far by the users have these problems.
We did extensive trending study on all the submitted forms on both where the submit was successful and ones with Section A frozen up. Also, requested a user to submit a few forms per our instructions on different browsers.  Even though there are some
forms in the past which could be claimed as success has some attachment uploaded to the Section A of the form, currently every time an attempt by any usetr to attach a smallest document the section A, it wipes out all the existing completed fields and freezes
up all the rest of the controls of that section and not any other part of the form.
Thanks,
SRA
SRAEngineer

Similar Messages

  • How to place multiple list box in Module Pool Program having same option.

    I have a screen. I want to place multiple i/o box with listbox option having 10 option of each . Is it possible ?

    Hi Manoj,
    Sorry, did not got you. You mean list box with 10 options, just this?
    Or Cascading list box?
    regards,
    Archer

  • How do i delete duplicates from my music library. After updating my iTunes the "Show Duplicates" option does not appear in the menu

    How do i delete duplicates from my music library. After updating my iTunes the "Show Duplicates" option does not appear in the menu

    If you are on Version 11.0.1 rather than 11 Apple put it back in
    View > Show Duplicates
    Option + View > Show Exact Duplicates
    so if you are on 11 upgrade to 11.0.1 and you will have it

  • How can multiple check boxes be added at one time to a form?

    How can multiple check boxes be added at one time to a form?

    Thanks for your response, but copying and pasting creates a link. If the user places a check mark in one of the boxes, all the rest of the boxes will have a check mark also. I will research this some more.
    Carol Deatherage
    Receptionist
    Novar/Honeywell
    1000 SE 14th Street
    Bentonville, AR 72712
    Office:  (800) 341-7795
    Fax: (479) 271-0657
    [email protected]<mailto:[email protected]>
    Your feedback is important to us! Please take a moment to rate this response.
    Click Here to Access the Survey<https://www.surveymonkey.com/s/NovarSurvey>!
    This email and any files transmitted with it are confidential and intended solely for the individual or entity to whom they are addressed. If you have received this email in error destroy it immediately.
    Novar Confidential ***

  • Multiple Speaker box shows a locked Apple TV speaker option.

    In my Multiple Speaker box under iTunes my Apple TV icon has a small image of a "Lock" in the locked position.  I think this is the reason I can't play music through the speakers connected to my Apple TV.  How do I unlock this?

    Yes. I did.  But here's an update.  I just now checked my firewall settings under System Preferences and turned OFF the firewall.  That solved my problem.  I do not know what risk I am open to with Firewall off but I guess I hope for no consequences.  Thanks for getting back to me.  I apologize for not posting my solution but I just did it.

  • HT2905 Is the 'show duplicates' option missing on the new itunes??

    Can't find the option where it used to be...

    The show duplicates/show exact duplicates features have been left out of iTunes 11.0. Rumor suggests they will be restored in the next build. In the meantime I have written two Windows scripts to make playlists of Duplicates and Exact Duplicates, either from a selection of tracks or the entire library. Note that, as with the iTunes feature, this list makes no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicate copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • List Box showing Value and Display members?

    Ok this is a CONCEPT problem (the code is not professional, just read it for the concept, though it does compile and run).
    Right, I have asked many people on IRC and no one is giving me a straight answer lol so maybe some professionals can help me.
    I am trying to use a Datasource property for my combobox. This is so I can just pass an entire KeyValue pair with indexes and values to be shown in the listbox.
    Creating the keyvaluepair as a WHOLE and passing that to datasource property works perfectly.
    Creating a keyvaluepair PROCEDURALLY (in a loop or w/e) ends in the datasource property ToString()ing it, list box items show BOTH value AND display members in square brackets as an entire option.
    NOTE: Getting the lsitbox.value results in ONLY the valuemember being returned even though the listbox shows both the valuemembers AND the displaymember? it knows they are different?
    Now, I dont want any alternatives or comments about the quality of the code, all I want to know is WHY is it doing this, it seems compeltely illogical that the same TYPE and Values and can different Effects within the datasource property? Its like it knows
    it was built procedurally?
    Anyway here is some code for reference:
    // Windows Form
    namespace skbtInstaller
    public partial class frmMainWindow : Form
    public frmMainWindow()
    InitializeComponent();
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value";
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key,Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public class skbtServerControl
    private frmMainWindow frmMainWindowHandle;
    public void refreshformWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    Thanks!
    (I have posted on codeproject too, will condense any replies).
                 

    Thanks Michael!
    I did debug this and it turns out when i set a new BindingSource to the combo box, indeed the DisplayMember gets reset. Oddly though, the ValueMember stays the same.
    I have fixed this with setting the Members before every new bindingSource is set to the combobox, strange that only the displaymember is reset?
    For reference, the new resolved code: (this compiles albeit with designer components placed)
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace etstapp1
    public partial class Form1 : Form
    private skbtServerControl sc;
    public Form1()
    InitializeComponent();
    this.sc = new skbtServerControl(this);
    // coxArmaPath = Combo Box (simple drop down)
    this.cBoxArmaPath.ValueMember = "Key";
    this.cBoxArmaPath.DisplayMember = "Value"; // This doesnt seem to stick after the first datasource set??
    public void addServerPathItem(String Key, String Value)
    this.cBoxArmaPath.Items.Add(new KeyValuePair<String, String>(Key, Value));
    // This works fine, only the "DisplayMember" is displayed and the "ValueMember" is hidden.
    // This acts differently with the same types???
    public void setServerPathDatasource(List<KeyValuePair<String, String>> source)
    this.cBoxArmaPath.DisplayMember = "Value"; // fix datasource problem
    this.cBoxArmaPath.ValueMember = "Key"; // fix datasource problem
    this.cBoxArmaPath.DataSource = new BindingSource(source, null);
    public void clearPathBox()
    if(this.cBoxArmaPath.DataSource == null){
    this.cBoxArmaPath.Items.Clear();
    else
    this.cBoxArmaPath.DataSource = null;
    private void btnStatic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithSTATICDatasource();
    private void btnNormal_Click(object sender, EventArgs e)
    this.sc.refreshFormWindow();
    private void btnDynamic_Click(object sender, EventArgs e)
    this.sc.refreshformWindowWithDatasource();
    public class skbtServerControl
    private CoreConfig CoreConfig;
    private Form1 frmMainWindowHandle;
    public skbtServerControl(Form1 f){
    this.frmMainWindowHandle = f;
    this.CoreConfig = new CoreConfig();
    public void refreshFormWindow()
    // Clear Drop Box (empties drop box)
    this.frmMainWindowHandle.clearPathBox();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in CoreConfig.getServerConfigList())
    // Populate Drop Box
    this.frmMainWindowHandle.addServerPathItem(pair.Key, pair.Value.getTextualName()); // this works as intended
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // This works absolutely fine. ValueMembers are hidden.
    public void refreshformWindowWithSTATICDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>()
    new KeyValuePair<String, String>("testKey1", "somevalue1"),
    new KeyValuePair<String, String>("testKey2", "somevalue2"),
    new KeyValuePair<String, String>("testKey3", "somevalue3")
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like: Some Display Text, Some Display Text, Some Display Text (PERFECT!)
    // ** HERE IS THE PROBLEM?? **
    // This creates a type that seems different to the above function which works fine...
    public void refreshformWindowWithDatasource()
    // Clear Drop Box
    this.frmMainWindowHandle.clearPathBox();
    var pathDataSource = new List<KeyValuePair<String, String>>();
    //skbtServerConfig is very simple property object
    foreach (KeyValuePair<String, skbtServerConfig> pair in this.CoreConfig.getServerConfigList())
    pathDataSource.Add(new KeyValuePair<String, String>(pair.Key, pair.Value.getTextualName()));
    // Populate Drop Box
    this.frmMainWindowHandle.setServerPathDatasource(pathDataSource);
    // cBox gets items like [asjAETJQ5785d45,Some Display Text], [asawfgQ5785d45,Some Display Text], [asjAhrrQ5785d45,Some Display Text]
    // ????? surely this function should act exactly like the function above??
    public class CoreConfig
    public Dictionary<String, skbtServerConfig> getServerConfigList(){
    return new Dictionary<string, skbtServerConfig>()
    {"somekey1", new skbtServerConfig("somename1")},
    {"somekey2", new skbtServerConfig("somename2")}
    public class skbtServerConfig
    private String name;
    public skbtServerConfig(String name)
    this.name = name;
    public String getTextualName()
    return this.name;
    Talking with someone it seems logical that every time I set a new BindingSource the component will not know if I want to keep the same member values so it resets them, but why it only resets displaymember? very strange to me.
    Thanks again.

  • What happened to "Show Duplicates" option in i8?

    There used to be an option under "View" that allowed you to view duplicate songs in your iTunes library. What happened to it...?

    It's under File menu.
    Also, if you hold alt and select File menu, it turns into *Show exact duplicates*.

  • How to prevent multi-column list box showing an extra column

    I am using a multi-column list box to display data and to allow the user to enter new values. More columns are used than are actually displayed within the bounds of the listbox control. Using an event structure the user is able to scroll left and right along the columns of the list box to select the appropriate field. I am using the 'Edit Position' property to highlight the particular field that the user is selecting. This technique works well and the listbox scrolls left and right to display the selected fields correctly.
    If the listbox has, say, 10 columns with only 5 being visible within the displayed width, then I clamp the Edit Position to a maximum column value of 9 to prevent the list box from continuing to scroll right into unused columns. This works fine, except that when the user scrolls to the 10th column, the listbox control always shows a blank 11th column. The 11th column cannot be selected. It would appear that this is default behaviour for the listbox control in that an additional column is always displayed relative to the Edit Position. In my particular application it is untidy to have this blank column appearing. I have tried a workaround by programmatically writing to the 'TopLeft' property of the listbox. This partially works by ensuring that the blank 11th column is never displayed, however, despite the Edit Position being correct to select the 10th column, the field in the 10th column is no longer highlighted and the user cannot enter a new value.
    Does anyone know of a method for preventing the blank additional column from appearing?

    Ok - I have attached an example which demonstrates the issue. This is produced with LV 2012. Open the project and then the 'Multi column listbox.vi'. Run the vi and use the right/left arrows to move between cells in the listbox. Observe that unused (unwanted) columns are always displayed to the right.
    Thanks for any help..
    Attachments:
    Test Multi column listbox.zip ‏62 KB

  • Where is the Show Duplicate option in the new iTunes 8,0?

    The thing I loved about the iTunes before the new one was that it had a function to show the duplicates so I could keep only one song instead of 4 versions of the same song from different cd's.
    So my question is, where did the the "Show Duplicate" function go?

    Hi,
    Try: File>Show Duplicates.
    arg9182

  • List view shows duplicate (or blank) places in the same list

    When I look at the Places List view, and select "Hawaii" in column two, column three gives me the following list:
    [blank]
    [blank]
    Kauai
    Kauai
    Maui
    Oahu
    One of those [blank] ones contains kauai places in column 4. The other one contains big island places in island 4. So, Kauai places are listed in 3 separate sections. One of these Kauai sections clearly lists the places that I have named manually. The [blank] kauai one lists 4 different auto-named towns in kauai, containing mostly photos from my iphone. And the third one lists auto-named places. Some of the same place names are listed in more than one of these sections. This duplication of names also occurs in column 4 as well, where the names of the places were autonamed by iphoto.
    This duplication in column 3 and 4 is incredibly annoying. I'm aware that I could retag all of my photos so that all of them fall under a manually named place, but that sorta defeats the whole purpose of the gps tags, and it results in all the locations in one event becoming homogenized.
    How can I fix this?

    Do you have a backup copy of your iPhoto Library made just prior to upgrading to 10.10.3 and Photos?  If so  do the following:
    1 - restore it
    2 - launch iPhoto with the Option key held down
    3 - select the library and close iPhoto
    4 - relaunch iPhoto with the Command+Option keys held down and apply the following two first aid processed to the library:
    Option #1, Repair Library Permissions
    Option #2, Rebuild Thumbnails
    Option #4, Rebuild Library Database
    5 - launch Photos with the Option key held down , select, open and convert the rebuild iPhoto library
    6 - check to see if the blank thumbnails issue is resolved

  • Multiple Selection List Box-- Data Display

    I want to build a form which reports all of the multiple selections made by users from a list box. When I test the form, only the first selection is reported in the dataset. How do I configure the form so that when data is compiled, each of the selections from the list box is reported in sequence?

    LiveCycle Designer forms do not support multiple selections for a listbox. If you want that feature, you will have to use the Listbox and select the "multiple selection" option, the Cmbobox will not work, in Acrobat forms. You will also have process the selection array, it is not a single value.

  • List box for the select-options

    Hi All
      Can anyone send me a sample code to create a list-box for the select-options.

    Hi vighnesh vasudevan,
    Do like this for your select options for low and high also.
    Parameters:
        p_quat  TYPE char20
                AS LISTBOX VISIBLE LENGTH 30
                LOWER CASE OBLIGATORY.
    *              AT SELECTION-SCREEN ON VALUE-REQUEST                    *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_quat.
      PERFORM fill_quarters.
      PERFORM display_quarters.
    *&      Form  fill_quarters
    *       text
    FORM fill_quarters .
      DATA:
    * Field string to fill quarters in the year
        lfs_quarters TYPE LINE OF vrm_values.
      REFRESH t_quarters.
      lfs_quarters-key  = '1'.
      lfs_quarters-text = text-qu1.
      APPEND lfs_quarters TO t_quarters.
      lfs_quarters-key  = '2'.
      lfs_quarters-text = text-qu2.
      APPEND lfs_quarters TO t_quarters.
      lfs_quarters-key  = '3'.
      lfs_quarters-text = text-qu3.
      APPEND lfs_quarters TO t_quarters.
      lfs_quarters-key  = '4'.
      lfs_quarters-text = text-qu4.
      APPEND lfs_quarters TO t_quarters.
    ENDFORM.                    " fill_quarters
    *&      Form  display_quarters
    *       text
    FORM display_quarters .
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'P_QUAT'
          values          = t_quarters[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " display_quarters
    Note: I think we are not able to display the list box for select options because i am not ever seen the list box in select options . No Probs try like above code.
    See the following like it may help for you
    Listbox for Select Options
    Regards,
    Mahi.

  • List box features

    SIR I A BEGINER IN SAP ABAP . THE ISSUE IS WITH THE LIST BOX . 
    I have  2 list boxs .
    1st  LIST BOX  will have  OPTIONS TO PAY BILLS    LIKE   THE    FOLLOWING .   
    A.  ELECTRICITY BILL.
    B.  TELEPHONE   BILL
    C   INSURANCE BILL.
    IF ONE CHOSE  TELEPHONE   BILL  PAYMENT   OPTION IN   1ST  LIST BOX
    THEN   2nd  LIST BOX  SHOULD SHOW  ALL THE TELEPHONE COMPANIS  LIKE   AIRTEL   BSNL, ETC.
    IF  ONE CHOSE INSURANCE  BILL  PAYMENT
    THEN  THE    SAME  2ND LIST BOX   SHOULD BE LOADED WITH this  time   " INSURANCE COMPANYS NAMES'  LIKE
    LIC
    BIRLA INSURANCE
    ETC...............
    PLEASE SOME BODY HELP ME .
    THE SAME GOES WITH THE 3RD OPTION  THAT   IS ELECTRICITY  BILL .
    REGARDS

    Sorry   for   using  caps.
    Well the following is my data base structure or table .
    sorry for posting our queries in caps.
    Let me put my questions in a very much briefed manner.
    first my database name is zybilltyp
    consist of the fillowing fields
    zaccno
    zaccnname
    zbillty
    zbillname
    zcorpname
    in the zbilltyp i have value range ie. 1) EB -Electricity 2) TB Telephone And Finally 3) In -Insurance
    In Module Pool Screen i am having these three value to be appended into the listbox named -zbilltyp
    My difficulty is that based upon the value choosed in the first listbox dynamically the value of the second listbox should change.
    For instance in first listbox i have choosen Telephone Bill. Then in the second list box it should display all the telephone related companies names But these values should not be in from the database we have to manually hardcode the value.                         
    In the second listbox it should display like this
    Airtel
    BSNL
    Vodafone
    Like this.
    Please suggest some points regarding this. it Will be a great favour for us.
    Thanks in advance.                    
    Condition :
    1) If bill type is PB for telephone bill  then the corporation list box should show  telephone conpanies names like Airtel or bsnl etc .
    In corporation  list box .
    2) If bill type is IN  for Insurance then the corporation list box should show  Insurance  conpanies names like LIc or  Birla insurance , Reliance  etc . In corporation LIst box

  • How to create an editable List box

    Hi,
    Can any body help me out in creating an editable list box, I mean the options should be editable in the listbox. Thanks in advance.

    I mean, you have dropdown list box with some options.
    They will not be editable in the normal scenario. I want one of the options to be editable, similar to a textbox , when selected.
    Is that possible in JSF? If any one could help with Javascript also, its fine for me.

Maybe you are looking for

  • Dynamics not working in 2008 that did work in 4.5

    Post Author: ck1938 CA Forum: Xcelsius and Live Office Hi.  I have a dashboard originally built in 4.5 that doesn't work properly in 2008.  The dashboard has a list box with the regions we have our sales force broken down into with the first region b

  • Can't copy files to server - multiple instances of same user in getinfo

    I can't copy files from one of my desktop computers to a server that I administer, via AFP. When I try to do so, I get the following sequence of messages: 1. "You may need to enter the name and password for an administrator on this computer to change

  • The apps on my iPhone 6 are grayed out and say "Waiting-" when i click on them.

    I just upgraded to an iPhone 6. I backed up all my apps from my old iPhone 4 to my iTunes on my computer (MacBookPro). I then plugged in the new iPhone 6 and did a restore using the files from my old iPhone. Everything transferred over perfectly but

  • Employee search : Infoset query

    Hi All, We are trying to configure the employee search in ESS. We have requirement in order to display the Position, date of entry into the position (start date), or when the employee got promoted into that position. As default, ESS displays the posi

  • CR 2008 runtime and CRVS2010 runtime

    Can the CR2008 runtime and the CRVS2010 runtime be installed on the same machine?  Or does the CRVS2010 runtime require you to uninstall the CR2008 runtime?