wfm.AdminGetProcessReport
This job returns information about the specified workflow processes. Do not confuse with statistical process reports!
1. Input Parameters
| Name | Type | Required | Description |
|---|---|---|---|
Processes |
STRING |
Yes |
Comma-separated list of process IDs. |
File |
INT |
Yes |
1 = information about the WF file is delivered, otherwise 0. |
GlobalDataFields |
INT |
Yes |
1 = information about global variables is delivered, otherwise 0. |
3. Output Parameters
| Name | Type | Dependency | Description |
|---|---|---|---|
|
BASE64 |
— |
Information about workflow processes in XML format. |
Structure of Processes
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Processes>
<Process>
<Id>B216B6ACC46B4A33AFB9D6852D928A33</Id>
<Name>Globale Variablen Test - Paralleler Ablauf 2</Name>
<CreationTime>1143128816</CreationTime>
<EndTime>0</EndTime>
<UserName>Peter Mustermann</UserName>
<DataFields>
<DataField>
<Id>79FBB5E2F38B434DBF6C7507614CF740</Id>
<Name>TextVar02</Name>
<Value><WFVar><String>Wert 1</String><Types></Types></WFVar></Value>
</DataField>
</DataFields>
<Docs>
<Doc>
<Id>194</Id>
<Type>196608</Type>
</Doc>
</Docs>
</Process>
</Processes>
Detailed description of elements:Id (STRING) — ID of the process.Name (STRING) — Name of the process.CreationTime (INT) — Timestamp (when the process was created).EndTime (INT) — Timestamp (when the process was finished).UserName (STRING) — Name of the process creator.DataFields — Information about global variables: Id (STRING) ID of the variable, Name (STRING) name of the variable, Value structure and value of the variable.Docs — Objects of the workflow file: Id (STRING) ID of the ECM object, Type (INT) object type.
|