function Fetch()
{
//create the Ascentium_CrmService object
var oService
= new Ascentium_CrmService(orgName.value, serverUrl.value);// Se lo
includo nell'entità non c'è bisogno di passargli niente
//execute a Fetch query
var sFetchXml = "<fetch mapping='logical'><entity
name='account'><attribute name='accountid'/><attribute
name='name'/></entity></fetch>";
var aoFetchResult
= oService.Fetch(sFetchXml);//mi ritorna
una collection di Business Entity
//iterate through the aoFetchResult collection
var sResults = "Accounts:\n";
for (var i = 0; i <
aoFetchResult.length; i++)
{
var beResult =
aoFetchResult[i]; //Per ogni Account vado a
stampare i due atributi
sResults += i
+ ": " + beResult.attributes["accountid"].value + ", " + beResult.attributes["name"].value +
"\n";
}
alert(sResults);
}
|