Update EPMDocument IBA through JAVA
Good evening,
I'm having trouble understanding the process of updating an IBA of an EPMDocument.
I'm trying as it follows:
attributes.put(attributeName, attributeValue);
PersistableAdapter epmObj = new PersistableAdapter(epmDoc, null, null, new UpdateOperationIdentifier());
epmObj.load(attributeName);
epmObj.set(attributeName, attributeValue);
EPMDocument obj = (EPMDocument) epmObj.apply();
PersistenceHelper.manager.modify(obj);
However I didn't get any changes on the attribute itself. I'm guessing that in this case I need to checkout the EPM and do the changes on a working copy of it to persist the changes.
However reading the documentation and other topics I haven't found a clear flow to check-out--> set the attribute and then check-in the object. Can someone give me a hand on this if possible? Thank you kindly for your support

