Guest User

Untitled

a guest
Mar 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Apex trigger AcountTriger caused an unexpected exception, contact your administrator: AcountTriger: execution of AfterInsert caused by: System.UnexpectedException: Salesforce System Error: 1301043935-22543 (1350809315) (1350809315): Trigger.AcountTriger: line 8, column 1
  2.  
  3. trigger AcountTriger on Account (after insert,after update) {
  4. Map<String, Object> params = new Map<String, Object>();
  5. for(Account acc : Trigger.new){
  6. params.put('accountEmail',acc);
  7. Flow.Interview.test testflow = new Flow.Interview.test(params);
  8. testflow.start();
  9. String localOutputParameter = (String)testflow.getVariableValue('accountEmail');
  10. }
  11. }
Add Comment
Please, Sign In to add comment