~Evelyn DesjumiplopakolApr 4, 2011, 9:21 AM21 PostsRe: TypeError] Exception occurred calling method NotesDocument.send() nullI think you are mixing up Java and LS. You need to set the fields on the document without using LS style shorteners -eg.memo.appendItemValue("Form", "Memo");
~Phil NimtumivernivuApr 5, 2011, 8:40 AM30 PostsRe: TypeError] Exception occurred calling method NotesDocument.send() null Nope, that's not it. Tried both ways - same result. Thanks for the input though! /J
~Autumn FrofanatexjipApr 13, 2011, 6:10 PM5 PostsRe: TypeError] Exception occurred calling method NotesDocument.send() nullHave you been able to resolve this? I'm getting the same error (code below). I ensured it's getting the recipients by using the print() statement; it returned the computed values in the 'SendTo' field, so not sure what's causing the error.try{save();var doc:NotesDocument = currentDocument.getDocument();//var to = doc.getItemValue("SendTo");//print(to);doc.send(false,doc.getItemValue("SendTo"));}catch(e){print("Error occurred while sending Feedback:\ " + e);}