• Udesh De Silva
  • NEWBIE
  • 5 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Scenario:
We are using a BULK Upsert API call into the Opportunity object.  
Opportunity Workflow Rules are deactivated.
Account Workflow Rules are Active

Using the following fields to match and insert/update on External ID.

Opportunity.External_Id__c
Account.External_Id__c 

As you see in my Debug log below:  The workflow rules are firing, is that intentional?  I know I can add a custom setting or deactivate the workflow but I am looking for if anyone else has seen this before.


User-added image

Thanks in advance -- Cid

 
  • June 03, 2015
  • Like
  • 0
Hi,

at the moment I get all information for the account with the code below.
Now I need the information from a related parent parent object.

Account --> Contract --> Salesnumbers

How can I get the information from the salesnumbers object?
Public List <Account> getAccDList2() {
    List <Account> AccD =  [SELECT Id, Name, BillingCity, Rating, Billingstreet, BillingPostalCode, Folder_Link__c, NumberOfEmployees FROM Account WHERE Id = :SelectedAccountId];
    RETURN AccD;
}
Thanks,
Sascha