[Stackoverflow] [Progress OpenEdge ABL] Where srt file will be exported in Windows OS?

Status
Not open for further replies.
B

Bharat

Guest
I use below non indexed field query in order to see srt file in my system. But I am not sure this file is generating. I am using 10.2B version.

Code:
DEFINE QUERY qcust FOR customer   SCROLLING.
OPEN QUERY qcust FOR EACH customer WHERE comments CONTAINS "customer" 
                                   OR comments CONTAINS "C.O.D.".

 REPEAT:
  GET NEXT qcust.
    IF NOT AVAILABLE customer THEN LEAVE.
      DISPLAY customer EXCEPT comments WITH FRAME q-frame 13000 DOWN.
 END.

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