在Acumatica中通过API创建货件时,收到错误
另一个流程更新了SOOrder'记录。您的更改将会丢失
我们创建货件的方式如下:
如果用户在创建后立即在Acumatica中加载创建的货件,则会出现此问题。然后,当API尝试发布货件详细信息时(步骤4到6),API会抛出错误
PX.Data.PXLockViolationException:错误#90:另一个进程已更新' SOOrder'记录。您的更改将会丢失。
在编辑当前在UI中打开的货件时,我们是否可以避免锁定违规异常?
答案 0 :(得分:5)
Saving a shipment triggers a long-running, asynchronous operation. You need to wait for this process to complete before you do anything else, by calling GetProcessStatus() and retrying until it is completed. Otherwise, you'll run into concurrency issues with your second update call.