Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Creating a new version
System
Is there anyway to create a new version of an existing document. I have an iManage.IMANDocument object and want to create a new version of this document automatically without prompting the user (similar functionality to the copy new version command in desksite)
Thanks
Find more posts tagged with
Comments
dabird
You should be able to use the following call:
object err = null; 'this is for error output for the checkin operation
string tempPath = 'path for new version;
document.CheckIn(tempPath, imCheckinDisposition.imCheckinNewVersion, imCheckinOptions.imDontKeepCheckedOut, ref err);