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

ActionField438

Beschrijving: Change status of Incident to Finished (status must be Active). Custom: Nee

Propertiesbewerken

Property Type Accessor
Incident Incident Root

XMLbewerken

<Workflow Name="ActionField438" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Change status of Incident to Finished (status must be Active).</Description>
	<Properties>
		<Property	Name="Incident"	Type="Incident"	Accessor="Root"		Direction="In" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<When Name="Check status » IncidentStatusIsActive" Condition="${Incident.Status} == IncidentStatus.Active">
			<Transaction>
				<ChangeStatus Name="SetIncidentStatusToFinished" DomainObject="${Incident}" NewStatus="IncidentStatus.Finished" />
			</Transaction>
		</When>

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