CREATE LSRPOOL

Define an LSR pool in the local CICS® region.

CREATE LSRPOOL

Read syntax diagramSkip visual syntax diagramCREATE LSRPOOL( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE LSRPOOL attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)Data buffer attributesIndex buffer attributesLSRPOOLNUM(1)LSRPOOLNUM( 1-255)MAXKEYLENGTH( 0-255)SHARELIMIT(50)SHARELIMIT( 1-100)STRINGS( 1-255)
Data buffer attributes
Read syntax diagramSkip visual syntax diagramDATA512( 3-32767)DATA1K( 3-32767)DATA2K( 3-32767)DATA4K( 3-32767)HSDATA4K( 0-16777215)DATA8K( 3-32767)HSDATA8K( 0-16777215)DATA12K( 3-32767)HSDATA12K( 0-16777215)DATA16K( 3-32767)HSDATA16K( 0-16777215)DATA20K( 3-32767)HSDATA20K( 0-16777215)DATA24K( 3-32767)HSDATA24K( 0-16777215)DATA28K( 3-32767)HSDATA28K( 0-16777215)DATA32K( 3-32767)HSDATA32K( 0-16777215)
Index buffer attributes
Read syntax diagramSkip visual syntax diagramINDEX512( 3-32767)INDEX1K( 3-32767)INDEX2K( 3-32767)INDEX4K( 3-32767)HSINDEX4K( 0-16777215)INDEX8K( 3-32767)HSINDEX8K( 0-16777215)INDEX12K( 3-32767)HSINDEX12K( 0-16777215)INDEX16K( 3-32767)HSINDEX16K( 0-16777215)INDEX20K( 3-32767)HSINDEX20K( 0-16777215)INDEX24K( 3-32767)HSINDEX24K( 0-16777215)INDEX28K( 3-32767)HSINDEX28K( 0-16777215)INDEX32K( 3-32767)HSINDEX32K( 0-16777215)

Conditions: ILLOGIC, INVREQ, LENGERR, NOTAUTH

Note to COBOL programmers: In the syntax above, you must use ATTRIBUTES(data-area) instead of ATTRIBUTES(data-value).

Description

The CREATE LSRPOOL command installs an LSRPOOL definition with the attribute specified on the command and does not use a resource definition stored in the CSD. LSR pools must have unique LSRPOOLNUM values within a CICS region. If the local region already contains a definition with the same LSRPOOLNUM value, the new definition replaces the old one; if not, the new definition is added. Unlike most resource definitions, the name you specify in the LSRPOOL option does not determine replacement; instead the value in LSRPOOLNUM controls the action taken.

Note: When you replace the definition of a pool that is currently open, the new definition does not take effect until the next time the pool is built. The pool is not rebuilt until all of the files that are using it are closed and one is reopened subsequently.

A sync point is implicit in CREATE LSRPOOL processing, except when an exception condition is detected early in processing the command. Uncommitted changes to recoverable resources made up to that point in the task are committed if the CREATE executes successfully, and rolled back if not. See Creating resource definitions for other general rules governing CREATE commands.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the LSRPOOL that are being added. The list of attributes must be coded as a single character string using the syntax shown in LSRPOOL attributes. See The ATTRIBUTES option for general rules for specifying attributes, and LSRPOOL definition attributes for details about specific attributes.
Note: You can assign default values for all attributes of an LSRPOOL definition by specifying an ATTRLEN value of 0. You still need to specify the ATTRIBUTES option, however, even though its value is not used.
ATTRLEN(data-value)
Specifies the length in bytes of the character string supplied in the ATTRIBUTES option, as a halfword binary value. The length can be from 0 to 32767.
LOGMESSAGE(cvda)
Specifies whether CICS logs the attributes used for the resource that is created. CVDA values are as follows:
LOG
The resource attributes are logged to the CSDL transient data queue.
NOLOG
The resource attributes are not logged.
LSRPOOL(data-value)
Specifies the 8-character name of the LSRPOOL definition to be added to the CICS region.

Conditions

ILLOGIC
RESP2 values:
2
The command cannot be executed because an earlier CONNECTION or TERMINAL pool definition has not yet been completed.
INVREQ
RESP2 values:
n
There is a syntax error in the ATTRIBUTES string, or an error occurred during either the discard or resource definition phase of the processing. See RESP2 values for EXEC CICS CREATE and EXEC CICS CSD commands for information about RESP2 values.
7
The LOGMESSAGE cvda value is not valid.
200
The command was executed in a program defined with an EXECUTIONSET value of DPLSUBSET or a program invoked from a remote system by a distributed program link without the SYNCONRETURN option.
LENGERR
RESP2 values:
1
The length you have specified in ATTRLEN is negative.
NOTAUTH
RESP2 values:
100
The user associated with the issuing task is not authorized to use this command.