I have met the following problem during creation of a document using DFS; and will appreciate any help
Preconditions: I am using Documentum Developer Edition 6.6, DFS (.Net)
1. I wanted to create a document using method Create of Object Service. I wanted to have labels of the document as '1.0', 'CURRENT', 'MyLabel' after the creation. So I set property 'r_version_label' as {'MyLabel'} and called the Create. This was wrong: I had to put array of THREE items {'1.0', 'CURRENT', 'MyLabel'} into 'r_version_label', correct? So now a cabinet where I had created the document seems 'spoiled': I see nothing in the cabinet in WebTop; but I cannot delete the cabinet using WebTop: I get error: '...it contains subfolders and/or objects'
2. How can I either delete the cabinet or fix it?
3. What do you think about the setting r_version_label={'1.0', 'CURRENT', 'MyLabel'} before Create call? Maybe this is not optimal solution for the task? Maybe there is a more elegant way to do this?