Quantcast
Channel: Deadlypenguin
Viewing all articles
Browse latest Browse all 40

Nulling fields in Salesforce with SoapUI

$
0
0

The Problem

The other day I came across a problem where sending in a blank field to Salesforce via SOAP was not nulling out the field.  Instead, the enterprise WSDL was treating this as if nothing was sent, and therefore not updating the field at all.  This make sense.  If you were to send a sparse data structure over with only fields you want to update, you wouldn’t want to either have to provide the current value of every field or have them all nulled out.  So, how do you null out a field with SOAP via the enterprise (or partner) WSDL in Salesforce?

The Solution

NOTE: This is input is formatted for SoapUI, it may differ depending on the client you are using to send the SOAP message.  The key take away is fieldToNull urn.

Lets start with a simple example of updating a field via the Enterprise WSDL

This will set the CustomField__c on the Contact to “Yay! Data”

 

To null out this field we simply send the field name as part of the fieldsToNull list

 


Viewing all articles
Browse latest Browse all 40

Trending Articles