D365FFO – AX – Filter a non-empty value – X++

If you want to check if a string field has a non-empty value you can use sysquery::valueNotEmptyString() method

Some examples:

//Make a query that extract all PurchLine rows with PurchId with a non-empty value :
this.query().dataSourceTable(tableNum(PurchLine)).addRange(fieldNum(PurchLine,PurchId)).value(sysquery::valueNotEmptyString());

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s