Tuesday, December 1, 2009

Business required and not !!!

Sometimes we need some attributes to be Business Required and not as per the actions taken by the user
So its very simple to do so.

// Set field to not required
crmForm.SetFieldReqLevel("attributeName", 0);

// Set field to business required
crmForm.SetFieldReqLevel("attributeName", 1);

No comments:

Post a Comment