The trigger task profile automatically runs when any features are edited.

The trigger script can be run in response to different types of data events add, delete, modify or after all changes to a layer.

Profile variables

Variable nameTypeDescription
$mapFeatureSetCollectionThe list of layers in the web map. Can be used with the FeatureSetByName or FeatureSetById function to get a particular layer in the map. This can then be queried.
$userIdTextThe unique user ID of the editor who is logged into the application.
$userNameTextThe full name of the editor who is logged into the application.
$userIdentityTextProvides a credential instance. This can be used when accessing external layers with the FeatureLayer function. The credentials represent the user’s logged in credentials.
$sessionDictionaryA dictionary containing key value pairs. The dictionary contains all the session variables that have been configured in the app. When the application first launches, the user will be asked for values for the session variables. They can also (if configured) change session variables in the application. This provides programmatic access to the user’s choices / settings.
$editingLayerFeatureSetThe layer to which $feature belongs to. Can be queried to find other records.
$targetLayerFeatureSetThe layer in which features are being written to, updated or deleted from.
$feature 1FeatureThe feature that has been edited, added, or worked on.
$originalFeature 1FeatureThe original version of the feature before it was edited. This is not available for all situations where scripting is run.
$parentFeature 1FeatureIf there is a geographic contains relationship for the current feature being edited, this variable will contain the parent (or containing feature).
$routeFeature 1FeatureIf the feature is a linear referencing feature, this variable will reference source route/line feature.
$onlyCausedByCracking 1BooleanBoolean value to indicate that this feature has only been changed to add vertices to prevent slithers appearing.
$unchangedMap 2FeatureSetCollectionThe list of layers in the web map with data as it was originally before the current editing operation began executing. This is not available for all situations where scripting is run.
$editedFeatures 2FeatureSetThe set of features that have just been edited. This works with the FeatureSetByName or FeatureSetById function, to get access to a per layer set of features. This will not contain deleted features, as they are no longer in the map.
$originalEditedFeatures 2FeatureSetThe set of features that have just been edited (in their original form). This works with the FeatureSetByName or FeatureSetById function, to get access to a per layer set of features. This will contain deleted features.
$deletedFeatures 2FeatureSetThe set of features that have been deleted in the operation. This works with the FeatureSetByName or FeatureSetById functions, to get access to a per layer set of features.
$addedFeatures 2FeatureSetThe set of features that have been created in the operation. This works with the FeatureSetByName or FeatureSetById functions, to get access to a per layer set of features.
$modifiedFeatures 2FeatureSetThe set of features that have been modified in the operation as they are now. This works with the FeatureSetByName or FeatureSetById functions, to get access to a per layer set of features.
$originalModifiedFeatures 2FeatureSetThe set of features that have been modified in the operation (as they were before they were edited). This works with the FeatureSetByName or FeatureSetById functions, to get access to a per layer set of features.

1 : Only available for ‘Add, Insert, Modify’ trigger types.
2 : Only available if the type of trigger is ‘After all changes’.

Return types

The return value will depend on the type of trigger.

Example

Adding a new feature:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** Add a new Feature
 *
 * This example creates a new feature using the Feature Arcade Function
 * and then returns it.
 *
 * Note:
 * 1) The attribute names must be consistent with those defined in the schema
 *  of the target layer.
 * 2) The Symbol displayed on the map is determined by the webmap.
 *
 */
 
var geom = Point({ x: 1000, y: 1000, spatialReference: { wkid: 102100 } });
return Feature(geom, { attr1: "some attribute", attr2: "another attribute" });