cobol3.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Message 0232 (↑ Syntax Messages)
 Key                                       Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
  Message:      0232
 
  Text:         Edited PICTURE string is too large
 
  Explanation:  A PICTURE string which you have defined for an edited
                or numeric edited (one which presents numeric data items in
                a more readable form, for example, with leading zeros
                removed or with currency signs inserted) data item exceeds
                the maximum permitted for your COBOL system.
 
                Note that a string comprises 32 'slots', each containing
                16 characters. If no two consecutive characters in the
                string are the same, a new slot will be allocated to each
                character. For example:
 
                    X(32)B(480)
 
                will work, but:
 
                    XBXBXBXBXBXBXBXBXBXBXBXBXBXBXBXBX
 
                will fail.
 
  Resolution:   Alter the format of the string so that it contains no
                more than 32 groups of characters, each group holding up to
                16 identical, contiguous edit characters.
                                    -♦-