OSI/FTAM Programming Reference Manual

DDL Definitions
HP NonStop OSI/FTAM Programming Reference Manual528611-001
A-17
ZFTM Structures
ZFILEAVLBLTY requests the file availability status.
ZFILESIZE requests the file size.
ZFUTUREFILESIZE requests the future file size.
ZACCESSCNTRL requests the access control specifications.
ZLEGALQUALIF requests the legal status of the file.
ZPRIVATEUSE requests the private use attribute. This attribute is not used.
ZFTM-DDL-CHANGE-ATTR
specifies the attributes you wish to change, along with their new values, when you
issue the FTM_CHANGE_ATTRIB_REQ_ procedure call. This structure is also
used in the FTM_CHANGE_ATTRIB_CNF_ procedure to return the new values for
the file attributes that were changed by the remote responder. For a more detailed
description of file attributes, refer to the OSI/FTAM Programming Guide.
ZATTRSAREPRESENT indicates whether attributes are present.
ZATTRSAREPRESENT must be set to ZAPS-VAL-PRESENT when issuing an
FTM_CHANGE_ATTRIB_REQ_ call. ZATTRSAREPRESENT is used in the
FTM_CHANGE_ATTRIB_CNF_ call to indicate whether the remote responder returned
any of the changed parameters.
ZFILENAMEISPRESENT indicates whether the file name is to be changed.
ZFILENAME contains the new file name. If the responder returns a value for the
filename attribute that is greater than 128 characters, the initiator passes only the first
128 characters to the application.
ZSTORAGEACCOUNTISPRESENT indicates whether the identity of the storage
account value is to be changed.
DEFINITION ZFTM-DDL-CHANGE-ATTR.
02 ZATTRSAREPRESENT TYPE ZAPS-DDL-ISPRESENT.
* Kernel group
02 ZFILENAMEISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZFILENAME TYPE ZAPS-DDL-CHAR128.
* Storage group
02 ZSTORAGEACCOUNTISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZSTORAGEACCOUNT TYPE ZFTM-DDL-ACCOUNT-ATTR.
02 ZFILEAVLBLTYATTRISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZFILEAVLBLTYATTR TYPE ZFTM-DDL-FILEAVLBLTY-ATTR.
02 ZFUTUREFILESIZEISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZFUTUREFILESIZE TYPE ZFTM-DDL-FILESIZE-ATTR.
* Security group
02 ZACCESSCNTRLISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZACCESSCNTRL TYPE ZFTM-DDL-ACCESS-CNTRL-CHNG.
02 ZLEGALQUALIFISPRESENT TYPE ZAPS-DDL-ISPRESENT.
02 ZLEGALQUALIFICATION TYPE ZFTM-DDL-LEGALQUALIF-ATTR.
END