Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Program -
...
01 WS-QUEUE-LEN PIC S9(4) COMP VALUE +32000.
...
DISPLAY 'WS-QUEUE-LEN = ' WS-QUEUE-LEN.
...
Results -
WS-QUEUE-LEN = 32000
# In OS/VS COBOL and C/370, all LENGTH options must be specified.
| When a CICS command offers the LENGTH option, it is generally expressed as
| a signed halfword binary value. This puts a theoretical upper limit of
| 32 763 bytes on LENGTH. In practice (depending on issues of
| recoverability, function shipping, and so on) the achievable upper limit
| varies from command to command, but is somewhat less than this theoretical
| maximum.
| Whatever the CICS command, to be on the safe side, do not let the LENGTH
| you code exceed 24KB.