I am working on building a UDT which will have data in it such as part numbers. Can I link my UDT to a standard SAP table?
My entire table I need is -
ItemCode (OITM), BinCode (OBIN), SpecialQty (int)
We have a special need that is unique to every ItemCode/BinCode combination, so a UDF on either table won't work. We need a linking table. (A UDF on OIBQ would probably be ideal, but it doesn't seem possible.)
I'm assuming I need to set up a UDT for this situation. It's important that the values being entered validate against the real data. It would be preferable if I could select the items from a list when entering, as well.
Is this possible?