Skip to main content

MutliSelector Error - 'Field' cannot be found in the system. SOLVED

  • 30 May 2024
  • 1 reply
  • 41 views

If you receiving the error: 'Field' cannot be found in the system. Follow these steps to resolve.

  1. Unpublish all Customizations
  2. Edit the ASPX and add CommitChanges = ‘True’ to the PXMultiSelector tags:
    1. <px:PXMultiSelector runat="server" DataField="Field" ID="CstPXSelector20" CommitChanges="true" />

       

  3. Edit the DAC for each MultiSelector field and add ValidateValue = False to the end of the selector definition.
    1. ePXSelector(typeof(Search2<EPEmployee.acctName, LeftJoin<Branch, On<Branch.branchID, Equal<Current<AccessInfo.branchID>>>>, Where<EPEmployee.vStatus, Equal<Status>, And<EPEmployee.parentBAccountID, Equal<Branch.bAccountID>>>>) ,ValidateValue = false)]
  4. Republish all Customizations

 

Thank you for sharing your solution with the community @kgawryluk80!


Reply