M204.1645

From m204wiki
Jump to navigation Jump to search

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