web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / MS CRM Customization / Some usefull links about CR...

Some usefull links about CRM Custmization

Mahadeo Matre Profile Picture Mahadeo Matre 17,021
CRM Form Types

Is the user creating a new record?
crmForm.FormType == 1

Is the user updating an existing record
crmForm.FormType ==2

Is the user unable to update this record?
crmForm.FormType == 3

Is this record deactivated?
crmForm.FormType == 4

Is the user using the Quick Create form?
crmForm.FormType == 5

Is the user using the Bulk Edit form?
crmForm.FormType == 6

What is the unique ID for this record?
= crmForm.ObjectId

What type of record is this?
= crmForm.ObjectTypeCode

What type of record is this (Entity Name)?
= crmForm.ObjectTypeName

Is the user using the Outlook Client?
crmForm.IsForOutlookClient==true

Is the user using the Outlook Light Client?
crmForm.IsForOutlookLightClient == true

Is the user working On line?
crmForm.IsOnline==true

Have any fields in this form been changed?
crmForm.IsDirty==true

Reference:
http://mscrm-developer.blogspot.com/2008/09/crm-form-types.html

=======================================
Use full JavaScripts

http://ronaldlemmen.blogspot.com/

=========================================
Hide menu bar in Iframe

http://crm.atechnisch.nl/2008/03/hiding-bars-in-iframes/

=============================================
Tricks and Tips from Users of Microsoft Dynamics CRM
http://crm.atechnisch.nl/2008/03/hiding-bars-in-iframes/

This was originally posted here.

Comments

*This post is locked for comments