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

ActionField500

Beschrijving: Change the status of a DomainObject via a dialog. Custom: Nee

Propertiesbewerken

Property Type Accessor
DomainObject DomainObject Root

XMLbewerken

<Workflow Name="ActionField500" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Change the status of a DomainObject via a dialog.</Description>
	<Properties>
		<Property	Name="DomainObject"	Type="DomainObject"	Accessor="Root"		Direction="In" />

		<Property	Name="NewStatus"	Type="Status"		Accessor="Internal" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<WorkflowCall Name="StatusDialog" WorkflowName="Dialog_ChooseStatus">
			<Parameter	Name="DomainObject"	Direction="In"		Value="${DomainObject}" />
			<Parameter	Name="Status"		Direction="Out"								OutputProperty="${NewStatus}" />
		</WorkflowCall>

		<UserContent Name="AfterDialog" />

		<Transaction>
			<ChangeStatus Name="ChangeStatusToNewStatus" DomainObject="${DomainObject}" NewStatus="${NewStatus}" />
		</Transaction>

		<UserContent Name="Post" />
	</Execution>
</Workflow>