Data Definition Language (DDL) Reference Manual
Definition Attributes
Data Definition Language (DDL) Reference Manual—529431-004
6-48
TACL
If the referring object is defined with a TACL clause, the referring TACL data type
overrides any referenced TACL data type. In Example 6-42 on page 6-48, the TACL
clause in the DEFINITION statement overrides the TACL clause in the definition of
TERM-ID.
Example 6-41. Inheriting TACL Clause From Referenced Definition
DDL Input
?TACL
DEF fname-2 TYPE fname-def.
DDL Output (TACL Code)
?Section FNAME^2 Struct
Begin
FNAME FNAME^2;
End;
Example 6-42. Overriding Inheriting TACL Clause
DDL Input
?TACL
DEF trans-id TYPE term-id TACL TRANSID.
DDL Output (TACL Code)
?Section TRANS^ID Struct
Begin
TRANSID TRANS^ID;
End;