Here is a quick way to know
what fields are dirty on CRM form by a single click.
Put this line of code into
step 5
Finally, to use it
Unlock the full potential of Microsoft Dynamics 365 CRM from customization hacks to workflow automation. Discover how to streamline processes, enhance user experience, and maximize your CRM investment. Dive into actionable insights, stay updated with the latest features, and elevate your Dynamics CRM game.
javascript: var form = $("iframe").filter(function() { return $(this).css("visibility") == "visible"})[0].contentWindow;try { form.Mscrm.InlineEditDataService.get_dataService().validateAndFireSaveEvents = function() { return new MscrmSaveResponse(5, "") }} catch (e) {}var attrs = form.Xrm.Page.data.entity.attributes.get();for (var i in attrs) { if(attrs[i].getIsDirty()) console.log(attrs[i].getName());}
No comments:
Post a Comment