I’m trying to use stampAllMulti method in Java agent but DDE gives me error:“The method stampAllMulti(Document) is undefined for the type DocumentCollection”
Here is piece of code that i’m using:
lotus.domino.Document stampdoc = db.createDocument();
stampdoc.replaceItemValue(“Field1”, “testvalue”);
stampdoc.replaceItemValue(“Field2”, “testvalue2”);
dc.stampAllMulti(stampdoc);
Method is documented in LDD-help but that doesn’t help…