Kbase P24348: How to use the put unformatted language statement?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/15/2008 |
|
Status: Verified
GOAL:
How to use the put unformatted language statement?
GOAL:
How to put a string to file without any format?
FACT(s) (Environment):
Progress 9.x
OpenEdge 10.x
FIX:
DEFINE STREAM s1.
OUTPUT STREAM s1 TO fileName.dat.
FOR EACH CUSTOMER:
PUT UNFORMATTED STREAM s1 NAME.
END.
OUTPUT STREAM s1 CLOSE.