This documentation is archived and is not being maintained.
AxdBase.getSchema Method [AX 2012]
Gets the XSD of the Axd document.
public AifDocumentSchemaXml getSchema()
Run On
Server
The getSchema method is implemented on the AxdBase class, and should not be overridden by the document classes.
The following example shows how to get the schema of AxdSalesOrder.
AxdBase axdBase =
AxdBase::newClassId(classNum(AxdSalesOrder));
AifDocumentXml xsd;
xsd = axdBase.getSchema();