create xml out of node(a,b,c,d)


This function is deprecated.

Creates an XML document out of all fields of the current node before the field this funtion is on.

Description of Parameters


Parameter

Description

a

true to exclude the XML header line.

b

true to skip empty fields.

c

Suffix for fields to be excluded.

d

true to use the field description instead of the field name.


Examples


Assume the following target structure.


images/download/attachments/62865257/315-version-1-modificationdate-1646983934657-api-v2.png



Parameter a

Parameter b

Parameter c

Parameter d

Result

true

true

_skip

false

<XmlNode>

<Demo>123</Demo>

</XmlNode>

false

true

_skip

false

<?xml version="1.0" encoding="UTF-8"?>

<XmlNode>

<Demo>123</Demo>

</XmlNode>

true

true


false

<XmlNode>

<Demo>123</Demo>

<Not_there_skip></Not_there_skip>

</XmlNode>