Good afternoon everyone. I'm having an issue with an XML file created by Automate Premium 11.3.10.65. I've tried many things but nothing is giving the exact results needed. The task creates a XML file from a dataset using the commands:
<AMVARIABLE NAME="varXml" VALUE="" />
<AMFILESYSTEM ACTIVITY="csv_to_dataset" SOURCE="D:\temp\file.csv" RESULTDATASET="row" DELIMITER="|" />
<AMXML ACTIVITY="dataset_to_xml" RESULTDATASET="row" RESULTVARIABLE="varXml" />
<AMFILESYSTEM ACTIVITY="write_file" FILE="d:\temp\process.xml" ENCODING="utf-8" APPEND="no">%varXml%</AMFILESYSTEM>
The XML file is created and has this in the first line:
<?xml version="1.0" encoding="UTF-8"?><AutoMateDataset><row>
My dev team needs the <AutoMateDataset> in that first line to actually be the word <delimited>.
How can I change this field in the XML file?
Thanks in advance!