Hi Amit,
QuerySpec querySpec2 = new QuerySpec(EPMDocument.class);
/*SearchCondition condition = new SearchCondition(ContainerTeam.class,ContainerTeam.NAME, SearchCondition.LIKE,"%Sample_Product_02");
querySpec2.appendWhere(condition);*/
QueryResult queryResult2 = PersistenceServerHelper.manager.query(querySpec2);
while (queryResult2.hasMoreElements()) {
EPMDocument epmDocument = (EPMDocument) queryResult2.nextElement();
System.out.println("Part Name : "+ epmDocument.getCADName());
}
it only takes all the cad names (EPM Document).
but i cant able to fullfill your requirement.
Thank you
Vijayan