How to Lock Business Process field | Dynamics CRM 365

Talha Manzoor
0
How to Lock Business process field lock | Dynamics CRM BPF field lock using javascript

In this blog, you will learn how to lock business process field dynamics CRM 365.
Here is the javascript sample code:

function bfffieldlock(executionContext) {
     var formContext = executionContext.getFormContext();
    formContext.getControl("header_process_vwi_outcome").setDisabled(true);
    formContext.getControl("header_process_vwi_opinionstatus").setDisabled(true);
    formContext.getControl("header_process_vwi_recommendedsettlement1la").setDisabled(true);
    formContext.getControl("header_process_vwi_opinionstatus").setDisabled(true);
}

Post a Comment

0Comments

Post a Comment (0)