| 
       OUTPUT  STREAM stream  STREAM-HANDLE handle  CLOSE
       | 
| 
       OUTPUT TO cust.dat.
        FOR EACH Customer NO-LOCK: DISPLAY Customer.CustNum Customer.Name Customer.Address Customer.Address2 Customer.City Customer.State Customer.Country SKIP(2) WITH 1 COLUMN SIDE-LABELS. END. OUTPUT CLOSE. DISPLAY "Finished". | 
 The default output destination is the destination that was active when the procedure began. The output destination is usually the terminal unless the current procedure was called by another procedure while a different destination was active.
The default output destination is the destination that was active when the procedure began. The output destination is usually the terminal unless the current procedure was called by another procedure while a different destination was active.
   A form feed (new page) is automatically output when a PAGED output stream is closed.
A form feed (new page) is automatically output when a PAGED output stream is closed.
   If the output destination is the Windows clipboard, this statement writes all buffered output data to the clipboard in CF-TEXT format and clears the buffer.
If the output destination is the Windows clipboard, this statement writes all buffered output data to the clipboard in CF-TEXT format and clears the buffer.
   For more information on directing output, see OpenEdge Development: Programming Interfaces.
For more information on directing output, see OpenEdge Development: Programming Interfaces.