Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. trigger AccountCallout on Account (after update) {
  2. for (Account a : Trigger.new) {
  3. // make the asynchronous web service callout
  4.  
  5. WebServiceCallout.sendNotification(a.Name,
  6. a.Email__c, a.BillingStreet,a.Country_of_Headquarters__c,
  7. a.Any_other_questions_of_operation__c, a.Website, a.Year_of_formation__c,
  8. a.Legal_Status__c,a.Legal_Status_Other__c, a.Mission_Statement__c,
  9. a.Mission_Statement_Other__c, a.Sector_of_Operation__c, a.Sector_Other__c,
  10. a.What_does_this_Enterprise_do__c, a.Parent_Company_C__c, a.NumberOfEmployees,
  11. a.How_did_you_hear_about_Connect__c, a.Why_interested_in_Connect_programme__c, a.Innovative_idea__c,
  12. a.Benefits_of_your_innovation__c, a.Seeking_a_partner_Requirements__c, a.Any_other_info__c,
  13. a.Value_enterprise_provides__c, a.Improve_health_or_agri_food_prospects__c,
  14. a.Opportunities_to_improve_diversify_grow__c );
  15.  
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement