I have been adding flowfields for lookup data to various list pages. For example here is a snip it from a table extension to add a lookup to a customer name.
field(50221; TSCustomerName; Text[100])
{
Caption = 'Customer Name';
FieldClass = FlowField;
CalcFormula = lookup (Customer.Name where("No." = field("Customer No.")));
}
I then added the field to the list page in a page extension.
field("TSCustomer Name"; TSCustomerName)
{
ApplicationArea = All;
Visible = True;
}
I noticed after users reported that these flow fields are not searchable from the search field on list views in the Business Central Web Client. You can filter them however. Am I missing something or are these fields not searchable at all?