Description
Returns information about the matrix (the data and metadata) in XML format.
The schema of the XML is available using the GetSchema method.
Syntax
Parameters
Example
The following gets the XML from the matrix on the marketing document form (the example assumes the form is the active form).
| C# | Copy Code |
|---|
SAPbouiCOM.Matrix matrix; SAPbouiCOM.Form form = SBO_Application.Forms.ActiveForm; SAPbouiCOM.Item item = form.Items.Item("38"); matrix = (SAPbouiCOM.Matrix)item.Specific; String matrixXml = matrix.SerializeAsXML(SAPbouiCOM.BoMatrixXmlSelect.mxs_All);
|
|
See Also