function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nikhil SagarNikhil Sagar 

Can anyone help me:) How to prevent the "docusign" if some fields are blank(We have to make them mandatory) If we miss those fields we have to populate one message like: "This fields are mandatory"...

PriyaPriya (Salesforce Developers) 
Hi Nikhil,

You can make the field mandatory by making it required field on page layout or by creating the validation rule. 

In validation rule, inside the Error Condition Formula, enter like below :-
 
ISBLANK(Field API name)

Error Message :- This fields are mandatory

Please mark it as best answer, if it works.

Regards,

Priya Ranjan