I have document in livelink and the document having workflow. In that workflow we have attachments and some default attributes.
My requirement to retrieve the workflow work item data. I tried to use the workflowservice to access the details. But I need ProcessID and SubProcessID.
Can any one tell me how to read the ProcessID and SubProcessID?
How to get the workflow work item data?
I used this function:
workflowservice.GetWorkItemdata(wc,processID,subprocessId,activityID)
You can use the
listWorkItems()method provided byWorkflowServiceweb service interface.I'm adding here the Java version showing how to retrieve work item data since I'm not confident with C#, but the procedure is almost the same:
The main point here is that the
listWorkItemsmethod allows you to easily access each work item'sProcessID,SubProcessIDandIDvalues.