Posts

Showing posts with the label MS 2011 REST or OData

REST Endpoint or OData operations in MS CRM 2011-Part 1

To locate and retrieve data with the REST Endpoint, manipulate URI. The organization root URL must include organization. We can retrieve service root URI by using Xrm.Page.context. getServerUrl Each MS CRM 2011 entity is represented in the conceptual schema definition language (CSDL). The Naming convention is [ Entity Schema name] Set MS CRM 2011 entity attributes. Each property is assigned a data type that corresponds to one of the primitive Entity Data Model (EDM) data types or Complex type defined for MS CRM. Complex Types: 1.        Microsoft.Crm.Sdk.Data.Services.EntityReference à represents EntityReference and Customer Owner. 2.        Microsoft.Crm.Sdk.Data.Services.OptionSetValue à OptionSetValue, State and Status. 3.        Microsoft.Crm.Sdk.Data.Services.Money à Money 4.        Microsoft.Crm.Sdk.Data.Services.BooleanManagedProperty ...