Business Applications October ’18 release overview

Click on the image for more details.

Business Applications October 2018 Release Notes

 

Lock or Unlock Business process flow fields using JavaScript in CRM

Use the below syntax to lock or unlock the business process flow fields in a crm record using javascript,

Lock:

Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(true);

UnLock:

Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(false);