void name()
{
crmResp = zoho.crm.searchRecords("CustomModule4","(Unique Address|=|" + input.uniqueaddr + ")");
allProductXmlData="<Products>";
rowVariable=1;
for each product in crmResp
{
apn=product.get("APN");
county=product.get("County");
psize=product.get("Property Size");
totaltaxes=product.get("Total Taxes Owed");
nettoseller=product.get("Net to Seller");
ProductXmlData="<row no=\"" + rowVariable + "\"><FL val=\"APN\">" + apn + "</FL><FL val=\"County\">" + county + "</FL><FL val=\"Size\">" + psize + "</FL><FL val=\"Total Taxes Due\">" + totaltaxes + "</FL><FL val=\"Net To Seller\">" + nettoseller + "</FL></row>";
rowVariable=(rowVariable + 1);
allProductXmlData=allProductXmlData + ProductXmlData;
}
allProductXmlData=allProductXmlData + "</Products>";
info allProductXmlData;
return allProductXmlData;
}