IGYCB7308-U Stack space exceeded.

Explanation

The program has too many data items that the compiler must place on the stack. This includes all data items in the LOCAL-STORAGE SECTION, as well as compiler-created temporaries for things like passing data items BY CONTENT.

System action

The compilation is terminated with a failure and RC=16.

User response

Refactor the program to place fewer items in LOCAL-STORAGE and/or pass fewer or smaller data items when passing BY CONTENT.