Bulk loading with carriage return in long text fields in the xml file
I am trying to bulk load Operations by using the LoadFromFile. The field LongDescription in most of the cases consists of multiline text. Below is the way the xml is currently being generated:
<csvBeginOperation handler="com.ptc.windchill.mpml.processplan.operation.LoadOperation.beginOperation">
<csvuser></csvuser>
<csvname>OP000001</csvname>
<csvnumber>OP000001</csvnumber>
<csvcategory>production</csvcategory>
<csvdescription>COIL LINE</csvdescription>
<csvlongDescription>REVIEW NEST OR CONTACT
NESTER FOR SHEAR LENGTH
INSTRUCTIONS.
UNIT IS SQFT
N-P</csvlongDescription>
<csvdefaultUnit>ea</csvdefaultUnit>
<csvfolder>/Default/Operations</csvfolder>
....
Unfortunately, the line break seems not to be recognized/detected.
I tried to replace the carriage return with " " (after reading a PTC document) but I had no luck
<csvlongDescription>REVIEW NEST OR CONTACT NESTER FOR SHEAR LENGTH INSTRUCTIONS. UNIT IS SQFT N-P</csvlongDescription>
I have tried also with " " and " " but they require to be declared in the xml and I am not sure this is the right way.
What am I missing?

