
The Soleran Destination connector pushes work orders from the Mapped graph into Soleran CMMS (eAppTrack). When work orders are created or updated in Mapped from any connector or application, this connector automatically creates or updates the corresponding records in Soleran. It supports configurable field mapping, enum value translation, and manual backfill of historical work orders.
If you already have a Soleran Source connector configured in the same organization, you can import its authentication and module settings with one click. This avoids re-entering API credentials and module IDs.
The import copies:
Important: The credentials must have write permissions in Soleran. Read-only accounts will cause work order creation to fail. The following is required:
Select the Soleran module that contains work orders. The dropdown is populated from your Soleran instance after authentication.
| Field | Required | Description |
|---|---|---|
| Work Order Module | Yes | The Soleran module that contains your work order records. |
After saving the module selection, the connector runs provisioning to fetch the available fields from that module. These fields are used in the Field Mapping and Enum Mapping sections.
The field mapping table shows all fields available in your Soleran work order module. For each field, you select which Mapped work order property should be written to it.
Note: If you imported configuration from a Soleran Source connector, field mappings are pre-populated and ready to use.
| Mapped Property | Description | Example Soleran Field |
|---|---|---|
| Description | Work order description text | descriptionx |
| Subject | Short subject/title | subject |
| Due Date | Target completion date | duedatex or availabledatex |
| Status | Work order status | statusx |
| Priority | Priority level | priorityx |
| Job Type | Type of work (Corrective, Preventative, etc.) | typex |
| Location | Location reference | locationx |
| Requestor Name | Name of the person who requested the work | requesternamex |
| Requestor Email | Email of the requestor | requesteremailx |
Relationship fields (like Request Type or Category) may require a numeric ID rather than a text value. The connector automatically coerces enum values to integers when writing to Relationship or Numeric field types.
Formula fields (read-only computed values in Soleran) are automatically skipped during writes to prevent API errors.
Enum mapping translates Mapped work order values to Soleran-specific values. This is useful when the two systems use different terminology for the same concept.
Five enum fields are supported:
| Enum Field | Description | Example |
|---|---|---|
| Work Order Status | Maps Mapped statuses to Soleran statuses | OPEN → Active, CLOSED → Completed |
| Work Order Priority | Maps priority levels | HIGH → Priority 1, LOW → Priority 4 |
| Work Order Type | Maps work types | CORRECTIVE → Corrective, PREVENTATIVE → Preventative |
| Work Order Sub-Status | Maps sub-status values | Optional — configure only if your Soleran uses sub-statuses |
| Work Order Sector | Maps sector/department values | Optional |
For each enum field, you can:
The connector normalizes all values to SCREAMING_SNAKE_CASE before lookup (e.g., "In Progress" → "IN_PROGRESS"), so mappings are case-insensitive.
The Backfill section lets you manually trigger a resync of work orders that were created before the connector was set up, or to re-push specific work orders.
Two modes are available:
| Mode | Description |
|---|---|
| Date Range | Syncs all Mapped work orders created or updated within a specified date window. |
| By IDs | Syncs specific Mapped work orders by entering their IDs. |
The backfill uses the same create/update logic as regular polling, so it will not create duplicates for work orders that already exist in Soleran.
The Soleran Destination connector does not create entities in the Mapped graph. Instead, it reads work orders from the graph and writes them to Soleran. The only graph modification it makes is adding external identity URNs to track which work orders have been synced.
External Identities
After creating a work order in Soleran, the connector writes an identity back to the Mapped graph:
| Identity Format | Example | Purpose |
|---|---|---|
| urn:soleran-destination:workorder:id:<RecordId> | urn:soleran-destination:workorder:id:2527589 | Tracks which Mapped WOs have been synced to Soleran and prevents duplicate creation. |
The connector uses a two-level identity check to prevent duplicate records:
1: Destination identity: If the work order already has a urn:soleran-destination:workorder:id:* identity, the connector knows it previously created this record and takes the update path.
2: Source identity: If the work order has a urn:soleran:workorder:id:* identity (from the Soleran Source connector), the connector recognizes it already exists in Soleran and updates the existing record instead of creating a duplicate.
When updating, the connector fetches the current record from Soleran and compares only the fields it intends to write. If nothing has changed, the update is skipped entirely -- no unnecessary API calls.
| Function | Frequency | Description |
|---|---|---|
| Work Order Poll | Every 2 minutes | Queries the Mapped graph for work orders created or updated since the last poll. Creates or updates corresponding records in Soleran. On first run, looks back 7 days. |
| Provision | On module selection | Fetches field metadata from the selected Soleran module and stores it for use by the field mapping and enum mapping UIs. |
| Resync (Backfill) | On-demand | Manually triggered from the Backfill UI. Supports by-date-range and by-ID modes. Uses the same create/update logic as polling. |
| Deprovision | On connector removal | Clears internal action state to prevent stale status after re-provisioning. |
Soleran requires dates in MM/DD/YYYY format. The connector automatically converts all date values to this format before writing to Soleran. Sending ISO 8601 dates (e.g., 2026-01-15T00:00:00Z) directly to the Soleran API can cause the server to hang — the connector handles this conversion automatically.
Find work orders that have been synced to Soleran
Look for identities containing urn:soleran-destination:workorder:id: to identify synced records.
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16{ workOrders { id name jobStatus jobPriority description identities { __typename ... on ExternalIdentity { value scope } } } }
