[stackoverflow] [progress Openedge Abl] What Is The Code To Create Unposted (upost-order)...

Status
Not open for further replies.
F

Faraz Umar

Guest
What is the code to create unposted (upost-order) orders in progress 4gl language?

This is the code to find upost orders.

FIND upost-order WHERE
upost-order.company = company AND
upost-order.order-number = order.order-number
NO-ERROR.

IF NOT AVAILABLE upost-order THEN
FIND upost-order WHERE
upost-order.company = company AND
upost-order.order-number =
STRING(INTEGER(SUBSTRING(order.order-number,3,6)))
NO-LOCK NO-ERROR.

Continue reading...
 
Status
Not open for further replies.
Top