Give some examples of Fieldlist in X++ code?
static void TestNoFetch(Args _args)
{
CustTable custTable;
select firstOnly noFetch AccountNum from custTable;
info(custTable.AccountNum); // no value fetched yet
next custTable; // move the cursor
info(custTable.AccountNum); // value
}
*This post is locked for comments
I have the same question (0)