T
Tim Kuehn
Guest
If standard field lookups could be added to the schema to change this: FIND OrderLine WHERE OrderLine.OrderNo = iOrderNo AND OrderLine.LineNo = iLineNo NO-LOCK NO-ERROR. IF NOT AVAIL OrderLine THEN DO: CREATE OrderLine. /* etc */ END. to this: FIND OrderLine FOR OrderLineLookup(iOrderNo, iLineNo) ADD-MISSING MISSING: /* optional "missing" block */ /* Extra BL code */ END MISSING. Where " OrderLineLookup" is the lookup field set specified in the schema for a given record lookup structure.
Continue reading...
Continue reading...