8 lines
184 B
MySQL
8 lines
184 B
MySQL
|
-- reversed allocations should be marked posted (with no facts)
|
||
|
update c_allocationhdr
|
||
|
set posted = 'Y'
|
||
|
where posted = 'N'
|
||
|
and processed = 'Y'
|
||
|
and docstatus = 'RE'
|
||
|
and isactive = 'N';
|