• AU5T1N
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Environment : PHP SOAP API using Partner WSDL

 

[sf:INVALID_FIELD] INVALID_FIELD: No such column '' on entity 'Goal__c'.

Here's a snippet of the source, I'm almost 100% sure that the code provided by SalesForce is resetting the fields array to NULL. I've stepped through this about 100x and have proved that it generates semantically correct xml until it passes the document through the update method. Something then happens on the salesforce side and the error above is returned.

$fields['goal__c'] = '1';
$fields['EndDate__c'] = '2012-12-05';
$fields['Type__c'] = 'Monthly';
$fields['StartDate__c'] = '2012-09-01';

$sObject = new sObject();
$sObject->type = 'Goal__c';// Salesforce Table or object that you will perform the update on
$sObject->fields = $fields;
$sObject->Id = "a00E0000005HoXUIA0";

$sObjects[] = $sObject;

$upsertResult = $client->update($sObjects);

  • October 12, 2012
  • Like
  • 0