• webdbproject
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 7
    Replies
Hi
How to call the pick a date window in Salesforce Ajax?
 
Thanks :smileyhappy:

Message Edited by webdbproject on 06-02-2006 02:07 PM

The Unique Id keeps increment by one. Does anyone how what is the limitation? Is there any way to reuse the Unique Id from the records was deleted?
 
Thanks...

I am trying to do an update a field to empty string using fieldsToNull, but it never works.

The following is the code:

  $fieldsToUpdate = array('Id'=>$ID,'Test__c'=>NULL);
  $sObject = new SObject();
  $sObject->fieldsToNull = $fieldsToUpdate;

  $rs = $mySforceConnection->update(array($sObject));

Please help...
 
Thanks
Hi
How to call the pick a date window in Salesforce Ajax?
 
Thanks :smileyhappy:

Message Edited by webdbproject on 06-02-2006 02:07 PM

I am trying to do an update a field to empty string using fieldsToNull, but it never works.

The following is the code:

  $fieldsToUpdate = array('Id'=>$ID,'Test__c'=>NULL);
  $sObject = new SObject();
  $sObject->fieldsToNull = $fieldsToUpdate;

  $rs = $mySforceConnection->update(array($sObject));

Please help...
 
Thanks