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

ActionField1190

Beschrijving: Edit Job duration for Stop, called by Stop Gantt. Custom: Nee

Propertiesbewerken

Property Type Accessor
Job Job Root
ScheduledStartDate DateTime Required
TargetDate DateTime Required

XMLbewerken

<Workflow Name="ActionField1190" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Edit Job duration for Stop, called by Stop Gantt.</Description>
	<Properties>
		<Property	Name="Job"					Type="Job"		Accessor="Root"		Direction="In" />

		<Property	Name="ScheduledStartDate"	Type="DateTime"	Accessor="Required"	Direction="In"		Comment="StartDate for the Job" />
		<Property	Name="TargetDate"			Type="DateTime"	Accessor="Required"	Direction="In"		Comment="EndDate for the Job" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<WorkflowCall Name="Job_PlanForStop" WorkflowName="Job_PlanForStop">
			<Parameter	Name="Job"					Direction="In"		Value="${Job}" />
			<Parameter	Name="JobContext"			Direction="In"		Value="${Job.Context}" />
			<Parameter	Name="ScheduledStartDate"	Direction="In"		Value="${ScheduledStartDate}" />
			<Parameter	Name="ShowDialog"			Direction="In"		Value="False" />
			<Parameter	Name="TargetDate"			Direction="In"		Value="${TargetDate}" />
			<Parameter	Name="WorkOrder"			Direction="In"		Value="${Job.WorkOrder}" />
		</WorkflowCall>

		<WorkflowCall Name="Job_WarnIfStartOrTargetDateIsInThePast" WorkflowName="Job_WarnIfStartOrTargetDateIsInThePast">
			<Parameter	Name="Job"	Direction="In"		Value="${Job}" />
		</WorkflowCall>

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