Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. {!REQUIRESCRIPT("/soap/ajax/23.0/connection.js")}
  2. sforce.connection.sessionId = "{!$Api.Session_ID}";
  3.  
  4. var l = new sforce.SObject("Lead");
  5. l.id = "{!Lead.Id}";
  6.  
  7.  
  8. var result = sforce.connection.update([l]);
  9.  
  10. if (result[0].getBoolean("success"))
  11. {
  12. // Refresh window
  13. window.location = "/lead/leadmergewizard.jsp?retURL=%2F{!Lead.Id}&id={!Lead.Id}&p1=0&p2=0&p3=1&p4=1&p5=0&p6=1";
  14. }
  15. else
  16. {
  17. alert("Error saving lead. Please check for validation rules that may be preventing you from saving the record — e.g., missing Total Power Units");
  18. }
Add Comment
Please, Sign In to add comment