LoadFromTempBlob Procedure
Loads the XML from a blob.
Overloads
Name | Description |
---|---|
LoadFromTempBlob(Codeunit "QWETB Temp Blob"; Text): Integer | Loads the XML from a blob. |
LoadFromTempBlob(Codeunit "Temp Blob"; Text): Integer | Loads the XML from a blob. |
LoadFromTempBlob(Record "QWETB tTempBlob" temporary; Text): Integer | Loads the XML from a temp blob table. |
LoadFromTempBlob(Codeunit "QWETB Temp Blob"; Text) Procedure
Loads the XML from a blob.
Signature
LoadFromTempBlob(TempBlob: Codeunit "QWETB Temp Blob"; XPath: Text) Level: Integer
Parameters
TempBlob
Codeunit "QWETB Temp Blob"
The TempBlob codeunit containing the XML Data.
XPath
Text
The XPath that should be loaded when the reader is loaded.
Returns
Integer
A unique number identifying the XML nodes found with the given XPath. If no nodes could be found that matched the provided XPath, a zero (0) will be returned.
LoadFromTempBlob(Codeunit "Temp Blob"; Text) Procedure
Loads the XML from a blob.
Signature
LoadFromTempBlob(var TempBlob: Codeunit "Temp Blob"; XPath: Text) Level: Integer
Parameters
var TempBlob
Codeunit "Temp Blob"
The TempBlob codeunit containing the XML Data.
XPath
Text
The XPath that should be loaded when the reader is loaded.
Returns
Integer
A unique number identifying the XML nodes found with the given XPath. If no nodes could be found that matched the provided XPath, a zero (0) will be returned.
LoadFromTempBlob(Record "QWETB tTempBlob" temporary; Text) Procedure
Loads the XML from a temp blob table.
Deprecated
This procedure is deprecated and should not be used.
Reason: Use the overload that takes Codeunit "QWETB Temp Blob" instead. It offers better performance.
Deprecated since: 27.0
Signature
[Obsolete('Use the overload that takes Codeunit "QWETB Temp Blob" instead. It offers better performance.', '27.0')]
LoadFromTempBlob(var TempBlob: Record "QWETB tTempBlob" temporary; XPath: Text) Level: Integer
Parameters
var TempBlob
Record "QWETB tTempBlob" temporary
The record containing the blob with the XML Data.
XPath
Text
The XPath that should be loaded when the reader is loaded.
Returns
Integer
A unique number identifying the XML nodes found with the given XPath. If no nodes could be found that matched the provided XPath, a zero (0) will be returned.
This documentation is generated from Smart Toolbox v27.0