M204.1645: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
m (add <var>s)
 
Line 1: Line 1:
{{Template:M204.1645 skeleton}}
{{Template:M204.1645 skeleton}}
<P>The item named in the AT clause of an IMAGE statement refers to either a subscripted item or an item whose location is unknown. An item's location is unknown if any preceding item or array has a length or number of
<P>
occurrences specified as UNKNOWN. </P>
The item named in the <var>At</var> clause of an <var>Image</var> statement refers to a subscripted item or to an item whose location is unknown. An item's location is unknown if any preceding item or array has a length or number of
<p><b>Response:</b> If the item named in the AT clause is subscripted, use the unscripted item or array name and if necessary insert a SKIP statement at the start of the new image to position the next item. If the item's location is unknown
occurrences specified as <code>Unknown</code>. </P>
and the new image name is not necessary, remove the new IMAGE statement and add the AT clause to the next item. If the new image is required, its AT clause must refer to an earlier item whose location is known. Subsequent unknown items must be
<p>
repeated with new names in the new image. </p>
<b>Response:</b> If the item named in the <var>At</var> clause is subscripted, use the unscripted item or array name, and if necessary insert a <var>Skip</var> statement at the start of the new image to position the next item. If the item's location is unknown
and the new image name is not necessary, remove the new <var>Image</var> statement and add the <var>At</var> clause to the next item. If the new image is required, its <var>At</var> clause must refer to an earlier item whose location is known. Subsequent unknown items must be repeated with new names in the new image.  
</p>
{{Template:M204.1645 footer}}
{{Template:M204.1645 footer}}
<!-- skeleton as it was in pdf/IMAGE CANNOT OVERLAY ITEM WITH SUBSCRIPT OR UNKNOWN LOCATION /-->
<!-- skeleton as it was in pdf/IMAGE CANNOT OVERLAY ITEM WITH SUBSCRIPT OR UNKNOWN LOCATION /-->

Latest revision as of 00:29, 9 March 2018

M204.1645  Image cannot overlay item with subscript or unknown location

The item named in the At clause of an Image statement refers to a subscripted item or to an item whose location is unknown. An item's location is unknown if any preceding item or array has a length or number of occurrences specified as Unknown.

Response: If the item named in the At clause is subscripted, use the unscripted item or array name, and if necessary insert a Skip statement at the start of the new image to position the next item. If the item's location is unknown and the new image name is not necessary, remove the new Image statement and add the At clause to the next item. If the new image is required, its At clause must refer to an earlier item whose location is known. Subsequent unknown items must be repeated with new names in the new image.

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
ECHODisplays the line that caused the error
COMPILECompilation error

Back to list of messages