Advanced filtering query syntax
Hello Deldyn,
1. Use "Shipped" instead /Shipped/
2. Add aone mode closing bracket ")" in the end
so if you are correct with data types in LocationId's range should looks like this:
((TransferOrderStatus = "Shipped") && ((ReceivingAddressLocationId = 1234) || (ShippingAddressLocationId = 1234)))
But I think ReceivingAddressLocationId and ShippingAddressLocationId it's string, so rather:
((TransferOrderStatus = "Shipped") && ((ReceivingAddressLocationId = "1234") || (ShippingAddressLocationId = "1234")))