Categorie: reference Bijgewerkt: 2026-04-08 actionfield workflow actionfield1824

ActionField1824

Beschrijving: Open screen without domainobject Custom: Nee

Propertiesbewerken

Property Type Accessor
DomainObject DomainObject Root
ScreenName UltimoString Required
FocusEditableField Boolean Optional
OpenInNewWindow Boolean Optional
Tab Int16 Optional

XMLbewerken

<Workflow Name="ActionField1824" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Open screen without domainobject</Description>
	<Properties>
		<Property	Name="DomainObject"			Type="DomainObject"	Accessor="Root"		Direction="In" />

		<Property	Name="ScreenName"			Type="UltimoString"	Accessor="Required"	Direction="In"		Default="Empty"	Comment="Name of the screen to open" />

		<Property	Name="FocusEditableField"	Type="Boolean"		Accessor="Optional"	Direction="In"		Default="False"	Comment="Set focus to editable field instead of id field" />
		<Property	Name="OpenInNewWindow"		Type="Boolean"		Accessor="Optional"	Direction="In"		Default="False"	Comment="Open the screen in a new window" />
		<Property	Name="Tab"					Type="Int16"		Accessor="Optional"	Direction="In"		Default="0"		Comment="Open input (0) or selectionlist tab (1)" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<When Name="FieldSafetyNotice?" Condition="${DomainObject.EntityName} == FieldSafetyNotice &amp;&amp; #contains(${ScreenName}, 'EQM')">
			<Validation Name="FieldSafetyNotice status" Condition="${DomainObject.Status} == FieldSafetyNoticeStatus.Created || ${DomainObject.Status} == FieldSafetyNoticeStatus.Active" MessageCode="3788">
				<Parameter	Name="DomainObject"	Direction="In"		Value="${DomainObject}" />
			</Validation>
		</When>

		<UserContent Name="Post" />

		<View Name="OpenScreen" ViewName="DataEntryScreen">
			<Parameter	Name="FocusEditableField"	Direction="In"		Value="${FocusEditableField}" />
			<Parameter	Name="OpenInNewWindow"		Direction="In"		Value="${OpenInNewWindow}" />
			<Parameter	Name="ScreenName"			Direction="In"		Value="${ScreenName}" />
			<Parameter	Name="Tab"					Direction="In"		Value="${Tab}" />
		</View>
	</Execution>
</Workflow>