Appian Community and Appian Academy are being upgraded. From July 24–August 3, the Appian Community will be in read-only mode. During this time, the site will be read-only and user registration will be disabled. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
a!localVariables( local!customerName, a!pickerFieldCustom( label: "Enter Customer Name, placeholder: "Type to select the employee's state of residence", maxSelections: 1, suggestFunction: rule!CP_AAACUSTOMER( filter :_ , ), selectedLabels: local!customerName, value: local!customerName, saveInto: {local!customerName} ) )
a!localVariables( local!matches: ( a!queryEntity( entity: cons!CP_AAA_CUSTOMER, query: a!query( logicalExpression: a!queryLogicalExpression( operator: "AND", filters: { a!queryFilter( field: "name", operator: "includes", value: ri!filter ) }, ignoreFiltersWithEmptyValues: true ), pagingInfo: a!pagingInfo( startIndex: 1, batchSize: 50 ) ), fetchTotalCount: false ) ), a!dataSubset( data: local!matches.data, identifiers: index( local!matches, "identifiers",{}) ) )
Please find above screenshots (Expression Rule and output + SAIL code and Interface . I'm using pickerfieldCustom here. Please help me to display "name' only and how to display and save selected name . Currently it displays and save ' id ' . Please let me know if i need to make any changes in Interface or/and Exp Rule ?
Discussion posts and replies are publicly visible
As the documentation describes, the data attribute of the returned datasubset of your suggest function must be a list of strings which will then populate the dropdown.
It is populating the data id and name. Question is 1 )how to populate only name . 2) how to save name value ? right now it is saving id.
a!dataSubset( data: index(local!matches.data, "name", {}), identifiers: index( local!matches, "identifiers",{}) )
This is very simple. The data attribute is what you see and the identifiers is the stored value. And, you can put anything you like into identifiers.
Thank you .It is working as per design