Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ravi_Rajagopal
Contributor III
Contributor III

XML File Output

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>

Labels (4)
1 Solution

Accepted Solutions
anselmopeixoto
Partner - Creator III
Partner - Creator III

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.

 

0695b00000huu2RAAQ.png

View solution in original post

2 Replies
anselmopeixoto
Partner - Creator III
Partner - Creator III

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.

 

0695b00000huu2RAAQ.png

Ravi_Rajagopal
Contributor III
Contributor III
Author

Thanks a bunch for your help, it resolved my problem.