Each time when data is changed and updated through ADF BC,
before posting changes to DB, SQL query with FOR UPDATE NOWAIT is
generated and executed. In case if other process locks row to be
updated, or another user in the same moment is updating it, error
will be generated and update will be stopped. There might be use
cases, when you would like to wait for certain period of time,
until row will be unlocked and then commit row changes. This is
especially true, if 3rd party...