OSI/FTAM Programming Reference Manual

DDL Definitions
HP NonStop OSI/FTAM Programming Reference Manual528611-001
A-32
ZFTM Structures
ZFTM-DDL-LEGALQUALIF-ATTR
defines the legal status of the file.
ZID indicates whether there is a ZLEGALQUALIF attribute value for this file. The ZID
field of this structure is not used in initiator requests and indications. ZID has two
possible values: ZFTM-VAL-ATTR-NOVALUE and ZFTM-VAL-ATTRISPRESENT.
ZLEGALQUALIF contains a text string giving information about the legal status of the
file.
ZFTM-DDL-PERMITTED-ACTIONS
is a file attribute that indicates the file actions that will be allowed for a file. Once a
file has been created, permitted actions cannot be changed.
ZREAD specifies access that permits you to read the file.
ZINSERT specifies access that permits you to insert data into the file.
ZREPLACE specifies access that permits you to replace information in the file.
ZEXTEND specifies access that permits you to extend the file.
ZERASE specifies access that permits you to erase some or all the contents of the file.
ZREADATTR specifies access that permits you to read the file attributes.
ZCHNGATTR specifies access that permits you to change the file attributes.
ZDELETEFILE specifies access that permits you to delete the file.
ZTRAVERSAL specifies sequential access that permits you to traverse the file from the
first FADU to the last FADU.
ZREVERSETRAVERSAL specifies sequential access that permits you to traverse the
file from the last FADU to the first FADU.
DEFINITION ZFTM-DDL-LEGALQUALIF-ATTR.
02 ZID TYPE ZAPS-DDL-ENUM1.
02 ZLEGALQUALIF TYPE ZAPS-DDL-CHAR128.
END
DEFINITION ZFTM-DDL-PERMITTED-ACTIONS.
02 ZREAD TYPE ZAPS-DDL-BOOLEAN.
02 ZINSERT TYPE ZAPS-DDL-BOOLEAN.
02 ZREPLACE TYPE ZAPS-DDL-BOOLEAN.
02 ZEXTEND TYPE ZAPS-DDL-BOOLEAN.
02 ZERASE TYPE ZAPS-DDL-BOOLEAN.
02 ZREADATTR TYPE ZAPS-DDL-BOOLEAN.
02 ZCHNGATTR TYPE ZAPS-DDL-BOOLEAN.
02 ZDELETEFILE TYPE ZAPS-DDL-BOOLEAN.
02 ZTRAVERSAL TYPE ZAPS-DDL-BOOLEAN.
02 ZREVERSETRAVERSAL TYPE ZAPS-DDL-BOOLEAN.
02 ZRANDOM TYPE ZAPS-DDL-BOOLEAN.
END