Hi Team,
I have created AOT query and not through code and I wanted to add range where values showing null values should be displayed.
Example
Table1
Custid name recid
1 A 56312567
2 B 56312568
Table2
Refid Num recid
56312568 100 56312988
56312568 200 56312989
Created entity
Tabe1 outer join table2 with Recid and Refid
Output
Entity
Name Num refid
A Null Null
B 100 56312568
B 200 56312568
Now I dont want to display records which show with Null.
Please let me know function to use in Entity range or AOT Query Range and not with X++ code
Tried providing Value for that field with below values which did not work
sysquery::valueEmptyString()
!= //
!= /NULL/
NOT NULL
IS NOT NULL