ArcGIS Pro 2.6.8, Oracle 18c 10.7.1 EGDB; SDE.ST_GEOMETRY
If I understand correctly, a feature can either have:
- Null SHAPE field, or
- SHAPE field is not null, but the geometry is null
(Never both at the same time)
There isn't a way to visually determine if the feature is A or B from within the attribute table.
However, when querying using Select By Attributes or a definition query, it's important for the user to know if a feature is A or B. For example, if we use the SQL expression SHAPE IS NULL, that's only going to catch A, not B. If we didn't know there were B rows, then we wouldn't think to query for them.
I'm aware that I can use St_Geometry's isEmpty SQL function in some cases. That does work (beware of a bug for versioned data), but I think it would be helpful to have an option to display B differently from A in the attribute table, as a way of alerting the user.