Hi,
I want to use this transaction notification which updates the comments field in oinv with docnum when using DGW.
if @object_type = '13' and @transaction_type in ('A','U')
begin
update oinv
set Comments = Docnum
where DocNum = @list_of_cols_val_tab_del
end
But this is not working
what am i doing wrong?
thx
Mark