Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Created by sabzilla
  2. //Date July 29th, 2014
  3.  
  4. function trimPhoneCall() {
  5. //get notes
  6. var notes = Xrm.Page.data.entity.attributes.get("description").getValue();
  7. //set amount of characters to grab
  8. var length = 3000;
  9. //grab amount of characters length variable specifies
  10. var trimmedNotes = notes.substring(0, length);
  11. //specify field to set as trimmed notes
  12. var notes = Xrm.Page.data.entity.attributes.get("description");
  13. //set field to trimmed notes
  14. notes.setValue(trimmedNotes);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement