documentum - How to recognize (programmatically) situation ‘property value has changed in object’? -
i beginner in documentum yet (all have documentum developer edition); advice experienced documentum developer helpful. need create program (on .net) monitoring specified documentum content server looking situation ‘property xxx in object of type has changed value yyy’.
more detailed example: program monitors dm_document objects detect situation ‘a_status has changed value tobeexportedoutside’. after program retrieves document , exports document management system.
another example: program monitors dm_document objects detect situation ‘the document has been promoted state tobeexportedoutside in lifecycle attached to’. after program retrieves document , exports document management system.
the question is: how better using dfs? using dfs, or bfos, or what?
case 1 :
moniotor a_status has changed value 'tobeexportedoutside' using dql:
select object_id, r_modify_date dm_document(all) a_status = 'tobeexportedoutside' , r_modify_date > date('01/01/2000') order r_modify_date
case 2 :
export content or document old dms new dms:
first have create new custom type in new dms inherit super types. use api setfile, session, newdms objectid, location or path. , change a_status
export completed in old dms attribute in dm_document
.
Comments
Post a Comment