BEGIN-PROGRAM

Function

Begins the program section of an Production Reporting program.

Syntax

BEGIN-PROGRAM
END-PROGRAM

Description

After processing the commands in SETUP, Production Reporting starts program execution at BEGIN-PROGRAM. The PROGRAM section typically contains a list of DO commands, though other commands can be used. This is the only required section in an Production Reporting program.

Examples

begin-program
  do startup
  do main
  do finish
end-program

See Also

BEGIN-SETUP and END-PROGRAM