I searched a couple of days and didn't find how can i put my custom fields in standard SalesForce object (Account, Lead, Opportunity etc...). I found only info about metadata API described here, but it explains inserting new metadata only on custom objets. I found this code too, but it works only for custom objects too. Does anybody knows more about this stuff? Thanks.

EDIT: Here is final working code for those who can't find example.

// SOAP_CLIENT_BASEDIR - folder that contains the PHP Toolkit and your WSDL
// $USERNAME - variable that contains your Salesforce.com username (must be in the form of an email)
// $PASSWORD - variable that contains your Salesforce.com password
define("SOAP_CLIENT_BASEDIR", "../../soapclient");
require_once (SOAP_CLIENT_BASEDIR.'/SforcePartnerClient.php');
require_once (SOAP_CLIENT_BASEDIR.'/SforceMetadataClient.php');
require_once ('../userAuth.php');
try {
  $mySforceConnection = new SforcePartnerClient();
  $mySoapClient = $mySforceConnection->createConnection(SOAP_CLIENT_BASEDIR.'/partner.wsdl.xml');
  $loginResult = $mySforceConnection->login($USERNAME, $PASSWORD);
  $myMetadataConnection = new SforceMetadataClient(SOAP_CLIENT_BASEDIR.'/metadata.wsdl.xml', $loginResult, $mySforceConnection);
  $customField = new SforceCustomField();
  $customField->setFullName('Account.MyCustomFieldb__c');
  $customField->setDescription('Description of New Field');
  $customField->setLabel('My Custom Field Label');
  $customField->setType('Text');
  $customField->setLength(255);
  print_r($myMetadataConnection->create($customField));
} catch (Exception $e) {
  echo $myMetadataConnection->getLastRequest();
  echo $e->faultstring;
}
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You would create populate a CustomField structure, setting the fullName property based on the standard object you want to add it to, e.g. Account.rating__c and then pass that to the create metadata API call. I don't know about PHP, bu there's an example in .NET here.

link|improve this answer
I tried it but it rises an Error "The custom object name must finish with __c". – bksi Dec 22 '11 at 8:48
Sounds like you're sending a CustomObject and not just a CustomField. – superfell Dec 22 '11 at 15:59
You are right. Thanks for helping – bksi Dec 23 '11 at 18:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.