let oTable = that.getView().byId("");
const sValue = oEvent.getParameter("value");
if (sValue) {
oTable.getBinding("items").filter(
new Filter([new Filter("businessId", FilterOperator.Contains, sValue)], "OR")
);
} else {
oTable.getBinding("items").filter(
new Filter()
);
}