[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: May OpenEdge classes set the error-status?

  • Thread starter Thread starter Tim Kuehn
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top