select * from Staging
where Staging.RecId == 5637144581;
_xmlMsg = Staging.OrderJson;
doc = new XmlDocument();
doc.loadXml(_xmlMsg);
xmlError = doc.parseError();
if(xmlError && xmlError.errorCode() != 0)
{
throw error(strFmt("XML Error: %1", xmlError.reason()));
}
//rootNode = doc.documentElement();
nodeNote = doc.documentElement().getNamedElement("name");
//rootNode = doc.getNamedElement(#paramsNode);
xmlRecordList = nodeNote.childNodes();