How to update IBA value without object checkout and checkin
I do have IBA attribute field on the wizard table. I want to update that attribute without check out and checkin object.
I have tried using following code for that. But getting error message that "Design is not checked out and cannot be modified".
object.load("XXXXX","YYYY","ZZZ");
/* Set value of IBAName soft attribute to IBAValue */
object.set("XXXX", strCNo);
object.set("YYY", strCS);
object.set("ZZZ", strAS);
perObj = object.apply();
perObj = (Persistable) PersistenceHelper.manager.modify(perObj);

