我想编写更新帐户表单的JavaScript代码(address1_city字段) 根据“主要联系人”字段,我需要检索正确的联系城市并更新 具有此值的帐户城市。
我该怎么做?
我有一个返回第一个联系人的函数:
function getFirstContactToBePrimaryContact(contactName)
{
SDK.REST.retrieveMultipleRecords("Contact", "$select=FullName",
function (results)
{
var firstResult = results[0];
if (firstResult != null)
{
if(contactName == firstResult)
{
returnValue = getcity(firstResult);
return;
}
}
else
{
//document.write("No Contact records are available to set as the primary contact for the account.");
}
}, errorHandler, function () { /*OnComplete handler*/ }
);
}