Hi,
We have a situation where we would like to show a different field for Ship To on a PO template (IDM) based on whether the Drop Ship field is marked or not. Right now, Ship To is the default, but would like to show Name instead if PO is a drop ship PO.
Where would I place the event to trigger this type of change so the pseudo code below would run? Before report print?
I suspect I would have both fields on the PO Template (Ship To and Name) with Name hidden by default.
Code:
If Drop Ship from Purchasing business class = true then
show Name; Hide Ship To
Else
show Ship To
End if.