It looks like you're trying to compare a date value with a number value, which doesn't work. So either modify the left operator to give you the month portion of the date (and do the same for the year) or - better - something like
(REAL_DELIVERY_DATE ge '#START_OF_THIS_YEAR#') and (REAL_DELIVERY_DATE le '#END_OF_THIS_YEAR#')
Cannot test this myself at the moment but worth a try. Replace YEAR with MONTH if needed.
Hi Alexander,
I tried like this, but got an error.
page/SupplierInvoicesAnalysis/List?filter=(REAL_DELIVERY_DATE ge '#START_OF_THIS_YEAR#') and (REAL_DELIVERY_DATE le '#END_OF_THIS_YEAR#')
I just recognized that I only looked at your filter and the substitution variable, so let’s take a step back. What are you trying to achieve? You want to filter records in a list on a transactional page? And should the filter be hardcoded? And from which lobby element are you navigating to the list?