One of our trading partners requires an IMD+F
segment per item in their EDI invoice, even if it's empty. They want it to look like this:
IMD+F++:::'
In the XSLT that maps to the EDIFACT (D96A) Invoice, I have the following:
<ns0:IMD_2>
<IMD01>F</IMD01>
<IMD02></IMD02>
<ns0:C273_2>
<C27301></C27301>
<C27302></C27302>
<C27303></C27303>
<C27304> </C27304>
</ns0:C273_2>
</ns0:IMD_2>
Notice the space in the C27304
segment. BizTalk assembles this into the following EDI:
IMD+F'
How can I get the full segment with separators?