I have a crystal reports file with a single Field that displays an XML string and need to export this as a .txt file. When I export the file, I'm getting line breaks and as a result when converting the .txt file to an XML file the data nodes are incorrect and out of line.
Looking for ideas and any help would be greatly appreciated.
Here's example of Source Data, is one large string in a single field.
<?xml version="1.0" encoding="UTF-8"?> <DataImport><JournalDetail><Division>23</Division><AccountId/>
Exporting to Text I get the below.
<?xml version="1.0" encoding="UTF-8"?> <DataImport><JournalDetail><Divisio
n>23</Division><AccountId/>
This is what I need.
<?xml version="1.0" encoding="UTF-8"?> <DataImport><JournalDetail><Division>23</Division>
<AccountId/>
I tried changing the characters per inch when exporting that's not getting what I need.
Export as CSV and adjust CSV export options to avoid text qualifiers.