A user's department needs to make a major change to a survey document that the user stored in the repository. Which actions should the user take to replace the existing survey document with a new file?
A. Check Out and Import
B. Check Out and Save As
C. Check Out and Check In
D. Check Out and Check In From File
Which statement about virtual document components is true?
A. To add an object to a virtual document, the object must be checked out.
B. An object can be a component of more than one virtual document simultaneously.
C. When an object is added to a virtual document, the Content Server makes a new copy of the object.
D. Once an object becomes a component of a virtual document, it can never be removed from the virtual document.
Which statement is true regarding a role?
A. Only a Superuser can create a role.
B. The Content Server enforces roles.
C. A role can be added to another role.
D. A role is a sub-type of dm_group object.
When an object is promoted to the next state in a lifecycle, which condition must be met before the object can enter the state?
A. There are no pending workflow tasks involving the object.
B. The object's permissions match the lifecycle's permissions.
C. Only the CURRENT version of the object is being promoted.
D. It meets the target lifecycle state's entry criteria.
Which service listens for incoming messages that communicate with Documentum business processes?
A. Content Server
B. Process Engine
C. Process Integrator
D. Webtop
What is returned by the following query?
SELECT * FROM dm_document WHERE owner_name = 'dm_admin'
A. zero or one property of dm_documents
B. all properties of objects created by dm_admin
C. all versions of dm_document objects owned by user dm_admin
D. a predefined list of properties from dm_document objects owned by dm_admin
When modifying an existing custom attribute in a Composer Project, which type of change is allowed?
A. increasing the length of string data types
B. converting string data types to date data types
C. decreasing the length of string data types
D. changing the property name of string data types
Annotations on a document are represented using dm_relation objects. On the dm_relation object, both parent_id and child_id point to a dm_sysobject. The object pointed to by the parent_id is the document and the object pointed to by the child_id is the annotation. The annotation object is owned by the person who commented on the document.
Which query will return all documents owned by `John Smith' that have annotations along with the name of the user that commented on the document?
A. SELECT p.object_name, p.owner_name FROM dm_sysobject p, dm_relation WHERE relation_name='DM_ANNOTATE' AND parent_id=p.r_object_id AND p.r_object_id IN (SELECT r_object_id FROM dm_sysobject WHERE owner_name='John Smith')
B. SELECT p.object_name, c.owner_name FROM dm_sysobject p, dm_sysobject c, dm_relation WHERE relation_name='DM_ANNOTATE' AND parent_id=p.r_object_id AND child_id=c.r_object_id AND p. owner_name='John Smith'
C. SELECT object_name, owner_name FROM dm_sysobject, dm_relation r WHERE r.relation_name='DM_ANNOTATE' AND r.parent_id=r_object_id AND owner_name = 'John Smith'
D. SELECT p.object_name, c.owner_name FROM dm_sysobject p, dm_sysobject c, dm_relation WHERE relation_name='DM_ANNOTATE' AND parent_id=p.r_object_id AND child_id=c.r_object_id UNION select object_name, owner_name FROM dm_sysobject WHERE owner_name='John Smith'
An architect is asked to improve an internal online library of the organization's images and video clips. They want users to be able to make edits to the existing content and add new objects to the library. Which Documentum product should be used to replace the current library?
A. Webtop
B. xCP
C. Web Development Kit
D. Digital Asset Manager