Сообщение от
ax_mct
Есть неплохой разбор в статье
https://community.dynamics.com/ax/b/...c-locking.aspx
What normally I use in the most cases from version AX 4.0 and the author did not mention about that way.
while select myTable
{
ttsBegin;
myTable.selectForUpdate(true);
myTable.MyField = 'something';
myTable.update();
ttsCommit;
}