Hi all,
I've a question. I'm trying to export a XML file with many optional fields (it's an items's extraction with many commercial informations). I setupped optional elements properties with MinOccurs = "Zero" and MaxOccurs = "Once" or sometimes "Unbounded". If i don't insert any values in this element, i would like to extract XML file without empty element's tag. Is it possible?
Thanks a lot.
Into attach file there is an example.
Giorgio Gandolfi
0
Answers
Try this one.
awesomefield - Export::OnBeforePassVariable()
IF awesomefield = '' THEN
currXMLport.SKIP;
Regards.