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

ActionField1677

Beschrijving: Actualize image file of a PlotPlan. Custom: Nee

Propertiesbewerken

Property Type Accessor
PlotPlan PlotPlan Root

XMLbewerken

<Workflow Name="ActionField1677" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Actualize image file of a PlotPlan.</Description>
	<Properties>
		<Property	Name="PlotPlan"			Type="PlotPlan"	Accessor="Root"		Direction="In" />

		<Property	Name="OriginalPlotPlan"	Type="PlotPlan"	Accessor="Internal"						Comment="PlotPlan was created as a copy of OriginalPlotPlan." />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<Validation Name="LockoutTagoutPlan must have status Open to actualize ImageFile" Condition="${PlotPlan.LockoutTagoutPlan.Status?} == LockoutTagoutPlanStatus.Open" MessageCode="3237">
			<Parameter	Name="LockoutTagoutPlan"	Direction="In"		Value="${PlotPlan.LockoutTagoutPlan}" />
		</Validation>

		<Transaction>
			<GetItem Type="PlotPlan" OutputProperty="${OriginalPlotPlan}">
				<Filters>
					<PropertyFilter	PropertyName="Id"	Operator="="		PropertyValue="${PlotPlan.CopyFromPlotPlan.Id}" />
				</Filters>
			</GetItem>

			<Assign Name="Actualize image file" Property="${PlotPlan.ImageFile}" Value="${OriginalPlotPlan.ImageFile}" />
		</Transaction>

		<Message Name="ImageActualized" MessageCode="3243" />

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