This is my first attempt at using Derived Fields in an IDO. I'm storing the Item number in my own table. Table alias is QITM (or qitm). I keep trying various permutations of this:
SELECT top 1 item.description from item WHERE item.item=QITM.Item
but no matter what I use, I keep getting syntax errors. I've looked at other Derived Fields like this one:
(select top 1 jobmatl.job from jobmatl where jobmatl.item = iloc.item and jobmatl.bflush_loc = iloc.loc)
so I think what I'm doing is right but I'm just not seeing why its failing.