Cathy
(Cathy Bennett)
December 12, 2017, 8:51pm
1
I wrote a BAQ - I have the All open Jobs from Job Head and I am linking it to the Partrans table for Receipts to stock or shipped to customers (outer join).
Some jobs do not have a transdate -
I am trying to get all jobs with a null transdate or transdate is today.
I can’t seem to figure the null syntax.
ckrusen
(Calvin Krusen)
December 12, 2017, 9:03pm
2
In E10 you can set a table criteria to “IS NULL”
OR that with the field equal to the BAQ special constant (choose TODAY)
Make sure to add parenthesis around the OR lines
Cathy
(Cathy Bennett)
December 12, 2017, 9:29pm
3
ooops - I forgot - We are on Epicor 9.05.605 - the null doesn’t seem to work.
ckrusen
(Calvin Krusen)
December 12, 2017, 10:07pm
4
Can you make a sub-query in E9?
If so, make it just the one table, no criteria, and add a calculated field that is true when the date field is null OR the date field = today.
Then on the main query, have a criteria of the sub-query need to be TRUE.
josecgomez
(Jose C Gomez)
December 12, 2017, 11:57pm
5
For 9.X use a ? (Question mark) for null checking dates
-Jose
1 Like
Cathy
(Cathy Bennett)
December 18, 2017, 1:16pm
6
The ? worked well, I just don’t understand why ISNULL under compare operator doesn’t work.