DQL to retrieve Uninstalled documentum process flows (dm_process)
select object_name, r_definition_state from dm_process where object_name like '<Name>%' and r_definition_state = 1
DQL to retrieve installed documentum process flows (dm_process)
select object_name, r_definition_state from dm_process where object_name like '<Name>%' and r_definition_state = 2
DQL to retrieve NOT installed documentum process flows (dm_process)
select object_name, r_definition_state from dm_process where object_name like '<Name>%' and r_definition_state != 2
No comments:
Post a Comment