Configuring Documentum Connector actions

You must create an Export ruleset and configure its rules and functions with Documentum Connector actions to upload documents from Datacap applications into Content Engine.

About this task

To upload Datacap scanned images to a Documentum repository, configure the Documentum Connector actions on computers that are clients to the Documentum repository. If you have multiple computers that run the Documentum Connector actions, the actions must be configured the same way on each computer.

Procedure

To configure Documentum Connector actions:

  1. Install the Documentum DFC Runtime Environment on the computers that are going to run Documentum Connector actions. See the Documentum DFC Runtime installation documentation for instructions.
  2. Restart Datacap after the Documentum DFC Runtime installation.
  3. Add Connector actions to the ExportDocumentumByPage and ExportDocumentumByDocument rulesets.

Example

The following example describes an ExportDocumentumByPage ruleset that logs on to the Documentum server and uploads a single page file into Documentum repository.

The ruleset contains the Login and Page Upload rules, functions, and actions. The Login rule is bound to the batch level. The PageUpload rule is bound to the page level.

The Login function logs in the application to Documentum. The PageUpload function contains actions that set the format of the page to TIFF and define the folder from which the page is uploaded. These actions also set the object name to use for the page and upload the page to Documentum Docbase.

ExportDocumentumByPage ruleset

  • Login rule
    • Login function
      • DM_Logon("dmsrv","userid","password")
  • Page Upload rule
    • Page Upload function
      • DM_SetContentType("tiff")
      • DM_SetFolderName("/MyDocument")
      • DM_SetObjectName("@ID")
      • DM_UploadPage()