Categorie: reference
Bijgewerkt: 2026-04-08
actionfield workflow actionfield587
ActionField587
Beschrijving: Open Document from Job. Custom: Nee
Propertiesbewerken
| Property | Type | Accessor |
|---|---|---|
| Job | Job | Root |
| OpenInNewWindow | Boolean | Optional |
XMLbewerken
<Workflow Name="ActionField587" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
<Description>Open Document from Job.</Description>
<Properties>
<Property Name="Job" Type="Job" Accessor="Root" Direction="In" />
<Property Name="OpenInNewWindow" Type="Boolean" Accessor="Optional" Direction="In" Default="True" Comment="Open the Document in a new window True or False" />
</Properties>
<Execution>
<UserContent Name="Pre" />
<Validation Name="Check for document" Condition="${Job.Document} != Empty" MessageCode="0876">
<Parameter Name="Job" Direction="In" Value="${Job}" />
</Validation>
<WorkflowCall Name="Check if document exist" WorkflowName="Document_CheckIfPhysicallyPresent">
<Parameter Name="Document" Direction="In" Value="${Job.Document}" />
</WorkflowCall>
<UserContent Name="Post" />
<View Name="Open Document" ViewName="DocumentViewer">
<Parameter Name="DocId" Direction="In" Value="${Job.Document.Id}" />
<Parameter Name="OpenInNewWindow" Direction="In" Value="${OpenInNewWindow}" />
</View>
</Execution>
</Workflow>