向 Maximo 表提供 GIS 资产,但不用于映射

Provide GIS assets to Maximo tables, but not to map

我的 GIS 数据库中有一个 sewer table/layer,我将其作为资产提供给 Maximo(通过 ESRI 要素服务)。

下水道在 asset_status 字段(在 GIS 中)中编码为 activeabandoned

问题:

我希望将废弃的下水道包含在 Maximo 的资产 table 中(用于退役目的),但我希望它们 从 Maxino 地图中排除

我想用 单一 integration/feature 服务

我该怎么做?

(关键字:Maximo Spatial)

我想我可以通过视图中排除废弃下水道的几何形状来实现这一点(但包括非空间部分用于退役目的的记录)。

select
    --other fields would be included in the view
    case
        when asset_status <> 'ABAN' then shape
    end as shape
from
    sewer

另一种选择可能是在要素服务 symbology 中排除废弃的下水道。用户将无法在地图中看到废弃的下水道,但他们仍然可以 select 他们的工作订单,这不是我想要的。