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

ActionField226

Beschrijving: Move Job to second line (SupportLine is set to SecondLine), used for IT. Custom: Nee

Propertiesbewerken

Property Type Accessor
Job Job Root
SecondLineScreen UltimoString Optional

XMLbewerken

<Workflow Name="ActionField226" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Move Job to second line (SupportLine is set to SecondLine), used for IT.</Description>
	<Properties>
		<Property	Name="Job"				Type="Job"			Accessor="Root"		Direction="In" />

		<Property	Name="SecondLineScreen"	Type="UltimoString"	Accessor="Optional"	Direction="In"		Comment="Open this screen with the changed Job" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<Transaction>
			<Assign Name="SetJobSupportLine" Property="${Job.SupportLine}" Value="SecondLine" />
		</Transaction>

		<UserContent Name="Post" />

		<View Name="JumpToSecondLineScreen" ViewName="DataEntryScreen">
			<Parameter	Name="DomainObject"	Direction="In"		Value="${Job}" />
			<Parameter	Name="ScreenName"	Direction="In"		Value="${SecondLineScreen}" />
		</View>
	</Execution>
</Workflow>