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

ActionField1116

Beschrijving: Change the Vendor for this Space (RentableRealEstate) (via collectinput). Custom: Nee

Propertiesbewerken

Property Type Accessor
RentableRealEstate Space Root

XMLbewerken

<Workflow Name="ActionField1116" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Change the Vendor for this Space (RentableRealEstate) (via collectinput).</Description>
	<Properties>
		<Property	Name="RentableRealEstate"	Type="Space"	Accessor="Root"		Direction="In" />

		<Property	Name="PreviousLetter"		Type="Vendor"	Accessor="Internal" />
		<Property	Name="Vendor"				Type="Vendor"	Accessor="Internal"						Default="${RentableRealEstate.Vendor}" />
		<Property	Name="VendorContext"		Type="Context"	Accessor="Internal"						Default="VendorContext.Landlord" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<Assign Name="the previous letter saved for the call later on" Property="${PreviousLetter}" Value="${RentableRealEstate.Vendor}" />

		<Dialog Name="VendorDialog" TitleCode="CHANGE_VENDOR">
			<Container Border="True">
				<SelectionList Name="Vendor" Value="${RentableRealEstate.Vendor}" OutputProperty="${Vendor}" ColumnName="VdrId" ViewfieldConfiguration="VERHUURDER" SqlWhereClause="VdrContext=2" />
			</Container>
		</Dialog>

		<Transaction>
			<Assign Name="the new letter for this rre" Property="${RentableRealEstate.Vendor}" Value="${Vendor}" />
		</Transaction>

		<WorkflowCall Name="RentableRealEstate_ChangeVendor" WorkflowName="RentableRealEstate_ChangeVendor">
			<Parameter	Name="PreviousLetter"		Direction="In"		Value="${PreviousLetter}" />
			<Parameter	Name="RentableRealEstate"	Direction="In"		Value="${RentableRealEstate}" />
		</WorkflowCall>

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