I'm writing an AOT query (to be used in a view) wherein I need to set a range based on the current system date.
SQL Equivalent code -
SalesLine.ShippingDateRequested = GETDATE()
I have tried to use (CurrentDate()) but when i check the SQL code for the view, it gets translated to the literal date when the view was synchronized.
*This post is locked for comments