Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am using tXMLMap to create a document which is being fed to tXMLOutput. The issue is the XML output is not looping correctly. Below is an example of two records found in the output file. It should have been coming out as
<?xml version="1.0" encoding="ISO-8859-15"?>
<Sections xmlns=http://schemas.kaplan.edu/salesforce-integration/inbound>
<Sections>
<Section>1</Section>
<Section>2</Section>
<Sections>
Versus
<?xml version="1.0" encoding="ISO-8859-15"?>
<Sections xmlns=http://schemas.kaplan.edu/salesforce-integration/inbound>
<Section>1</Section>
<Sections>
<?xml version="1.0" encoding="ISO-8859-15"?>
<Sections xmlns=http://schemas.kaplan.edu/salesforce-integration/inbound>
<Section>2</Section>
<Sections>
Hi @Ravichandran Rajagopal
Try looking at tXMLMap output properties (click on the wrench icon inside tXMLMap mapping window). There'is an option called "All in one" and its default value is false.
It should be set to true for your use case.
Hi @Ravichandran Rajagopal
Try looking at tXMLMap output properties (click on the wrench icon inside tXMLMap mapping window). There'is an option called "All in one" and its default value is false.
It should be set to true for your use case.
Thanks a bunch for your help, it resolved my problem.