While using CRM there may be conditions in which user wants to open forms and reports programmatically. For this we can write the scripts which will open the forms and reports.
Open CRM forms using script:
The form can be open using openEntityForm(); method.
Syntax : Xrm.Utility.openEntityForm( name,id,parameter );
Parameters :
name : (Required ) The logical name of an entity.
id : (Optional) The string representation of a unique identifier or the record to open in the form....(read more)
↧