for (Iterator itBp = bps.iterator(); itBp.hasNext();) {
BOInstance biBP = (BOInstance) itBp.next();
List bos = findBO.invokeSelect(biBP.getUid());
for (Iterator itBO = bos.iterator(); itBO.hasNext();) {
BOInstance biBO = (BOInstance) itBO.next();
aBO.refreshContext(biBO.getUid());
export.exportBO(sb, biBO);
}
}
t.end();
} catch (Exception e) {