How to open an existing entity form using JavaScript in CRM?

Vishnu picture Vishnu · Apr 10, 2013 · Viewed 11.8k times · Source

If a custom ribbon button is clicked, is it possible to open an existing entity form using JavaScript or is there some other ways to open the existing form (e.g. campaign form)?

Answer

Bvrce picture Bvrce · Apr 10, 2013
function PopNewCase() { 
     Xrm.Utility.openEntityForm("incident", "GUID_OF_EXISTING_CASE"); 
}