| OK .. here you go ...
mrtie:3� mccmsl
MCC Management Specification Language Translation Tool
Version T1.1.0
MSL File:
mrtie:3� dap
DECmcc Dictionary Administrator Program Version T1.1.0
DAP>
mrtie:3� mcc/mod=mcc$ptb
Using default file names: MCC$PTB_COMMAND.LOG
MCC$SYSTEM:MCC$PTB_PARSER.DAT
MCC Parse Table Builder
Component Version: T1.1.0
And here's a cut down MSL file which demonstrates the problem:
MANAGEMENT SPECIFICATION NCL$MTA;
VERSION = X1.0.0;
SYMBOL-PREFIX = NCL_;
TYPE
DSIEF = 4 (
Message Originator = 0,
Message DL Expansion History = 1,
Message Recipient Information = 2,
Message Recipient Redirection History = 3,
Message Flags = 4,
Message External Trace Information = 5,
Message Internal Trace Information = 6,
Message Priority = 7,
Message Content Type = 8,
Message EITs = 9,
Message Size = 10,
Report Subject Identifier = 11,
Reported Originator and DL Expansion History = 12,
Report Destination Name = 13,
Reported Actual and Intended Recipient = 14,
Report External Trace Information = 15,
Report Internal Trace Information = 16,
Report Size = 17,
Agent = 18 );
TYPE
DeliverySubmissionImportExportFilter = 5 SET OF DSIEF;
SUBORDINATE ENTITY MTA = 50 :
SUPERIOR = ( NODE ),
IDENTIFIER = ( ),
DYNAMIC = TRUE,
SYMBOL = CLASS_MTA,
CHARACTERISTIC ATTRIBUTES
ATTRIBUTE Accounting Delivery Filter = 25 : DeliverySubmissionImportExportFilter
(* This is the filter which determines what accounting data gets logged
at delivery time. *)
ACCESS = SETTABLE,
DISPLAY = TRUE,
DEFAULT = "( Message Originator,
Message Recipient Information,
Message Priority,
Message Size,
Reported Originator and DL Expansion History,
Report Destination Name,
Reported Actual and Intended Recipient,
Report Size,
Agent )",
SYMBOL = MTA_ACC_DELIVERY_FILTER,
CATEGORIES = ( CONFIGURATION, ACCOUNTING )
END ATTRIBUTE Accounting Delivery Filter;
END ATTRIBUTES; (* CHARACTERISTIC *)
END ENTITY MTA;
END SPECIFICATION NCL$MTA;
If you comment out the DEFAULT statement then the above compiles successfully.
As it is, is doesn't:
mrtie:3� mccmsl
MCC Management Specification Language Translation Tool
Version T1.1.0
MSL File: t
Languages:cc
Scan of MS file has completed with errors, check error file.
Text: ATTRIBUTE Accounting Delivery Filter = 25 : DeliverySubmissionImportExpor
tFilter was not parsed by the MSL Translator.
Text: ACCESS = SETTABLE , was not parsed by the MSL Translator.
Text: DISPLAY = TRUE , was not parsed by the MSL Translator.
Text: DEFAULT = " ( Message Originator , was not parsed by the MSL Translator.
Text: Message Recipient Information , was not parsed by the MSL Translator.
Text: Message Priority , was not parsed by the MSL Translator.
Text: Message Size , was not parsed by the MSL Translator.
Text: Reported Originator and DL Expansion History , was not parsed by the MSL
Translator.
Text: Report Destination Name , was not parsed by the MSL Translator.
Text: Reported Actual and Intended Recipient , was not parsed by the MSL Trans
lator.
Text: Report Size , was not parsed by the MSL Translator.
Text: Agent ) " , was not parsed by the MSL Translator.
Text: SYMBOL = MTA_ACC_DELIVERY_FILTER , was not parsed by the MSL Translator.
Text: CATEGORIES = ( CONFIGURATION , ACCOUNTING ) was not parsed by the MSL Tr
anslator.
Text: END ATTRIBUTE Accounting Delivery Filter was not parsed by the MSL Trans
lator.
mrtie:3� ty t.err
Errors in MS file(s):
Line #: Text
-----------------------------------------
13: ATTRIBUTE Accounting Delivery Filter = 25 : DeliverySubmissionImportExportFi
lter
15: ACCESS = SETTABLE ,
16: DISPLAY = TRUE ,
17: DEFAULT = " ( Message Originator ,
18: Message Recipient Information ,
19: Message Priority ,
20: Message Size ,
21: Reported Originator and DL Expansion History ,
22: Report Destination Name ,
23: Reported Actual and Intended Recipient ,
24: Report Size ,
25: Agent ) " ,
26: SYMBOL = MTA_ACC_DELIVERY_FILTER ,
27: CATEGORIES = ( CONFIGURATION , ACCOUNTING )
28: END ATTRIBUTE Accounting Delivery Filter
mrtie:3�
Hope this helps find the problem,
Chris
|