AMT Help Files

RELEASE

COBOL JAVA
RELEASE writeSequentialFile

Syntax

writeSquentialFile ( <file>, <buffer>[, <from>] )

Parameters

<file>
The file id of the file to be written to.
<buffer>
The file buffer, the content that will be written to the file.
<from> (Optional)
Data from this variable will be copied into the file buffer.

Examples

COBOL Java
RELEASE sortdata.
writeSequentialFile(sortfile, fd_Sortdata);
RELEASE sortdata FROM recorddata.
writeSequentialFile(sortfile, fd_Sortdata, locDef.recorddata.getValue());

Contents