|  | 
 | ||||
|        | |||||
|  | ||||||
| Other Library Functions | ||||||
| function | dctm.result | 
| Library: Documentum access (OMDOCUMENTUM) Import: omdocumentum.xmd | Return type: String Returns: The string value that is returned by executing the specified command. | 
export external stream function result
     of          value string command
Argument definitions
You can use the dctm.result function to call any Documentum Content Server API command which returns a value. This function corresponds to the Documentum Client Library (DMCL) function dmAPIGet. The applicable commands are documented in the Documentum Content Server API Reference Guide.
This example connects to a Docbase and outputs an error message if failure occurs.
  import "omdocumentum.xmd" prefixed by dctm.
  
  process
     local stream docbase      initial {"sample-docbase"}
     local stream user         initial {"sample-user"}
     local stream password     initial {"sample-password"}
  
  process
     local stream docbase  initial {"conn_test_01"}
     local stream user     initial {"conn_test_01"}
     local stream password initial {"1conn_test1"}
     local stream session
  
     set session to dctm.result of
             "connect,%g(docbase),%g(user),%g(password)"
  
     do when session = ""
       output "Error connecting to the docbase%n"
       output "Error returned: "
         || dctm.result of "getmessage,current"
         || "%n"
     else
       output "Connected%n"
     done
The following exception can occur when calling this function:
| Other Library Functions dctm.execute dctm.omdocumentum-version dctm.reader dctm.result dctm.set dctm.writer | 
Copyright © Stilo International plc, 1988-2008.