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

ActionField1237

Beschrijving: Show ArcGIS report with Equipments having a certain RiskClass (selected via dialog). Custom: Nee

Propertiesbewerken

Property Type Accessor
EquipmentContext Context? Optional
Map String Optional

XMLbewerken

<Workflow Name="ActionField1237" Version="2025.07.28" WorkflowType="Standard" xmlns="urn:Ultimo.Framework.Workflow-mapping">
	<Security EditLevel="10" ViewLevel="20" UserContentLevel="30" />
	<Description>Show ArcGIS report with Equipments having a certain RiskClass (selected via dialog).</Description>
	<Properties>
		<Property	Name="EquipmentContext"	Type="Context?"		Accessor="Optional"	Direction="In"		Comment="Show only Equipments with this context" />
		<Property	Name="Map"				Type="String"		Accessor="Optional"	Direction="In"		Comment="Use this map for the report" />

		<Property	Name="GISMap"			Type="GISMap"		Accessor="Internal" />
		<Property	Name="ReportTitle"		Type="String"		Accessor="Internal" />
		<Property	Name="RiskClass"		Type="RiskClass"	Accessor="Internal" />
	</Properties>
	<Execution>
		<UserContent Name="Pre" />

		<WorkflowCall Name="Dialog_ArcgisObjectBasedReportOnRiskClass" WorkflowName="Dialog_ArcgisObjectBasedReportOnRiskClass">
			<Parameter	Name="SelectGISMap"	Direction="In"		Value="=${Map} == Empty" />
			<Parameter	Name="GISMap"		Direction="Out"									OutputProperty="${GISMap}" />
			<Parameter	Name="RiskClass"	Direction="Out"									OutputProperty="${RiskClass}" />
		</WorkflowCall>

		<When Name="selected something" Condition="${GISMap} != Empty">
			<Assign Name="set map" Property="${Map}" Value="${GISMap.Id}" />
		</When>

		<FormatText Name="ARCGISRISKPERELEMENT" TextCode="ARCGISRISKPERELEMENT" Application="LABEL" OutputProperty="${ReportTitle}" />

		<WorkflowCall Name="ArcGIS_ReportRiskClassPerEquipment" WorkflowName="ArcGIS_ReportRiskClassPerEquipment">
			<Parameter	Name="EquipmentContext"	Direction="In"		Value="${EquipmentContext}" />
			<Parameter	Name="Map"				Direction="In"		Value="${Map}" />
			<Parameter	Name="ReportTitle"		Direction="In"		Value="${ReportTitle}" />
			<Parameter	Name="RiskClass"		Direction="In"		Value="${RiskClass}" />
		</WorkflowCall>

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