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

ActionField1703

Beschrijving: Create job and copy fields from master-incident to new incident. Custom: Nee

Propertiesbewerken

Property Type Accessor
Job Job Root
ExtraFieldsToCopy List[String] Optional

XMLbewerken

<Workflow Name="ActionField1703" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Create job and copy fields from master-incident to new incident.</Description>
	<Properties>
		<Property	Name="Job"					Type="Job"			Accessor="Root"		Direction="In" />

		<Property	Name="ExtraFieldsToCopy"	Type="List[String]"	Accessor="Optional"	Direction="In"		Comment="Extra fields that must be copied" />

		<Property	Name="NewJob"				Type="Job"			Accessor="Internal" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<Transaction>
			<WorkflowCall Name="Job_CreateIncidentFromAnotherJob" WorkflowName="Job_CreateIncidentFromAnotherJob">
				<Parameter	Name="ExtraFieldsToCopy"	Direction="In"		Value="${ExtraFieldsToCopy}" />
				<Parameter	Name="Job"					Direction="In"		Value="${Job}" />
				<Parameter	Name="NewJob"				Direction="Out"										OutputProperty="${NewJob}" />
			</WorkflowCall>
		</Transaction>

		<UserContent Name="Post" />

		<View Name="ViewJob" ViewName="DataEntryScreen">
			<Parameter	Name="DomainObject"	Direction="In"		Value="${NewJob}" />
		</View>
	</Execution>
</Workflow>