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] Publishing locale-specific information to the data dictionary (See related posts)

// description of your code here

1. From the command prompt on the computer on which eContent Server is installed, run this dmbasic command:

where:

docbase_name: The name of the Docbase.
user_name: Your user name.
password: Your password.
data_file: The data file that contains data dictionary information that is specific to the locale you want to publish.

Path: ‘documentum\product\4.2\bin’ (normally).

dmbasic -f dd_populate.ebs -e LoadDataDictionary -- docbase_name user_name password data_file


Open the IAPI utility and execute this API command:

where:

session: The session for IAPI (usually s0).
Locale: The locale for which you want to publish data dictionary information. For example, ja for Japanese. The default is the locale that is specified for the current client session.
Type: The specific object type for which you want to publish data dictionary information.
attribute: The specific attribute for which you want to publish data dictionary information. You must enter the type argument for which the attribute is defined.

publish_dd,session[,locale][,type][,attribute]



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


Click here to browse all 5147 code snippets

Related Posts