+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’);

Related questions

0 votes
asked Aug 31, 2020 in Service Now by AdilsonLima
0 votes
asked Aug 31, 2020 in Service Now by AdilsonLima
...