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
Procedure
To configure Documentum Connector actions:
- 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.
- Restart Datacap after the Documentum DFC Runtime installation.
- 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")
- Login function
- Page Upload rule
- Page Upload function
- DM_SetContentType("tiff")
- DM_SetFolderName("/MyDocument")
- DM_SetObjectName("@ID")
- DM_UploadPage()
- Page Upload function