M204.1167

From m204wiki
Jump to navigation Jump to search

M204.1167  ITBL full​,​ LITBL​=​value -- argument string ignored

Model 204 stores the arguments passed by the INCLUDE command —$Read and dummy string (??) responses — in the ITBL server table. If the storage allocated to ITBL is too small to accommodate the number and size of the arguments being passed, the argument string is ignored.

For example: In your include command INCLUDE HOTEL,GRAND,BUDAPEST, the procedure named HOTEL is being passed the arguments GRAND and BUDAPEST. However, the M204.1167 message indicates that the storage allocated to ITBL is too small to accommodate those arguments. Consequently, the argument string GRAND,BUDAPEST is ignored. You will be prompted to provide those arguments, one at a time, as required for the number of $Read statements and dummy string substitutions encountered in the procedure.

Response: Use the VIEW LITBL command to determine the current size of ITBL; then use the UTABLE LITBL command to increase its size. A 10-20% increase should be sufficient in most cases.

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