excListIdStr = excListId;
quoteIdStr = quoteId;
qteDetails = zoho.crm.getRecordById("Quotes",quoteId);
excDetails = zoho.crm.getRecordById("Bidding_Exceptions",excListId);
//Get Specifications Sections
blrec = zoho.crm.getRecordById("Bidding_Exceptions",excListId.toLong());
specList = List();
specList = ifnull(excDetails.getJSON("Specification_Sections"),List());
info specList;
out = "";
for each sf in specList
{
bl = ifnull(sf.getJSON("/n"),"");
}
//Update Notes
newNote = Map();
newNote.put("se_module","Bidding_Exceptions");
newNote.put("Parent_Id",excListId.toString());
newNote.put("Note_Title",out);
newNote.put("Note_Content","Update");
resp = zoho.crm.createRecord("Notes",newNote);
info newNote;