View previous topic :: View next topic |
Author |
Message |
smartsi Beginner
Joined: 17 Jan 2004 Posts: 1 Topics: 1
|
Posted: Sat Jan 17, 2004 4:32 am Post subject: To Increase TSQ length in CICS |
|
|
I am using TSQ in a CICS program. As a new requirement the length of the TSQ has to be changed. In the program I am not assigning any value for the length of the TSQ, but the Queue is assigned a value of 4096. How can I change the size of the TSQ? The size of the queue has to be increased to 7000. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Mon Jan 19, 2004 9:07 am Post subject: |
|
|
If you are currently not specifying a length, this probably means the CICS translator is generating it for you. E.g. for COBOL II or later, it will use the expression 'LENGTH OF variable-name', which is then understood by the compiler and the correct length substituted. If you change the length of the variable you are writing to the desired value, the compiler will automatically generate the new correct length value, without you having to explicitly specify LENGTH() on the WRITEQ TS. |
|
Back to top |
|
 |
|
|