Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

[Documentum] Error msg: [DM_FOLDER_E_MUST_HAVE_NAME]error: "A new folder/cabinet must have an object_name. (See related posts)

Can't create new content throught Documentum Webpublisher using account with inline password.

Run this DQL and make sure that 'user_os_name' is null

select * from dm_user where user_name = 'user_name' and user_os_name is not null


If not, set 'user_os_name' field as null from Documentum Administrator or running this DQL.

update dm_user object set user_os_name = '' where user_name = 'wp_admin'


Restart Web Publisher session.

You need to create an account or log in to post comments to this site.


Click here to browse all 5141 code snippets

Related Posts