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

ActionField1223

Beschrijving: Set this GISMapGISBaseMap to default. Custom: Nee

Propertiesbewerken

Property Type Accessor
GISMapGISBaseMap GISMapGISBaseMap Root

XMLbewerken

<Workflow Name="ActionField1223" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Set this GISMapGISBaseMap to default.</Description>
	<Properties>
		<Property	Name="GISMapGISBaseMap"		Type="GISMapGISBaseMap"			Accessor="Root"		Direction="In" />

		<Property	Name="GISMapGISBaseMaps"	Type="List[GISMapGISBaseMap]"	Accessor="Internal" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<Transaction>
			<GetList Name="Search all GISMapGISBaseMap having the same GISMap" Type="GISMapGISBaseMap" OutputProperty="${GISMapGISBaseMaps}" OrderBy="Id" OrderDirection="Ascending">
				<Filters>
					<PropertyFilter	PropertyName="GISMap"	Operator="="		PropertyValue="${GISMapGISBaseMap.GISMap}" />
				</Filters>
			</GetList>

			<ForEach Name="for all of the found GISMapGISBaseMaps set IsDefault to false" In="${GISMapGISBaseMaps}" As="FoundItem">
				<Assign Name="set IsDefault to false" Property="${FoundItem.IsDefault}" Value="False" />
			</ForEach>

			<Assign Name="set IsDefault for the current one to true" Property="${GISMapGISBaseMap.IsDefault}" Value="True" />
		</Transaction>

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