M204.1161

From m204wiki
Revision as of 16:57, 30 May 2018 by Dme (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

M204.1161  Include level too deep for DISPLAY

INCLUDE commands can be nested to the number of levels specified by the MAXINCL parameter (the default is 5). The DISPLAY PROCEDURE command uses one of these levels, and therefore it cannot be issued by a procedure already at the maximum nesting level.

Response: Combine procedures that can be at the same level, place INCLUDE commands for consecutively executed procedures in the same procedure, increase the value of the MAXINCL parameter, 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