I added three custom rating enums (VendorRating, TimeRating, QualityRating) on the PurchEditLines(PurchParmTable datasource)
form using a base enum ReceiveRating
(values 1–5). Users select these ratings before posting a product receipt.
I want to save these values to the VendPackingSlipJour
like after the user generated the receipt and after posting, source is VendPackingSlipJour Table
in the VendPackingSlipJournal Form
. I tried select for update matching with purchid on both datasource in the OK
button handler of PurchEditLines
, but it fails—no record found, possibly because VendPackingSlipJour
isn't created yet.
How can I achieve this?