Joel recently has explained how to find a record using id. Cute, very cute. Text editors. What’s next, vim?
Want to be a real developer? Repeat after me:
- Open CRM in IE
- Press F12
- Click Console tab
- Type
Xrm.Utility.openEntityForm("entity name","record GUID")
- Press <Enter> and behold
Is this hands down the best method? Let’s see what CRM has to say:
That’s real cute guys, but there is an even easier way: Create a bookmarklet with the content below, click it and enjoy.
javascript:var nm=prompt(“Enity Name?”, “”);var id=prompt(“ID?”, “”);Xrm.Utility.openEntityForm(nm,id);
http://devbeard.com/open-any-entity-by-id/