Hello
I am implementing a TBO in which i want to manipulate the content of object right now i am doing through following sample
IDfSession session = getSession();
IDfSysObject sysObject = (IDfSysObject) session.getObject(new DfId(getObjectId().getId()));
String line = "Mayur Mitkari";
byte b[] = line.getBytes();
ByteArrayOutputStream buf = new ByteArrayOutputStream();
buf.write(b, 0, b.length);
sysObject.setContent(buf);
String id = sysObject.getString("r_object_id");
IDfSysObject object = (IDfSysObject) session.getObject(new DfId(id));
object.setObjectName(getTitle()+ "1");
object.save();
is there any do method through which is preferred like doFetch, doCheckout
Regards