hi,
Can I break down the 'Check in operation' into two steps?
1.Create a new version;
-----------------------------------
doing something.
2.Set the new version to 'Current'.
Thanks for your help!
If you are asking whether you can extend the existing logic to handle both use cases, the answer is yes. Just extend the checkin component class.
Thank you for help!
I find a way to meet my requirement:
----------------------------------------------------
IDfSysObject obj= (IDfSysObject)session.getObject(id);
obj.checkin(false, "1.1");
-----------------------------
doing something
obj.mark("CURRENT");
I'm a newer to Documentum,if any further question, i hope you could help me more.
Look at the WDK Reference Manual for the checkin component and WDK Tutorial on how to extend component class.