Following statement can be used to retrieve accounts from the CRM application with the MyOrganization hosted in DevServer.
“http://DevServer/MyOrganisation/” part is varried according to the hosted server and the organization and it might raise errors when the above OData query get executed in some other CRM application.
Following JavaScript can be used to get the server url in the CRM 2011 forms.
var serverUrl = Xrm.Page.context.getServerUrl();
Get the next part of the OData service part.
var GlobalODataPath = serverUrl + "/XRMServices/2011/OrganizationData.svc/";
Set the server url and the OData service path prior to the OData query as follows.
var ODataQuery= GlobalODataPath +"AccountSet?$select=swmship_FirstName,swmship_Surname&$filter=startswith(Address1_City,'Ca')";
This script can be used with different OData queries in CRM forms.
var serverUrl = Xrm.Page.context.getServerUrl(); var GlobalODataPath = serverUrl + "/XRMServices/2011/OrganizationData.svc/"; var ODataQuery= GlobalODataPath +"AccountSet?$select=swmship_FirstName,swmship_Surname&$filter=startswith(Address1_City,'Ca')";
Hello, i think that i saw you visited my web site so i came to “return the favor”.
I’m trying to find things to improve my web site!I suppose its ok to use a few of your ideas!!
No Problem at all. Regards.