B
Bernie Yaeger
I'm running into a strange concurrency problem:
I have an outer loop of distinct invnum from table a_r; I have an inner loop
of table a_r2 that is filtered on 'invnum = out loop invnum'. I calculate
and then want to delete, but I have the concurrency error, which I supposed
was because the out table is from the same backend table. So I came up with
a strategy - I created a table called a_rtemp before creating the outer
loop. Now my outer loop refers to a completely different table, a_rtemp -
yet I am still getting the concurrency errror! Any idea what's going on
here?
Thanks for any help.
Bernie Yaeger
I have an outer loop of distinct invnum from table a_r; I have an inner loop
of table a_r2 that is filtered on 'invnum = out loop invnum'. I calculate
and then want to delete, but I have the concurrency error, which I supposed
was because the out table is from the same backend table. So I came up with
a strategy - I created a table called a_rtemp before creating the outer
loop. Now my outer loop refers to a completely different table, a_rtemp -
yet I am still getting the concurrency errror! Any idea what's going on
here?
Thanks for any help.
Bernie Yaeger