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

ActionField487

Beschrijving: Create a ContractLine and a ContractLineCostMutation for this ServiceContract. Custom: Nee

Propertiesbewerken

Property Type Accessor
ServiceContract ServiceContract Root
ScreenName String Optional

XMLbewerken

<Workflow Name="ActionField487" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Create a ContractLine and a ContractLineCostMutation for this ServiceContract.</Description>
	<Properties>
		<Property	Name="ServiceContract"	Type="ServiceContract"	Accessor="Root"		Direction="In" />

		<Property	Name="ScreenName"		Type="String"			Accessor="Optional"	Direction="In"		Default="conl01"	Comment="Create ContractLine via this screen" />

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

		<Transaction>
			<Insert Name="ContractLine" ObjectType="ContractLine" OutputProperty="${ContractLine}">
				<Parameter	Name="Status"			Direction="In"		Value="ContractLineStatus.Concept" />
				<Parameter	Name="ServiceContract"	Direction="In"		Value="${ServiceContract}" />
			</Insert>
		</Transaction>

		<SystemDialog Name="Creating a ContractLine" DialogName="DataEntryScreen">
			<Parameter	Name="DomainObject"	Direction="In"		Value="${ContractLine}" />
			<Parameter	Name="ScreenName"	Direction="In"		Value="${ScreenName}" />
		</SystemDialog>

		<WorkflowCall Name="Create ContractLineCostMutation" WorkflowName="ContractLine_CreateCostMutation">
			<Parameter	Name="ContractLine"	Direction="In"		Value="${ContractLine}" />
		</WorkflowCall>

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