Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. 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.
We have a Record Filter "INSURED" in a case level . For example we are having 3 insured names for a particular policy, we want only those 3 names to be diplayed. Currently all insured names from table are displaying. We couldn't able to pass any filter like rv record or any primary key to fetch the particular insured for policy. Is there any way to implement using record filter or we have to go with manual filters?
Discussion posts and replies are publicly visible
You need to use manual filters with a!queryRecordType(), not Record User Filter.
I highly recommend to use the search feature to find related cases.
You can achieve this using a Record User filter with a custom dropdown record filter.try something like this.a!recordFilterList( name: "Insured users", allowMultipleSelections: true(), options: a!forEach( items: a!queryRecordType( recordType: "", /*users recordType name*/ fields: { /*userRecord_field_name*/ }, pagingInfo: a!pagingInfo( startIndex: 1, batchSize: 100 ) ).data, expression: a!recordFilterListOption( id: fv!index, name: fv!item[/*userRecord_field_name*/], filter: a!queryFilter( field: ""/*cuurent_recordFieldName*/, operator: "=", value: fv!item[/*userRecord_field_name*/] ) ) ))