CREATE DB2ENTRY

Define a DB2ENTRY in the local system.

CREATE DB2ENTRY

Read syntax diagramSkip visual syntax diagramCREATE DB2ENTRY( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE DB2ENTRY attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)TRANSID( char4)ACCOUNTREC(NONE)ACCOUNTREC(UOW)ACCOUNTREC(TASK)ACCOUNTREC(TXID)AUTHID( char8)AUTHTYPE(USERID)AUTHTYPE(GROUP)AUTHTYPE(SIGNID)AUTHTYPE(TERM)AUTHTYPE(TXID)AUTHTYPE(OPID)DROLLBACK(YES)DROLLBACK(NO)PLAN( char8)PLANEXITNAME(DSNCUEXT)PLANEXITNAME( char8)PRIORITY(HIGH)PRIORITY(EQUAL)PRIORITY(LOW)PROTECTNUM( 0)PROTECTNUM( 0-2000)THREADLIMIT( 0)THREADLIMIT( 0-2000)THREADWAIT(POOL)THREADWAIT(YES)THREADWAIT(NO)

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 DB2ENTRY command installs a DB2ENTRY definition with the attribute specified on the command. It does not use a resource definition stored in the CSD. If there is already a DB2ENTRY with the name you specify in the local CICS region, the command fails unless the existing DB2ENTRY is disabled, in which case the new definition replaces the old one. If no DB2ENTRY with the name specified exists, the new definition is added.

A syncpoint is implicit in CREATE DB2ENTRY 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.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the DB2ENTRY being added. The list of attributes must be coded as a single character string using the syntax shown in DB2ENTRY attributes. See The ATTRIBUTES option for general rules for specifying attributes, and DB2ENTRY resources for details about specific attributes.
Note: You can assign default values for all attributes of a DB2ENTRY 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.
DB2ENTRY(data-value)
Specifies the 8-character name of the DB2ENTRY definition to be added to the CICS region.
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.

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 on 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.
101
The user associated with the issuing task is not authorized to create a DB2ENTRY definition with this name.
102
The user associated with the issuing task is not an authorized user specified in the AUTHID parameter.
103
The user associated with the issuing task is not authorized to create this DB2ENTRY with an AUTHTYPE parameter.