Hi Everyone
Each time an order is amended the Show history will log it with a new instance number which my client wants to use to resend the document to their customer each time a change is made.
I need to bring the Instance Number from the Show History window of a Sales Order into the Print document using ALD or PLD - Can this be done??
Thanks
asma
Message was edited by:
Marc Riar
You need to create a UDF with a Formatted Search, where the query should be for example on the Sales Order:
SELECT MAX(LOGINSTANC) FROM ADOC WHERE DOCNUM = $[ORDR.DOCNUM]
Set as auto refresh when Document Number changes.
Then you can display this UDF on the layout with ALD or PLD.
Add a comment