Can I move document types and templates from one docbase to another and if yes, how can I do so?
I don't want to build these object again in our other environment.
hi, try wit DAB (document application builder) or use a script
for example:
DUMP
create,c,dm_dump_record
# fully qualified file name for the dump file
set,c,l,file_name
/root/gerarchia_bacheca.dmp
# set the user type to be dumped
append,c,l,type
gerarchia_bacheca
# dump all users by supplying a predicate that is always true
append,c,l,predicate
1=1
# save the object – this starts the dump
save,c,l
# check for dump errors
LOAD
create,c,dm_load_record
/root/users_groups_acls_regtbls.dmp
getmessage,c
see response to
https://community.emc.com/thread/113746