I have a folder that contains custom objects. I need to export the details of these custom objects in a excel sheet. I have implemented it using jsps in webapps\vbcs folder.
I am calling that jsp, passing the folder oid and there on jsp iterating the children and printing the details. But when I tried to get the audit history through following code I get NullPointerException
Iterator itr = child.getAuditTrail();
System.out.println(itr);
while(itr.hasNext()){
IKMObject obb = (IKMObject)itr.next();
System.out.println(obb);
}
Is there any way to get the audit trial of the children or do I have to write the customaudit and store the audit trial entry first?
Thanks,
Shuchi Goswami