Define a TRANSACTION in the local CICS region.
CREATE TRANSACTION >>-CREATE TRANSACTION(data-value)--ATTRIBUTES(data-value)-------> >--ATTRLEN(data-value)--LOGMESSAGE(cvda)----------------------->< CREATE TRANSACTION attribute values: .-ACTION(BACKOUT)-. |--+-----------------+--+--------------+--+---------------+-----> '-ACTION(COMMIT)--' '-ALIAS(char4)-' '-BREXIT(char8)-' .-CMDSEC(NO)--. .-CONFDATA(NO)--. >--+-------------+--+---------------+---------------------------> '-CMDSEC(YES)-' '-CONFDATA(YES)-' .-DTIMOUT(NO)-----. >--+---------------------+--+-----------------+-----------------> '-DESCRIPTION(char58)-' '-DTIMOUT(1-6800)-' .-DUMP(YES)-. .-DYNAMIC(NO)--. .-INDOUBT(BACKOUT)-. >--+-----------+--+--------------+--+------------------+--------> '-DUMP(NO)--' '-DYNAMIC(YES)-' +-INDOUBT(COMMIT)--+ '-INDOUBT(WAIT)----' .-ISOLATE(YES)-. .-LOCALQ(NO)--. >--+--------------+--+-------------+----------------------------> '-ISOLATE(NO)--' '-LOCALQ(YES)-' .-OTSTIMEOUT(NO)-------. >--+----------------------+--+---------------------+------------> '-OTSTIMEOUT(1-240000)-' +-PARTITIONSET(char8)-+ +-PARTITIONSET(KEEP)--+ '-PARTITIONSET(OWN)---' .-PRIORITY(1)-----. .-PROFILE(DFHCICST)-. >--+-----------------+--+-------------------+-------------------> '-PRIORITY(0-255)-' '-PROFILE(char8)----' >--+-PROGRAM(char8)----------------------------+----------------> '-REMOTESYSTEM(char4)-+-------------------+-' '-REMOTENAME(char8)-' .-RESSEC(NO)--. .-RESTART(NO)--. >--+-------------+--+--------------+----------------------------> '-RESSEC(YES)-' '-RESTART(YES)-' .-RUNAWAY(SYSTEM)------. .-SHUTDOWN(DISABLED)-. >--+----------------------+--+--------------------+-------------> +-RUNAWAY(0)-----------+ '-SHUTDOWN(ENABLED)--' '-RUNAWAY(500-2700000)-' .-SPURGE(NO)--. .-STATUS(ENABLED)--. >--+-------------+--+------------------+------------------------> '-SPURGE(YES)-' '-STATUS(DISABLED)-' .-STORAGECLEAR(NO)--. .-TASKDATAKEY(USER)-. >--+-------------------+--+-------------------+-----------------> '-STORAGECLEAR(YES)-' '-TASKDATAKEY(CICS)-' .-TASKDATALOC(BELOW)-. >--+--------------------+--+-----------------+------------------> '-TASKDATALOC(ANY)---' +-TASKREQ(LPA)----+ +-TASKREQ(MSRE)---+ +-TASKREQ(OPID)---+ +-TASKREQ(PA1-3)--+ '-TASKREQ(PF1-24)-' .-TPURGE(NO)--. .-TRACE(YES)-. >--+-----------------+--+-------------+--+------------+---------> +-TPNAME(char64)--+ '-TPURGE(YES)-' '-TRACE(NO)--' '-XTPNAME(hex128)-' .-TRANCLASS(DFHTCL00)-. .-TRPROF(DFHCICSS)-. >--+---------------------+--+------------------+----------------> '-TRANCLASS(char8)----' '-TRPROF(char8)----' .-TWASIZE(0)-------. .-WAIT(YES)-. >--+------------------+--+-----------+--------------------------> '-TWASIZE(0-32767)-' '-WAIT(NO)--' .-WAITTIME(0,0,0)----------. >--+--------------------------+--+---------------+--------------| '-WAITTIME(0-99,0-23,0-59)-' '-XTRANID(hex8)-'
Conditions: ILLOGIC, INVREQ, LENGERR, NOTAUTH
The CREATE TRANSACTION command installs a TRANSACTION definition with the attribute specified on the command. It does not use a resource definition stored in the CSD. If there is no transaction with the name you specify in the local CICS region, the new definition is added. If there is, the new definition replaces the old one. However, it does not apply to tasks already in flight, which continue to use the definition under which they were initiated.
A syncpoint is implicit in CREATE TRANSACTION 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.