Doubtful use of PersistentObjectManager.getPom()
I am using Windchill PDMLink Release 13.0 and Datecode with CPS 13.0.1.0
Hello,
In a Windchill customization i have a piece of legacy code that i find doubtful:
transaction.start();
int rowCount = PersistentObjectManager.getPom().execute(deleteBatchSpec, new WTHashSet(), false);
transaction.commit();
The DeleteBatchSpec is an SQL query targeting the lines to delete.
The problem is, in the code i'm wondering about, this is not a batch execution, it is used at normal runtime. So my question is: how does this piece of code behave in a clustered environment? Is the cluster cache updated somehow, or is this code doing something really wrong?
Regards,

