The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Db::Documentum::Tools - Support functions for Db::Documentum.

SYNOPSIS

        use Db::Documentum::Tools;
        use Db::Documentum::Tools qw(:all);

        $session_id = dm_Connect($docbase,$user,$password);
        $session_id = dm_Connect($docbase,$user,$password,
                                 $user_arg_1,$user_arg_2);

        $error_msg = dm_LastError();
        $error_msg = dm_LastError($session_id);
        $error_msg = dm_LastError($session_id,1);
        $error_msg = dm_LastError($session_id,$level,$number);
        
        $object_id = dm_CreateObject("dm_document",%ATTRS);
        $object_id = dm_CreateObject("dm_document");

        $api_stat = dm_CreateType("my_document","dm_document",%field_defs);
        $api_stat = dm_CreateType("my_document","dm_document");
    
        $obj_id = dm_CreatePath('/Temp/Test/Unit-1');

        $session_id = dm_KrbConnect($docbase);

        $hostname = dm_LocateServer($docbase);

DESCRIPTION

Db::Documentum::Tools is a collection of frequently used Documentum procedures encapsulated by Perl.

LICENSE

The Documentum perl extension may be redistributed under the same terms as Perl. The Documentum EDMS is a commercial product. The product name, concepts, and even the mere thought of the product are the sole property of Documentum, Inc. and its shareholders.

AUTHOR

M. Scott Roth, Science Applications International Corporation, Scott_Roth@saic-nmsd.com

SEE ALSO

Db::Documentum.