CAll "CBL_FLUSH_FILE" 
     USING HANDLE
     RETURNING STATUS-CODE 
               	 | HANDLE (pic x(4) comp-x) | This is the handle returned from CBL_OPEN_FILE or CBL_CREATE_FILE. Any buffers that have not been flushed to disk will be flushed. | 
This routine is used for flushing files and returns 0 on success and non-zero if an error occurred. The error is a special encoding of the digit 9 with the ANSI-74 error code, or the runtime system error number if no ANSI-74 error code pertains to the error. If RETURN-CODE is non-zero after calling this routine, you must process it as a file status, for example:
01  file-status-group.
    03  file-status     pic xx comp-x. 
    03  redefines file-status. 
        05  fs-byte-1  pic x. 
        05  fs-byte-2  pic x comp-x.
. . . 
call "CBL_FLUSH_FILE" using parameters 
if return-code not = 0 
    move return-code to file-status 
. . . 
               		At this point fs-byte-1 contains 9 and fs-byte-2 contains the ANSI-74 error code, or a runtime system error number.