Is it possible to modify order comments AFTER the order has already been added via a VFE form?
I tried to create a delimited list and say ORDERSUB[8] = DOCUMENT.XYZ but it doesn't seem to work.
I have done this before in one of the forms but slightly differently
MEL_ADD_ORDER("S","","",""...., document.xyz,"")
Yes, I use document variables to push comments in as well, but the problem is editing that value AFTER the Order has been added. In other words, I use MEL_ADD_ORDER, then I change the value of document.xyz. Without removing the order and re-adding, is there a way to accomplish this? I could certainly write logic: IF the order exists, remove it and replace it, but my Orders action button is tied to multiple dynamic listboxes so it is not hard-coded.
Not sure.
But looking at how MEL_Add_order function, it don't seem possible. ordersub[8] is a local variable don't exist outside of your function. But then again I am a rookie with MEL.