


Some COBOL compilers do not abort when a file error occurs and there is no Declarative to handle it. If you desire this behavior, set the configuration entry ERRORS-OK to "1".
RM/COBOL version 2 automatically closes all files except print files when a program executes an EXIT PROGRAM statement. By default, ACUCOBOL-GT does not do this, because it is a violation of the ANSI standard. If the configuration variable CLOSE-ON-EXIT is set to 1, then this behavior is emulated by runcbl. You can also set this variable to 2 to cause all files (including print files) to be closed when a program exits. Setting the variable to zero resets this option.
RM/COBOL version 2 also automatically causes a page eject when a print file is closed unless the WITH NO REWIND option is used on the CLOSE statement. The configuration variable PAGE-EJECT-ON-CLOSE can be set to "1" to cause this behavior. Setting it to "0" causes the normal behavior of not ejecting a page.
You can improve the performance of indexed files that are opened WITH LOCK by setting the configuration variable MASS-UPDATE to 1. This causes ACUCOBOL-GT to treat these files as if they were opened with the MASS-UPDATE phrase specified. For details on this phrase, see the section 6.1.6.2, "Mass update" 6.1.6.2 Mass update in this User's Guide.
More: