Hi,
I have a unique requirement with Salesforce WSDL where in order to null out a field, i need to explicitly set the element name in "FieldsToNull" element.
E.g.
<UpdQuote>
<FieldsToNull/>
<Id></Id>
<Name></Name>
<Type></Type>
</UpdQuote>
Here if Type or Name have xsl nil as true, then i need to insert two FieldsToNull with field names like:
<FieldsToNull>Name</FieldsToNull>
<FieldsToNull>Type</FieldsToNull>
explicitly
How can i achieve this in XSL Transform map since it depends on which field has xsl:nil set to true or false?
Thanks.