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. Only fields in front of this function are included.

Description of Parameters

Parameter

Description

a

true to exclude XML header line.

b

true to skip empty fields.

c

Suffix for fields to be excluded.

d

true to use the description instead of the field name.

Examples

Assume the following destination structure.

images/download/thumbnails/21304588/create_xml_out_of_node-version-1-modificationdate-1532322176000-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>