Which is a valid DFC package?
A. com.documentum.da.user
B. com.documentum.workflow
C. com.documentum.transaction
D. com.documentum.fc.lifecycle
What entries do you need in the dmcl.ini for setting up dmcl tracing?
A. trace_file and trace_level
B. dmcl.trace.file and dmcl.trace.level
C. tracing.enabled and tracing.level
D. trace.file and trace.level
What happens when the following code for deleting a document is executed?
A. All versions of the document will be deleted.
B. Only the specific version associated with the document in question will be deleted.
C. Only the specific version associated with the document in question and all prior versionswill be deleted.
D. The document will not be deleted since the version deletion policy has not beenexplicitlyset using the op.setVersionDeletionPolicy() call.
You want to add idChild1 to idRoot as a late-bound virtual document child of idRoot. You use the following code: Which part of the code is missing?
A. doc.checkout();IDfVirtualDocument vDoc = doc.asVirtualDocument("CURRENT", false );IDfVirtualDocumentNode nodeRoot = vDoc.getRootNode();IDfVirtualDocumentNode nodeChild1 = vDoc.addNode( nodeRoot, null,docChild1.getChronicleId(), null,false, false );doc.save();
B. doc.checkout();doc.addChildRelative("node", idChild1, "CURRENT", true, "" );doc.save();
C. IDfVirtualDocument vDoc = doc.asVirtualDocument("CURRENT", false );IDfVirtualDocumentNode nodeRoot = vDoc.getRootNode();IDfVirtualDocumentNode nodeChild1 = vDoc.addNode( idRoot, null,docChild1.getChronicleId(), null, false,false );
D. doc.checkout();IDfVirtualDocument vDoc = doc.asVirtualDocument("CURRENT", false );IDfVirtualDocumentNode nodeRoot = vDoc.getRootNode();IDfVirtualDocumentNode nodeChild1 = vDoc.addNode( nodeRoot, null,docChild1.getChronicleId(), "2.0",false, false );doc.save ();
Given an object sysObj with IDfSysObject interface, what is the correct statement to retrieve the long form of the document's format?
A. sysObj.getContentType();
B. sysObj.getFormat().getName();
C. sysObj.getFormat().getDescription();
D. sysObj.getFormat().getDOSExtension();
How do you register the TBO and SBO packages in Documentum 5.3 or later?
A. copy the jar file toDocumentum/dba/java_methods
B. create a new module using Application Builder
C. copy the jar file to the DFC client that calls them
D. register the package using the BOFRegister utility
Which object types are used to contain a module and package Jar files in the repository?
A. dmc_module, dmc_jar
B. dm_bof_module, dm_bof_jar
C. dm_module, dm_bof_jar
D. dmc_module, dmc_java
What is a WSDL file used to define?
A. a web service interface contract
B. the deployment description for a web service
C. the credentials for web service authentication
D. the dmc_jar used for implementation of a web service
Which pre-defined parameter cannot be substituted at runtime during XSLT transformation using XDQL?
A. DMS_SESSION_ID
B. DMS_OUTPUT_OBJECT_ID
C. DMS_INPUT_OBJECT_ID
D. DMS_STYLESHEET_OBJECT_ID
The log4j.properties file allows changing the logging severity according to the _____.
A. name of the connected repository
B. text of the messages themselves
C. user privileges in the connected repository
D. Java package containing the source code