Is there a way to use C # to create a form for an object for CRM 2011?

It seems that web services create an entity, fields, solution, global set of parameters and much more in the CRM 2011 SDK. However, I do not see any web services to create a form for the object. Does anyone know of any back door or ways to create forms outside of CRM 2011 using C # or VB?

+6
source share
1 answer

You should spend some time on FormXml , to fine-tune the look of your (s), but you can programmatically control the shape of the objects with the help of SystemForm the entity .

FormXml is stored in a SystemForm object. You can programmatically retrieve and update FormXml using this object.

+7
source

Source: https://habr.com/ru/post/909917/


All Articles