How to remove one specific tag data while converting doc to xml?

Hi All,
I am converting doc to xml.I had 30 string fileds in my document.But i want to eliminate one particular tag data while converting doc to xml.
ex:

333

i Want to remove this adress tag data in xml data while converting doc to xml step.
Is it possible.If possible can any body help me on this.Little bit urgent requirement…
Hope for positive response.

Regards,
Learner.

Map the source doc to a target doc which does not have the field to be removed and then use the new doc to to convert to XML.

Or in a map step, drop the element in the doc that you don’t want. For this to work the doc type needs to have the element marked as optional. Or the “generate required elements” in the ToXMLString call needs to be false.