M204.1161

From m204wiki
Revision as of 22:27, 5 March 2018 by JAL (talk | contribs) (add <var>'s)
Jump to navigation Jump to search

M204.1161  Include level too deep for DISPLAY

INCLUDE commands can be nested to only five levels. The DISPLAY PROCEDURE command uses one of these levels, and therefore it cannot be issued by a procedure at the fifth nesting level.

Response: Combine procedures that can be at the same level, place INCLUDE commands for consecutively executed procedures in the same procedure, or move the DISPLAY command to a different procedure.

Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter

Back to list of messages