General X++ Development
How do I use `SysQuery::value()` in X++?
How do I use SysQuery::value() in X++?
1 answer
Write an answerUse SysQuery::value() to format a single value for a query range.
qbds.addRange(fieldNum(CustTable, AccountNum))
.value(SysQuery::value('US-001'));It keeps you from manually worrying about quoting and range formatting for normal values.
Know the solution?
Sign in to contribute an answer and build your community reputation.
Sign in to answer