+1 vote
in Service Now by
How do you get the records of a specified fields which are not null in servicenow?

1 Answer

0 votes
by

addNotNullQuery(String fieldName) can be used.
Example: To get all the records where ‘name’ is not null.
addNotNullQuery(‘name’);

...