M204.1161: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add <var>'s)
No edit summary
 
Line 1: Line 1:
{{Template:M204.1161 skeleton}}
{{Template:M204.1161 skeleton}}
<P>
<P>
<var>INCLUDE</var> commands can be nested to only five levels. The <var>DISPLAY PROCEDURE</var> command uses one of these levels, and therefore it cannot be issued by a procedure at the fifth nesting level. </P>
<var>INCLUDE</var> commands can be nested to the number of levels specified by the <var>[[MAXINCL parameter|MAXINCL]]</var> parameter (the default is 5). The <var>DISPLAY PROCEDURE</var> command uses one of these levels, and therefore it cannot be issued by a procedure already at the maximum nesting level. </P>
<p>
<p>
<b>Response:</b> Combine procedures that can be at the same level, place <var>INCLUDE</var> commands for consecutively executed procedures in the same procedure, or move the <var>DISPLAY</var> command to a different procedure. </p>
<b>Response:</b> Combine procedures that can be at the same level, place <var>INCLUDE</var> commands for consecutively executed procedures in the same procedure, increase the value of the <var>MAXINCL</var> parameter, or move the <var>DISPLAY</var> command to a different procedure. </p>
{{Template:M204.1161 footer}}
{{Template:M204.1161 footer}}
<!-- skeleton as it was in pdf/INCLUDE LEVEL TOO DEEP FOR DISPLAY /-->
<!-- skeleton as it was in pdf/INCLUDE LEVEL TOO DEEP FOR DISPLAY /-->

Latest revision as of 16:57, 30 May 2018

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