IBMCM_Logon
Logs on to an IBM® Content Manager Server.
Member of namespace
ibmcmSyntax
bool IBMCM_Logon(string connectioninfo)
Parameters
- connectioninfo
- Type: string
- A comma-separated string consisting of three values:
- The ID of the IBM Content Manager Server
- A valid Content Manager User ID
- The user’s Password
Returns
True if the logon succeeds. False if the logon is unsuccessful. The logon is unsuccessful if the action cannot find the specified server, or if the user ID or password is invalid.Level
Any level. Usually at the Batch level.Details
Performs the logon to the IBM Content Manager system. This action must be called before the actions that communicate with the IBM Content Manager repository. Connectivity, based on the requirements of the IBM Content Manager Server, must be setup on the machine that runs the Datacap rules.- Example:
IBMCM_Logon("ibmcmserver,user1,password")IBMCM_Logon("ibmcmserver,user1,+@APPVAR(values/adv/MyPassword)")This example uses the smart parameter @APPVAR to get the password from the advanced value section of the Application Manager. The custom value name is "MyPassword".