CREATE MQCONN

Define an MQCONN resource in the local CICS® region.

CREATE MQCONN

Read syntax diagramSkip visual syntax diagramCREATE MQCONN( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE MQCONN attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)MQNAME( char4)INITQNAME( char48)RESYNCMEMBER(YES)RESYNCMEMBER(NO)RESYNCMEMBER(GROUPRESYNC)

Conditions: 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 MQCONN command installs an MQCONN resource definition with the attributes specified on the command. It does not use a resource definition stored in the CSD. If an MQCONN resource definition is already in the local CICS region, the new definition replaces the old one; if not, the new definition is added.

An MQCONN resource definition can be installed only when CICS is not connected to WebSphere® MQ.

A sync point is implicit in CREATE MQCONN 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 command is successful, and rolled back if not.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the MQCONN resource definition being added. You must code the list of attributes as a single character string by using the syntax shown in the syntax diagram.
See The ATTRIBUTES option for general rules for specifying attributes.
See MQCONN attributes for details about specific attributes. You can assign default values for all attributes of an MQCONN definition by specifying an ATTRLEN value of 0. You must still 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 0 - 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.
MQCONN(data-value)
Specifies the 8-character name of the MQCONN resource definition to be added to the CICS region.

Conditions

INVREQ
RESP2 values:
n
The ATTRIBUTES string contains a syntax error, 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 run in a program defined with an EXECUTIONSET value of DPLSUBSET or a program called from a remote system by a distributed program link without the SYNCONRETURN option.
LENGERR
RESP2 values:
1
The length that 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.