Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Version: Available or changed with runtime version 1.0.
Serializes and saves the current node to the given variable.
Syntax
[Ok := ] XmlDocument.WriteTo(OutStream: OutStream)
Parameters
XmlDocument
Type: XmlDocument
An instance of the XmlDocument data type.
OutStream
Type: OutStream
The OutStream to which you want to save the serialized representation of the node.
Return Value
[Optional] Ok
Type: Boolean
true if the operation was successful; otherwise false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.
Example
The following example illustrates how to create a Stream from a Blob and write to a Stream from an XML document.
pageextension 50100 CustomerListExt extends "Customer List"
{
trigger OnOpenPage();
var
xmlDoc: XmlDocument;
xmlDec: XmlDeclaration;
xmlElem: XmlElement;
xmlElem2: XmlElement;
TempBlob: Record TempBlob Temporary;
outStr: OutStream;
inStr: InStream;
TempFile: File;
fileName: Text;
begin
xmlDoc := xmlDocument.Create();
xmlDec := xmlDeclaration.Create('1.0', 'UTF-8', '');
xmlDoc.SetDeclaration(xmlDec);
xmlElem := xmlElement.Create('root');
xmlElem.SetAttribute('release', '2.1');
xmlElem2 := XmlElement.Create('FirstName');
xmlElem2.Add(xmlText.Create('Max'));
xmlElem.Add(xmlElem2);
xmlDoc.Add(xmlElem);
// Create an outStream from the Blob, notice the encoding.
TempBlob.CreateOutStream(outStr, TextEncoding::UTF8);
// Write the contents of the doc to the stream
xmlDoc.WriteTo(outStr);
// From the same Blob, that now contains the XML document, create an inStr
TempBlob.CreateInStream(inStr, TextEncoding::UTF8);
// Save the data of the InStream as a file.
File.DownloadFromStream(inStr, 'Export', '', '', fileName);
end;
}
Related information
XmlDocument Data Type
Get Started with AL
Developing Extensions