KERNDOC://Classes/QueryRun/changed
kerndoc://classes/queryRun/next
PHP код:
{
queryRun qr;
CustTable ct;
// ...
if (qr.prompt())
{
while (qr.next())
{
if (qr.Changed(tableNum(CustTable)))
{
ct = qr.Get (tableNum(CustTable));
print ct.AccountNum;
}
}
}
}