IGZ0037S   The flow of control in program program-name proceeded beyond the last line of the program.

Explanation

The program did not have a terminator (STOP, GOBACK, or EXIT), and control fell through the last instruction.

System action

The application was terminated.

Programmer response

Check the logic of the program. Sometimes this error occurs because of one of the following logic errors:
  • The last paragraph in the program was only supposed to receive control as the result of a PERFORM statement, but due to a logic error it was branched to by a GO TO statement.
  • The last paragraph in the program was executed as the result of a "fall-through" path, and there was no statement at the end of the paragraph to end the program.

Symbolic Feedback Code

IGZ015