CREATE FILE

Define a file in the local CICS® region.

Syntax

CREATE FILE

Read syntax diagramSkip visual syntax diagramCREATE FILE( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE FILE attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)ADD(NO)ADD(YES)BACKUPTYPE(STATIC)BACKUPTYPE(DYNAMIC)BROWSE(NO)BROWSE(YES)CFDTPOOL( char8)DATABUFFERS(2)DATABUFFERS( 2-32767)DELETE(NO)DELETE(YES)DISPOSITION(SHARE)DISPOSITION(OLD)DSNAME( char44)DSNSHARING(ALLREQS)DSNSHARING(MODIFYREQS)FWDRECOVLOG(NO)FWDRECOVLOG( 1-99)INDEXBUFFERS(1)INDEXBUFFERS( 1-32767)JNLADD(NONE)JNLADD(AFTER)JNLADD(ALL)JNLADD(BEFORE)JNLREAD(NONE)JNLREAD(ALL)JNLREAD(READONLY)JNLREAD(UPDATEONLY)JNLSYNCREAD(NO)JNLSYNCREAD(YES)JNLSYNCWRITE(YES)JNLSYNCWRITE(NO)JNLUPDATE(NO)JNLUPDATE(YES)JOURNAL(NO)JOURNAL( 1-99)KEYLENGTH( 1-255|1-16 for CFDT)LOAD(NO)LOAD(YES)LSRPOOLNUM(1)LSRPOOLNUM(NONE)LSRPOOLNUM( 1-255)MAXNUMRECS(NOLIMIT)MAXNUMRECS( 1-99999999)NSRGROUP( char8)OPENTIME(FIRSTREF)OPENTIME(STARTUP)READ(YES)READ(NO)READINTEG(UNCOMMITTED)READINTEG(CONSISTENT)READINTEG(REPEATABLE)RECORDFORMAT(V)RECORDFORMAT(F)RECORDSIZE( 1-32767)RECOVERY(NONE)RECOVERY(ALL)RECOVERY(BACKOUTONLY)REMOTESYSTEM( char4)REMOTENAME( char8)RLSACCESS(NO)RLSACCESS(YES)STATUS(ENABLED)STATUS(DISABLED)STATUS(UNENABLED)STRINGS(1)STRINGS( 1-255)TABLE(NO)TABLE(CF)TABLE(CICS)TABLE(USER)TABLENAME( char8)UPDATE(NO)UPDATE(YES)UPDATEMODEL(LOCKING)UPDATEMODEL(CONTENTION)

Conditions: ILLOGIC, INVREQ, LENGERR, NOTAUTH

NOHANDLE, RESP, and RESP2 are common options that can be added to all EXEC CICS commands to process error conditions. They are not explicitly included in the command syntax diagram and option descriptions. For information about these common options and EXEC CICS command syntax, see EXEC CICS command format and programming considerations.

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

Description

The CREATE FILE command installs a FILE definition with the attribute specified on the command. It does not use a resource definition stored in the CSD. If there is already a file with the name you specify in the local CICS region, the new definition replaces the old one; if not, the new definition is added.

A sync point is implicit in CREATE FILE 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 Using EXEC CICS CREATE commands to define resources for other general rules governing CREATE commands.

The CREATE commands are not audited because their actions are recorded by other messages.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the file that is added. The list of attributes must be coded as a single character string using the syntax shown. See The ATTRIBUTES option for general rules for specifying attributes, and File attributes for details about specific attributes.
Note: You can assign default values for all attributes of a FILE definition by specifying an ATTRLEN value of 0. You still must 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.
FILE(data-value)
Specifies the 8-character name of the FILE 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 CREATE and 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.
101
The user associated with the issuing task is not authorized to create a FILE definition with this name.