• dkelly
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi, I've just installed Eclipse 3.2.1 & the App Exchange Toolkit.
 
Now, when I try to create an Apex Project I get the following error message
 
"The Selected wizard could not be started."
 
Reason:
Plug-in com.appexchange.toolkit was unable to load class
com.appexchange.plugin.wizards.AppExchangeProjectWizard
 
Any help greatly appreciated!
 
Don
  • January 11, 2007
  • Like
  • 0
ARGH!!

So using the example from the wiki as my guide:

Code:
http://wiki.apexdevnet.com/index.php/Members:PHP_Toolkit_1.1_Update_Sample_%28Enterprise%29

 
I am able to update standard fileds in cases wihtout issue.  I cannot, however get custom fields to update.

When I do a getLastRequest I cannot even see my custom fields referenced in the SOAP call.  Someone please point me in the right direction on updating custom fields through the Enterprise 1.1 api.

My code below:

Code:
require_once ('soapclient/SforceEnterpriseClient.php');
require_once ('soapclient/SforceHeaderOptions.php');

try {
  $sfc_connection = new SforceEnterpriseClient();
  $mySoapClient = $sfc_connection->createConnection("enterprise.wsdl.xml");
  $sfc_login = $sfc_connection->login("SFC_USR", "SFC_PWD");

  $userResult = $sfc_login->userInfo;
  echo $userResult->userFullName . ', your session id is ' . $sfc_login->sessionId;
    
  $sObject1             = new stdClass;
  $sObject1->Subject    = 'Test issue 1';
  $sObject1->zzTest__c  = 'text';
  $sObject1->Id         = '50020000000hl5kAAA';
 
  print_r($sObject1);
 
  $response = $sfc_connection->update(array ($sObject1), "Case");

  print_r($response);
  print_r($sfc_connection->getLastRequest());
  print_r($sfc_connection->getLastResponse());
} catch (Exception $e) {
  echo $e->faultstring;
}

 

Has anyone else been seeing unexpected behavior from the email notifications controlled by the Case Support Settings since switching to Winter 07?

I haven't been able to track all circumstances that trigger it, but it seems that Case Assigned notifications are getting sent to often and under new circumstances. Specifically, Cases that get closed by the Case Owner or another User trigger the Case Assigned notifications even though there was no change in Case Owner assignment, only in the Status.

It seems like changing the Status now also triggers the Case Assignment notifications. If Status is the only thing changed, the Case Owner gets notified.

If a Comment is added, an additional email is sent, which is expected behavior since we enable the Notify Case Owners of Comments setting.

Luke

P.S. Peter Dapkus recommended posting here in his blog entry - is there a better board for Non-Apex related discussions?