How to apply filter in a standard field filter?

I have field company_address added in the list view of Sales invoice ,the field company_address linked to Address Doctype. i want to filter the filter field with show the address of "abc’ only.How to do this?

Do you want to add restrictions to the form? If so, you can use this.

https://docs.frappe.io/framework/user/en/api/form#frmset_query

not in form .want to add filter in list view filter field

Do you want to show the address of “abc” to all users?
Try this

onload: function (me) {
		if (!frappe.route_options) {
			frappe.route_options = {
				owner: frappe.session.user,
				status: "Open",
			};
		}
	},