Enterprise geodatabase domains from source table are not applied to view.
I apply something like the following query using the 'create database view' tool.
SELECT t2.OBJECTID, t2.SHAPE, t2.attr, t2.type, t1.attr1, t3.attr2, t2.area_ha
FROM gis_project.sde.table1 t1
INNER JOIN gis_project.sde.table2 t2 ON t1.table1_id = t2.table1_id
INNER JOIN gis_project.sde.table3 t3 ON t2.table2_id = t3.table2_id
t2.type contains integers and the domain maps 0 = 'some text' and so on. The source table retains the domain but resulting view shows the integers.
I am going to see if I can create the view or the lookup reference in PgAdmin, but I would prefer to use esri tools.
ArcGIS Pro 3.2.0, PostgreSQL 15, PostGIS 3.4.1