OSI/FTAM Programming Reference Manual

DDL Definitions
HP NonStop OSI/FTAM Programming Reference Manual528611-001
A-12
ZFTM Structures
ZFTM Structures
The following subsection describes the FTAM structures that define reference
parameters for FTAM procedures. All FTAM structures begin with ZFTM.
ZFTM-DDL-ACCESS-CNTRL-ATTR
is the file attribute that defines the conditions under which access to the file is
allowed.
ZID indicates whether the ZACCESSCNTRL value is available. The ZID field of this
structure is not used in initiator requests and indications. The following values for this
field are possible:
ZFTM-VAL-ATTR-NOVALUE indicates that the application did not return a value for
the attribute.
ZFTM-VAL-ATTR-ISPRESENT indicates that an attribute value is present.
ZACCESSCNTRL contains the information that controls file access.
ZFTM-DDL-ACCESS-CNTRL-CHNG
indicates whether ZFTM-DDL-ACCESS-CNTRL-ELEM values are to be changed
(inserted, deleted, or both) and what the changed values are.
ZID indicates whether the application is to make an insertion or deletion of access
control information. ZID has two possible values: ZFTM-VAL-ATTR-NOVALUE in cases
in which no change is to be made, and ZFTM-VAL-ATTR-ISPRESENT in cases in
which insertion or deletion of access control information is expected.
ZINSERTISPRESENT indicates whether the application program is to insert
access-control information.
ZINSERTVALUES contains the access-control attribute values to be inserted.
ZDELETEISPRESENT indicates whether the application program is to delete
access-control information.
DEFINITION ZFTM-DDL-ACCESS-CNTRL-ATTR.
02 ZID TYPE ZAPS-DDL-ENUM1.
02 ZACCESSCNTRL TYPE ZFTM-DDL-ACCESS-CNTRL-ELEM.
END
The valid values for ZID are:
CONSTANT ZFTM-VAL-ATTR-NOVALUE VALUE 0.
CONSTANT ZFTM-VAL-ATTR-ISPRESENT VALUE 1.
DEFINITION ZFTM-DDL-ACCESS-CNTRL-CHNG.
02 ZID TYPE ZAPS-DDL-ENUM1.
02 ZINSERTISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZINSERTVALUES TYPE ZFTM-DDL-ACCESS-CNTRL-ELEM.
02 ZDELETEISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZDELETEVALUES TYPE ZFTM-DDL-ACCESS-CNTRL-ELEM.
END