how can i check the state of any workflow. Running or paused or stucked?
select r_runtime_state from dm_workflow where r_object_id=<your workflow id>
here's the code descriptions:
0, meaning dormant
1, meaning running
2, meaning finished
3, meaning halted
4, meaning terminated
if state is dormant, what steps should be taken and how to find the cause of stuck workflow?
Also, Can someone send me good reading stuff for workflow!!! Thanks much in advance...
If state is dormant, that means you havent executed it. Did you launch it?
hi vikas,
kindly refer the content server fundamentals guide where you can get the idea about how they are getting implemented
Hi Vikas,
For workflow management you can also use Documentum Administrator.
Some Administration activities explained in Admin Guide:
For the detailed description of Workflows (as VHK said) check Content Server Fundamentals
In case you don't have these documents (?!) here are some links:
https://community.emc.com/servlet/JiveServlet/previewBody/11629-102-1-45549/CS_Admin_Config_Guide67.pdf
http://doxfs.org/content-server/6.7.1/docs/Documentum_Content_Server_67_Fundamentals.pdf
Hi Johnny, State was not dormant. I couldn't check the state that time, as i wasn't aware much about this.
Restarting JMS resolved it as per user. I will check it next time if issue comes.
Thanks much.
select r_object_id , r_creation_date, r_workflow_id,r_act_seqno,r_runtime_state,r_performer_name from dmi_workitem where r_workflow_id =<your_r_workflow_id>
then you can easliy find the the activity runtime status and then u can dump that r_object_id and will get all the details of activity
dump,c,<your_r_workflow_id>
For more details about workflow please refer
1.objectReference guide
2.Process_Builder_6.7_User.pdf
3.Content server fundamental
Sure Imran, Will confirm and update soon. Thanks.
Requesting you guys to take a look on below Question also:
https://community.emc.com/message/699542#699542