D
Dileep Dasa
Guest
It is little unclear what "progress data" mean. I assume you are trying to move data from Progress database table to a XML file. For this, you can use WRITE-XML() method. Please see documentation for more information on WRITE-XML(). Here is a quick example: DEF TEMP-TABLE stt LIKE customer. FOR EACH customer: CREATE stt. BUFFER-COPY customer TO stt. END. TEMP-TABLE stt:WRITE-XML("file", "custdata.xml", TRUE, ?, ?, FALSE, FALSE).
Continue reading...
Continue reading...