• Danny_S
  • NEWBIE
  • 0 Points
  • Member since 2007

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

I'm trying to update a CASE records

(php)
$sObject = new SObject();
                        $sObject->type = 'Case';
                        $sObject->Id = $myCaseID;
                        $sObject->fields->ContactEmail="BLBLA";
                        $update_result = $sfdc->update($sObject);
$update_result = $sfdc->update($sObject);

When looking into $update_result, looks like it success:
stdClass Object (
[id] => 50020000001XeGxAAK
[success] => 1
 )

BUT: When I go to salesfoce and view the case details, It does NOT updated ....

Am I missing something ?

Thanks
Danny.
  • September 25, 2007
  • Like
  • 0
Hi,
 
I'm stuck , Can somone reffer me to what modification should be done to the PHP toolkit in order to set the LoginScopeHeader correctly ?
 
Thank you!
Danny.
 
  • September 24, 2007
  • Like
  • 0
Hi,
 
I want to validate a self service portal session , But can't understand if it's possiable.
 
I want to place in a case page on the SSP a link to my php application on my remote server, I'm passing to it the session id , so the php will authenticate the session using API without requring the user to relogin.
 
 
  • September 17, 2007
  • Like
  • 0
Hi,

I'm trying to update a CASE records

(php)
$sObject = new SObject();
                        $sObject->type = 'Case';
                        $sObject->Id = $myCaseID;
                        $sObject->fields->ContactEmail="BLBLA";
                        $update_result = $sfdc->update($sObject);
$update_result = $sfdc->update($sObject);

When looking into $update_result, looks like it success:
stdClass Object (
[id] => 50020000001XeGxAAK
[success] => 1
 )

BUT: When I go to salesfoce and view the case details, It does NOT updated ....

Am I missing something ?

Thanks
Danny.
  • September 25, 2007
  • Like
  • 0